Ark68
Well-known Member
- Joined
- Mar 23, 2004
- Messages
- 4,616
- Office Version
- 365
- 2016
- Platform
- Windows
I have this code in my userform initialization code.
I am getting a "Method or data member not found" error with the line and red (and those that follow similarly). "cbx_res is the combobox control's name.
I'm using Excel v2411 packaged in Micosoft 365.
Rich (BB code):
...
With cbx_res
.AddItem "8k (7680x4320)"
.AddItem "4k (3840x2160)"
.AddItem "2k (2560x1440)"
.AddItem "HD2 (1920x1080)"
.AddItem "HD1 (1280x720)"
.AddItem "SD3 (854x480)"
.AddItem "SD2 (640x360)"
.AddItem "SD1 (426x240)"
End With
...
I am getting a "Method or data member not found" error with the line and red (and those that follow similarly). "cbx_res is the combobox control's name.
I'm using Excel v2411 packaged in Micosoft 365.