Ark68
Well-known Member
- Joined
- Mar 23, 2004
- Messages
- 4,570
- Office Version
- 365
- 2016
- Platform
- Windows
I seem to be stuck with a problem that likely has a very simple solution ...
My Code ...
uf1_main is a userform and and I'm trying to update it's objects. I am getting an "object required" error with the line in red which I assume means the actual userform isn't being recognized.
My Code ...
Rich (BB code):
'update userform
With uf1_main
'active
With .lb_cntaba_dt
.Caption = cnt_dt
If cnt_dt = 0 Then
.Enabled = False
.lb_aba_dt.Enabled = False
End If
End With
...
uf1_main is a userform and and I'm trying to update it's objects. I am getting an "object required" error with the line in red which I assume means the actual userform isn't being recognized.