What happened to Frames

  • Thread starter Thread starter Joel
  • Start date Start date
J

Joel

In vb6 I used frames to hold whole screens of variables
and shifted the frames around the form as needed. I do
not see frames in vb.net. Does anyone know what has
replaced frames?
 
* "Joel said:
In vb6 I used frames to hold whole screens of variables
and shifted the frames around the form as needed. I do
not see frames in vb.net. Does anyone know what has
replaced frames?

'GroupBox' and/or 'Panel'.
 
Joel,
In addition to the other comments, I would consider using UserControls
instead of "Frames", this way the logic for all the controls is contained
within the UserControl itself, hopefully reducing the size of the form
itself.

Of course due to the logic of the form, a User Control may be more pain then
gain.

Hope this helps
Jay
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top