i am working on C# application. i want to make one module of 4 form of C# like
i am making 4 forms, 1) student, 2) exam, 3) result, 4) report in C# and this forms i want to add on 1 module like studentdetails. how to make menu bar of forms in C#
Loading
SenthilkumarPosted Apr 7, 2012, 3:44 AM
C# Windows application provides the MenuStrip control. It is configurable in windows application.
Steps:
Create the windows application
Drag the MenuStrip control in the Menus & Toolbars
It will show the menu and sub menu option. You can change the name as well.
It will generate the code automatically.
visual representation can be found here:
http://www.homeandlearn.co.uk/csharp/csharp_s4p1.html
http://msdn.microsoft.com/en-us/library/360kwx3z(v=vs.90).aspx
Sam HobbsPosted Apr 6, 2012, 7:29 PM
I also do not understand how the forms relate to each other and to the application. Will there be one and only one of each of the four forms for the application? If not then we need details explaining how many of each form will exist and such. We need more details such as that.
Arvind YadavPosted Apr 6, 2012, 6:16 AM
MuthuMari MPosted Apr 6, 2012, 6:00 AM
Through c# code pls refer this link
http://tcdev.co.uk/?p=204
Thanks