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
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