Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

loading forms

Status
Not open for further replies.

alifyag

MIS
Apr 15, 2002
18
US
hi,
if i am in form switchboard..and when the user types the correct username and password..i want to unload frmswitchboard and load another form named publishers...
pls lemme know..how to do this
also i have 2 combo boxes in frmpublishers...which i have to populate with data once frmpulishers is loaded...should i do this in the form load event of frmpublisher??
alifya
 
DoCmd.Close acForm ("FormName")
DoCmd.OpenForm ("FormName")


If you are using combo boxes, you can set their rowsource to the recordset you are interested in. You then dont need to worry about creating an event to populate these fields... James Goodman
 
hi,
i have a combo box and a print command button.
i want the print command button to be disabled when nothing is chosen from the combo box however as as soon as somethign is chosen from the combo box, i want the command button to be enabled.
in which event should i do this.
thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top