Click to See Complete Forum and Search --> : VB Frames
staskied
Jan 17th, 2000, 12:00 AM
With that I already need to know the number of frames I am going to have in my applications. I want to be able to add an unlimited number of frames. Is there a way to do that?
David
staskied
Jan 17th, 2000, 11:22 AM
Is it possible to add frames dynamically to a vb app, and if so how do you go about doing it?
David
Clunietp
Jan 17th, 2000, 11:33 AM
Add a frame (could be hidden) with an index of 0 to your form, then use this code
'load new frame
Load Frame1(Frame1.UBound + 1)
'show/position the frame
With Frame1(Frame1.UBound)
.Visible = True
.Top = 100
.Left = 100
End With
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.