Using VB.Net
I am having the form name as “Employee Entry”
User want to open a Employee Entry from in 5 tabs…
For Example
When the user open a Employee Entry form, while entering the details at that same time, user again open a employee entry form (2nd Employee entry form show like a new employee entry from with out any details)
More Example
We can open Google, Yahoo, in one browser (by using Tab Function).
How to make this.
Need vb.net code Help
I’m assuming this is WinForms? You should design your Employee Entry as a User Control. You can then add a new instance of that control to your Form on each request of a new Employee. You would most likely have a seperate Employee object that you could pass to each instance of your EmployeeEntry user control.
EDIT1
Create a form with a menu strip across the top and a menu item called tsmiNewEmployee. Add a tab control to the form named tabEntryForms and set its fill style to Dock. Delete all default tab pages from it.
Add Class:
Add USerControl named EmployeeEntry. Puts osme Firts/Last name edit cotrols on it, etc. Add a Save button and a Cancel Button.
And in your main form that has the tab control:
That should get you started.