A
alborg
I have a combobox on a UserForm that I want to use to "push" data to the
various fields. The problem I see is that no matter what I use- the
AfterUpdate event or the OnChange event, the fields don't get filled until
the enduser clicks on the form. How can I get the form to paint itself
automatically without this user input?
Here's the comboboxx code:
Private Sub PTNAME_AfterUpdate()
[DOB] = [PTNAME].Column(2)
[FNAME] = [PTNAME].Column(1)
[ACCT] = [PTNAME].Column(3)
[LNAME] = [PTNAME].Column(0)
End Sub
Any ideas?
various fields. The problem I see is that no matter what I use- the
AfterUpdate event or the OnChange event, the fields don't get filled until
the enduser clicks on the form. How can I get the form to paint itself
automatically without this user input?
Here's the comboboxx code:
Private Sub PTNAME_AfterUpdate()
[DOB] = [PTNAME].Column(2)
[FNAME] = [PTNAME].Column(1)
[ACCT] = [PTNAME].Column(3)
[LNAME] = [PTNAME].Column(0)
End Sub
Any ideas?