dropdown initialize

orzik

Board Regular
Joined
Jul 14, 2004
Messages
85
Hello,
I am redesigning a User form into a spreadsheet "form" controls.
I used below "code 1" to dynamically populate drop-down list (combo box) with tab names as they are created with my tool (tab names i.e. tab1, tab2, tab3 etc) It was working fine on a User Form used with "Private Sub UserForm_Initialize()". My challenge is to "initialize" the drop-down placed directly on a spreadsheet (ActiveX Control)
Any advice appreciated.
Cheers,


Code 1
Code:
        Dim VerTabName As String
        VerTabName = "v" & i & " LOE"

        With vtabs_cbo
            For i = 1 To 33
                VerTabName = "v" & i & " LOE"    'v1 LOE
                If SheetExists(VerTabName) = True Then               
                    .AddItem VerTabName
                End If
            Next i
        End With

Code 2
The below code I've found on MrExcel boards and works great. It is used in the code above.
Code:
Private Function SheetExists(sname) As Boolean
'   Returns TRUE if sheet exists in the active workbook
    Dim x As Object
    On Error Resume Next
    Set x = ActiveWorkbook.Sheets(sname)
    If Err = 0 Then SheetExists = True _
       Else SheetExists = False
End Function

orzik
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.

Forum statistics

Threads
1,215,223
Messages
6,123,711
Members
449,118
Latest member
MichealRed

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