Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

get name of combbox in a frame1 1

Status
Not open for further replies.

sal21

Programmer
Apr 26, 2004
411
0
16
IT
I need to loop all combobox in frame1 an d get the combobox

note:
in form have also frame2, but i need to loop combobox only in frame1
 
Here's a starting point for you:

Code:
[COLOR=blue]    Dim mycontrol As Control
    For Each mycontrol In Controls
        Debug.Print mycontrol.Name, TypeName(mycontrol), mycontrol.Container.Name
    Next[/color]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top