User1763350333 posted
Just wanna ask about general question. I develop thia app using .net framework and using win CE 4.0 emulator in development deploy. My prob is: I already created a menu screen(default form) using button for example: 1. Register 2. Audit 3. Exit How to a call
form when I click register button. Thanks.
User2085740027 posted
Hi Its similar to how you do it windows form. Just double click ur menu it will take you to the code page of the menu click where u should create the form about of the form which u want to show and then call the show method. If ur form is Form2 then ur code
will look like private void menuItem2_Click_1(object sender, System.EventArgs e) { Form2 frm= new Form2(); frm.Show(); }