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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

new problem with frames with in frames

Status
Not open for further replies.

ixian

Programmer
Jul 13, 2001
128
US
Anyone,

Okay my resolution was good on fmeMain with fmeList1 adn fmeList2
with this code
Private Sub cmdScripting_Click()
fmeList1.Visible = True
fmeList2.Visible = False
fmeList1.Top = 850
End Sub
Private Sub cmdlist2_Click()
fmeList2.Visible = True
fmeList1.Visible = False
fmeList2.Top = 850
End Sub

Private Sub Form_Load()
fmeMain.Visible = True
fmeList1.Visible = False
fmeList2.Visible = False

This works...
I decided to expand the scope based on my number of databases.. a total of 8
I change fme to the standred of grp

So I made 8 frames that on top of the grpMain with 8 command buttons to relate to each new frame.
I coded it all the same as the 3 frame issue with the extension of each cmd having 8 grp in it with the top issue(solved).
It does not make each visible on the click command.

What would i do to get this done correctly?

Aaron
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top