Search found 7 matches

by cmiller
Thu Apr 05, 2007 12:30 am
Forum: Automation API
Topic: Mouse Control over Remote Desktop
Replies: 1
Views: 3325

Mouse Control over Remote Desktop

Hi Ranorex, I'm having trouble running some automation software over remote desktop because the mouse controls don't seem to work when in a remote desktop session. The same code works fine on the local machine. Is there a way to get the mouse to work? In the mean time I will try and work around usin...
by cmiller
Wed Mar 07, 2007 7:01 pm
Forum: Automation API
Topic: mouse methods
Replies: 1
Views: 3087

I think this is what you're looking for.

Code: Select all

Ranorex.Mouse.CoordinateMode = MouseCoordinateMode.ClientWindowCoordinates;
by cmiller
Wed Mar 07, 2007 6:59 pm
Forum: Automation API
Topic: Navigating task tray icon context menus
Replies: 7
Views: 4960

New version works like a charm.

Thanks
-cmiller
by cmiller
Tue Mar 06, 2007 10:51 pm
Forum: Automation API
Topic: Navigating task tray icon context menus
Replies: 7
Views: 4960

Thanks for all the help, I'll get the new version and give it a try.

I'll let you know the results as well.
by cmiller
Tue Mar 06, 2007 1:07 am
Forum: Automation API
Topic: Navigating task tray icon context menus
Replies: 7
Views: 4960

Thank you for all the help, I'm able to navigate RanorexSpy now, but still having trouble with other icons. I'm not able to GetItemText, SelectItemText or SelectPosition either of the two options in the Volume icon tray which controls the volume in windows XP. Form hTaskTray = Ranorex.Application.Fi...
by cmiller
Mon Mar 05, 2007 11:26 pm
Forum: Automation API
Topic: Navigating task tray icon context menus
Replies: 7
Views: 4960

Thank you for the code snippet, I converted it to C# but it is not working. The ContextMenu.SelectItemText returns error -3. As an exception the error is "The specified command could not be executed." Form hTaskTray = Ranorex.Application.FindFormClassName("Shell_TrayWnd", 1 , true, 5000); Element tr...
by cmiller
Mon Mar 05, 2007 7:34 pm
Forum: Automation API
Topic: Navigating task tray icon context menus
Replies: 7
Views: 4960

Navigating task tray icon context menus

Hi Ranorex, I'm having trouble finding the context menu of our applications' tray icon. I'm able to get the element of the icon, but the icon has 0 children elements. I have tried: Using the Ranorex.ContextMenu class - it doesn't find the context menu of the icon Right clicking on the icon and using...