Help needed!!i'm stuck!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi guys,
May I know what is the code for linking the windows form in MainMenu? For
example, in my MainMenu I have Report...so when I click the Report in
MainMenu, it will go to the Report form....that's all..

Thanks in advance..
 
on the menu click event,you key down the follow code

ReportFormName FormReport = new ReportFormName();
FormReport.Show();//you may write in another way,FormReport.ShowDialog();
 
Back
Top