Search found 8 matches

by nitin
Thu Apr 16, 2009 12:02 pm
Forum: Automation API
Topic: difference between Process.WaitForInputIdle and App.Sleep
Replies: 4
Views: 7876

difference between Process.WaitForInputIdle and App.Sleep

Hi Gabor, Thanks for reply, Could you please tell me, what is meaning of below these API. vsProcess is visual studio process ======================= bool done = false; Element statusBar = StatusBar; while (!done && count < 20) { count++; vsProcess.WaitForInputIdle(waitTimeMaxMsecs); Application.Slee...
by nitin
Thu Apr 16, 2009 8:35 am
Forum: Automation API
Topic: difference between Process.WaitForInputIdle and App.Sleep
Replies: 4
Views: 7876

difference between Process.WaitForInputIdle and App.Sleep

Hi All,

Waiting for reply.

Thanks and Regards,
Nitin
by nitin
Wed Apr 15, 2009 12:08 pm
Forum: Automation API
Topic: difference between Process.WaitForInputIdle and App.Sleep
Replies: 4
Views: 7876

difference between Process.WaitForInputIdle and App.Sleep

Hi All, I am testing Visual Studio Addin, so my test open visual studio process and do some tests now problem is at the time of closing its take too much time so, i have to wait till the process is properly exist Added code like ============================================== if (vsProcess.HasExited)...
by nitin
Thu May 15, 2008 6:50 am
Forum: Automation API
Topic: treeview : uncheck/check on parent node not reflect on child
Replies: 2
Views: 3518

uncheck/check on parent node not reflect on child

Hi Ranorex Team,

Is any different between
'Unchecking' using Mouse and using 'UnCheckItem' method

becouse using recorder its work properly.


Thanks,
Nitin
by nitin
Thu May 15, 2008 6:40 am
Forum: Automation API
Topic: treeview : uncheck/check on parent node not reflect on child
Replies: 2
Views: 3518

treeview : uncheck/check on parent node not reflect on child

Hi Ranorex Team, I have a treeview control but when i make uncheck using 'UnCheckItem' method it only uncheck that node and child node keep as it is ( not unchecking ) int isUncheck = treeView1.UncheckItem(itemPos); so how can i handle this? (i can do this by selecting each sub-node but there are to...
by nitin
Fri Nov 10, 2006 7:37 am
Forum: General Questions
Topic: how to select propertypage control
Replies: 2
Views: 3607

Hi,

I can do this like :
Control propertyGrid = form.FindControlName("propertyGrid1");
by nitin
Fri Nov 10, 2006 7:04 am
Forum: General Questions
Topic: how to select propertypage control
Replies: 2
Views: 3607

how to select propertypage control

Hi,

I can select form control with function to find it but
If i want to find PropertyGrid control then there is no
function to find it.
Is any other way to find it and retrieve?

Thanx,
Nitin.
by nitin
Thu Nov 09, 2006 6:12 am
Forum: General Questions
Topic: optimize way to product testing
Replies: 1
Views: 3729

optimize way to product testing

Hi, I want to write test suite to test my product. which one more optimistic way 1] Can I write by providing action to test and it will follow to test. Like if i want to test menu of product so can i write action in file or is this way I can write in ranorex? generalized action like : select menu,go...