| View previous topic :: View next topic |
| Author |
Message |
p.zott
Joined: 22 Jul 2006 Posts: 19
|
Posted: Mon Oct 01, 2007 10:28 pm Post subject: Menu class for .NET form does not work |
|
I want to use the menus of a .NET application.
I tried the Menu class, but it does not work.
Any suggestion?
Peter |
|
| Back to top |
|
 |
Support Team Site Admin
Joined: 07 Jul 2006 Posts: 344
|
Posted: Tue Oct 02, 2007 6:37 pm Post subject: |
|
| Quote: |
| I tried the Menu class, but it does not work. |
Please try the MenuStrip class:
Code: click into code to enlarge
MenuStrip menuStrip = form.FindMenuStrip("menuStrip1");
menuStrip.SelectItemText("Submenu1", "Submenu1Item1");
Jenö
Ranorex Support Team |
|
| Back to top |
|
 |
p.zott
Joined: 22 Jul 2006 Posts: 19
|
Posted: Tue Oct 16, 2007 6:25 pm Post subject: |
|
Thank you very much.
The function menuStrip.SelectItemText works
Peter |
|
| Back to top |
|
 |
|