R robart6 Registered User. Local time Today, 09:40 Joined Feb 11, 2004 Messages 19 Jul 1, 2004 #1 Help, please! When my second form opens, the combo box dropdown from the first form is visible. How can I make the dropdown disappear?
Help, please! When my second form opens, the combo box dropdown from the first form is visible. How can I make the dropdown disappear?
Rusty Registered User. Local time Today, 14:40 Joined Apr 15, 2004 Messages 207 Jul 1, 2004 #2 Is the second form a subform, i.e. part of the first form, or are they both separate forms? Bit more detail please
Is the second form a subform, i.e. part of the first form, or are they both separate forms? Bit more detail please
R robart6 Registered User. Local time Today, 09:40 Joined Feb 11, 2004 Messages 19 Jul 1, 2004 #3 Separate forms.
Johny Registered User. Local time Today, 15:40 Joined Jun 1, 2004 Messages 80 Jul 2, 2004 #4 Why do ya want to hide the combobox on the first form?
R robart6 Registered User. Local time Today, 09:40 Joined Feb 11, 2004 Messages 19 Jul 11, 2004 #5 Johny, the dropdown on the first form is working fine. The problem is the first form's dropdown appears on the second form when the second form opens.
Johny, the dropdown on the first form is working fine. The problem is the first form's dropdown appears on the second form when the second form opens.
smercer Registered User. Local time Today, 23:40 Joined Jun 14, 2004 Messages 442 Jul 11, 2004 #6 robart6 said: Johny, the dropdown on the first form is working fine. The problem is the first form's dropdown appears on the second form when the second form opens. Click to expand... In the OnOpen event of the second form insert line the form name is "First_Form" Code: Form_First_Form!cbo_My_Drop_Down.Visible = False you need to insert the word and the underscore "Form_" in the begining of the form reference. Does this help? Please respond Last edited: Jul 11, 2004
robart6 said: Johny, the dropdown on the first form is working fine. The problem is the first form's dropdown appears on the second form when the second form opens. Click to expand... In the OnOpen event of the second form insert line the form name is "First_Form" Code: Form_First_Form!cbo_My_Drop_Down.Visible = False you need to insert the word and the underscore "Form_" in the begining of the form reference. Does this help? Please respond
R robart6 Registered User. Local time Today, 09:40 Joined Feb 11, 2004 Messages 19 Jul 11, 2004 #7 smercer, thanks for the reply. Somehow the problem resolved itself. Not sure if it just went away or if I changed something to make it go away.
smercer, thanks for the reply. Somehow the problem resolved itself. Not sure if it just went away or if I changed something to make it go away.
smercer Registered User. Local time Today, 23:40 Joined Jun 14, 2004 Messages 442 Jul 12, 2004 #8 robart6 said: smercer, thanks for the reply. Somehow the problem resolved itself. Not sure if it just went away or if I changed something to make it go away. Click to expand... Thats because it is microsoft. they like to have an error here and there so you would spend money to have it fixed. when I first started using VBA i deleted the onerror gotos that the wizard put in and problem went away.
robart6 said: smercer, thanks for the reply. Somehow the problem resolved itself. Not sure if it just went away or if I changed something to make it go away. Click to expand... Thats because it is microsoft. they like to have an error here and there so you would spend money to have it fixed. when I first started using VBA i deleted the onerror gotos that the wizard put in and problem went away.
Mile-O Back once again... Local time Today, 14:40 Joined Dec 10, 2002 Messages 11,316 Jul 12, 2004 #9 It may just have been a loading or repainting issue.