AfterUpdate - popup a text box

SweetBabie

Registered User.
Local time
Today, 14:56
Joined
Mar 26, 2010
Messages
13
I'm very new with access...

I am doing a form and I want to be able to select cheque from the Combo Box (Payment) and then my CHQ# (i want this to be unvisible) text box will appear right next to it. I am not to sure how to go about this..

Thanks In Advance

SB
 
I'm very new with access...

I am doing a form and I want to be able to select cheque from the Combo Box (Payment) and then my CHQ# (i want this to be unvisible) text box will appear right next to it. I am not to sure how to go about this..

Thanks In Advance

SB

just make label/ textbox next to combo box.
after update of combo box copy this code

Code:
Private Sub Combo0_AfterUpdate()
Label2.Visible = True
End Sub

and in open form:
Code:
Private Sub Form_Open(Cancel As Integer)
Label2.Visible = False
End Sub
 
The only thing is I just want to CHQ field to appear when I put Cheque in the payment section. Thanks again SB
 
The only thing is I just want to CHQ field to appear when I put Cheque in the payment section. Thanks again SB
basically it is the same
so you put the after_update code in your payment section and associate the name.
 
Last edited:

Users who are viewing this thread

Back
Top Bottom