Need some .NET guidance
So i'm trying to put a .NET application together but I come from a PHP/Java background.
I've got a basic windows form running with a toolbar accross the top with four options, customers, employees, parts and workorders which all have tables in SQL Server, the data grids are all working fine.
What I want to do is load a new form e.g. viewCustomers when the relevant button is clicked on the toolbar but i'm not sure how to do this?
In Java i'd just have a JFrame and then different Panes and load a pane into the frame. Could someone tell me if this is possible with .NET? I can't find such thing and my searches aren't being helpful.
Cheers
what are you reading for?
April 25th, 2007 11:20am
within the event handler:
Form myform = new Form();
myform.Show();
arg!
April 25th, 2007 11:56am
What specific behavior do you need it to exhibit?
arg!
April 25th, 2007 11:58am
You could add panes to the existing form and show/hide them as needed. I hate doing that because working with a GUI that is in layers is a PITA.
JoC
April 25th, 2007 12:09pm
Panes = panels.
JoC
April 25th, 2007 12:10pm
Cheers guys, I'll give it a try when I'm back at work tomorrow, no doubt i'll be posting again!
what are you reading for?
April 25th, 2007 1:02pm
Kenny
April 25th, 2007 2:20pm
Nah im going with C# currently, will take a read though, cheers kenny
what are you reading for?
April 25th, 2007 2:38pm
the objects are pretty much the same.
Kenny
April 25th, 2007 2:47pm