Invalid Property value error setting focus of a userform checkbox

Ark68

Well-known Member
Joined
Mar 23, 2004
Messages
4,616
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Is anyone able to shed some light as to why I might be getting an "Invalid property valve" with the code highlighted in red below?

Rich (BB code):
With frmservice
        .Controls("frm_service" & index).Visible = 2
        .Controls("frm_service" & index).Caption = "  SERVICE " & index & "  "
        .Controls("cbx_s" & index & "_rln").Enabled = True
        .Controls("cbx_s" & index & "_rln").locked = False
        .Controls("cbx_s" & index & "_chg").Enabled = True
        .Controls("cbx_s" & index & "_chg").locked = False
        .Controls("tb_s" & index & "_upr").Enabled = False
        .Controls("tb_s" & index & "_lwr").Enabled = False
        .Controls("cb_s" & index & "_crew").Enabled = False
        .Controls("cb_s" & index & "_div").Enabled = False
        .Controls("cb_s" & index & "_base").Enabled = False
        .Controls("cbx_s" & index & "_rln").SetFocus
        .Controls("cb_s" & index & "_pitch").Enabled = False
        For lbl = 1 To 6
            .Controls("lbl_s" & index & "_" & lbl).Enabled = False
        Next lbl
        .Controls("cbt_s" & index & "_del").Enabled = False
        .Controls("cbt_s" & index & "_end").Enabled = False
        If index < 8 Then
            .Controls("cbt_s" & index & "_add").Enabled = False
        End If
    End With
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Likely because the control type in question does not support the SetFocus method.
 
Upvote 0
Solution

Forum statistics

Threads
1,224,824
Messages
6,181,187
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top