Search found 11 matches

by vdeore
Fri Apr 13, 2012 2:52 pm
Forum: General Questions
Topic: issue with closing excel object with C#
Replies: 8
Views: 4559

Re: issue with closing excel object with C#

Hi,
Does Ranorex support identifying PDF object and reading the content within?
by vdeore
Mon Jan 09, 2012 7:51 am
Forum: General Questions
Topic: Ranorex License not working
Replies: 1
Views: 1543

Ranorex License not working

We at Emptoris are facing issues with Ranorex machine license set up. We had installed license key on a machine which got formatted later. Now we are trying to install same license key on other machine and the license is shown in use. Please let us know how we can use the license key now because it’...
by vdeore
Wed Nov 09, 2011 6:56 am
Forum: General Questions
Topic: Ranorex performing slower
Replies: 10
Views: 2180

Re: Ranorex performing slower

Ok. But will you be able to debug without an application for which the scripts are written?

Thanks,
vdeore
by vdeore
Fri Nov 04, 2011 6:54 am
Forum: General Questions
Topic: Ranorex performing slower
Replies: 10
Views: 2180

Re: Ranorex performing slower

Hi Peter/Ranorex Support Team,

I think we need to do a webex for this instead of sending a solution file.
Please let us know when can we do the webex. We are located in India.

Thanks,
Vaibhav
by vdeore
Fri Oct 07, 2011 1:52 pm
Forum: General Questions
Topic: Ranorex performing slower
Replies: 10
Views: 2180

Re: Ranorex performing slower

Hi,
Please let me know the details required to do analysis of this issue.
by vdeore
Wed Oct 05, 2011 3:24 pm
Forum: General Questions
Topic: issue with closing excel object with C#
Replies: 8
Views: 4559

Re: issue with closing excel object with C#

Thanks, its working. But i have a question here. what i was using as mentioned earlier was ExcelProcess.Kill(); the method i am using is public void KillExcel() { Process[] AllProcesses = Process.GetProcessesByName("Excel"); foreach ( Process ExcelProcess in AllProcesses) { ExcelProcess.Kill(); Proc...
by vdeore
Wed Oct 05, 2011 2:00 pm
Forum: General Questions
Topic: Ranorex performing slower
Replies: 10
Views: 2180

Re: Ranorex performing slower

We are also facing this issue with Ranorex 3.0. We are using Keyword driven framework. I have noted that as we go on increasing keywords in excel, the performance degrades and we get timeout error and ranorex simply quits execution. I have also noted the memory usage and its not an issue. Observed t...
by vdeore
Wed Oct 05, 2011 1:51 pm
Forum: General Questions
Topic: How to minimize Ranorex object identification time
Replies: 6
Views: 1836

Re: How to minimize Ranorex object identification time

What are the minimum system configuration required for having good performance with Ranorex v3.0 licensed version with Windows OS ?
by vdeore
Wed Oct 05, 2011 1:45 pm
Forum: General Questions
Topic: issue with closing excel object with C#
Replies: 8
Views: 4559

Re: issue with closing excel object with C#

I tried this solution and it didn't work. Instead a workaround to close excel process is simply to kill the excel, but since that have the chances of corrupting the excel we can't use it. code to kill excel ######################## ExcelProcess.Kill(); ######################## Also tried the followi...
by vdeore
Tue Oct 04, 2011 7:00 am
Forum: General Questions
Topic: issue with closing excel object with C#
Replies: 8
Views: 4559

issue with closing excel object with C#

Hi, I am facing issue with closing excel object in C#. I am using the following code. ########################################### Marshal.ReleaseComObject(workbook); Marshal.ReleaseComObject(worksheet); Marshal.FinalReleaseComObject(excelObj); GC.Collect(); excelObj.Quit(); GC.Collect(); GC.WaitForP...