C
Claire
Hi:
I'm having trouble getting my message across on this one. Hopefully, third
time lucky. Thanks to everyone that offered suggestions previously, but I'm
running out of time. I know I need to learn VBA unfortunately, time is not
on my side.
I need some code that will make access click in a list box for me, not go to
the list box, not set the focus to the list box, but physically click the
list box. The list box is currently showing the expected result, but in
order for a recalculation to take place on another form, you must physically
click in the list box.
I have tried many times, without success, to use _click to make this happen.
I know this should be really easy, but I am at my wits end. All of my
efforts end up with "Sub or Function not defined" or "Method or Data member
not found" errors.
Could somebody that KNOWS, please help me out with this one.
Below is the portion of my code that I am having trouble with:
Private Sub cboProgress_AfterUpdate()
Dim lstGstNew As Variant
Me.lstGstNew.Requery (correct result shows)
Me.lstGstNew.SetFocus (goes to the list box)
Me.lstGSTNew_click (blows up with Method or Data member not found
error)
A million thanks
Claire
I'm having trouble getting my message across on this one. Hopefully, third
time lucky. Thanks to everyone that offered suggestions previously, but I'm
running out of time. I know I need to learn VBA unfortunately, time is not
on my side.
I need some code that will make access click in a list box for me, not go to
the list box, not set the focus to the list box, but physically click the
list box. The list box is currently showing the expected result, but in
order for a recalculation to take place on another form, you must physically
click in the list box.
I have tried many times, without success, to use _click to make this happen.
I know this should be really easy, but I am at my wits end. All of my
efforts end up with "Sub or Function not defined" or "Method or Data member
not found" errors.
Could somebody that KNOWS, please help me out with this one.
Below is the portion of my code that I am having trouble with:
Private Sub cboProgress_AfterUpdate()
Dim lstGstNew As Variant
Me.lstGstNew.Requery (correct result shows)
Me.lstGstNew.SetFocus (goes to the list box)
Me.lstGSTNew_click (blows up with Method or Data member not found
error)
A million thanks
Claire