Page 1 of 1

Menu class for .NET form does not work

Posted: Mon Oct 01, 2007 9:28 pm
by p.zott
I want to use the menus of a .NET application.
I tried the Menu class, but it does not work.

Any suggestion?

Peter

Posted: Tue Oct 02, 2007 5:37 pm
by Support Team
I tried the Menu class, but it does not work.
Please try the MenuStrip class:

Code: Select all

MenuStrip menuStrip = form.FindMenuStrip("menuStrip1");
menuStrip.SelectItemText("Submenu1", "Submenu1Item1");
Jenö
Ranorex Support Team

Posted: Tue Oct 16, 2007 5:25 pm
by p.zott
Thank you very much.
The function menuStrip.SelectItemText works :lol:

Peter