Control referencing in vba

arage

Registered User.
Local time
Today, 15:57
Joined
Dec 30, 2000
Messages
537
Control referencing in vba
I’d like to be able to do something like this in code, where I write

Me.cboRegion(I) where I=0 and thus me.cboRegion(I) will be me.cboRegion0

I currently wrote something like this but it is failing with a “method/data member error not found error”

If IsNull(Me.cboRegion(I)) = True And IsNull(Me.txtEvent(i)) = True Then
 

Users who are viewing this thread

Back
Top Bottom