Invalid Property value error setting focus of a userform checkbox

Ark68

Well-known Member
Joined
Mar 23, 2004
Messages
4,564
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

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Likely because the control type in question does not support the SetFocus method.
 
Upvote 0
Solution

Forum statistics

Threads
1,215,427
Messages
6,124,830
Members
449,190
Latest member
rscraig11

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