Search found 7 matches

by Diddy
Mon Jul 23, 2018 10:00 am
Forum: How To …
Topic: Pause test with message box ;)
Replies: 1
Views: 2721

Re: Pause test with message box ;)

That would be a nice candidate for https://github.com/ranorex/Packages/tre ... ionHelpers ...
by Diddy
Tue Apr 26, 2016 1:42 pm
Forum: General Questions
Topic: Different date-format in Excel vs. Ranorex
Replies: 7
Views: 2250

Re: Different date-format in Excel vs. Ranorex

Nice to hear that! :)

Back to the topic: Think you must not format the cells with "Date"... or is it possible to start the date values with a ' in your Excel file?

Have fun!

PS: Save the XLSX as CSV and use CSVConnector works for me so it has to be some Excel issue (?)...
by Diddy
Tue Apr 26, 2016 11:38 am
Forum: General Questions
Topic: Different date-format in Excel vs. Ranorex
Replies: 7
Views: 2250

Re: Different date-format in Excel vs. Ranorex

[...]since today it started to throws erroros like "System.InvalidOperationException: Invoke oder BeginInvoke kann für ein Steuerelement erst aufgerufen werden, wenn das Fensterhandle erstellt wurde." when I try to preview the data set.[...]. This should be fixed since 5.4.6... Which version of Ran...
by Diddy
Thu Apr 14, 2016 2:52 pm
Forum: General Questions
Topic: Issue wrting data to an excel during runtime
Replies: 2
Views: 1336

Re: Issue wrting data to an excel during runtime

If you use System.Runtime.InteropServices you need a running instance of Excel. As you just wanna write data without open/save/close the Excel application you should use Microsoft.Office.Interop.Excel like shown in the example here: https://msdn.microsoft.com/en-us/library/ms173186(v=vs.80).aspx Hav...
by Diddy
Thu Apr 14, 2016 2:17 pm
Forum: General Questions
Topic: What is this warning message about?
Replies: 1
Views: 1222

Re: What is this warning message about?

Seems that the Ranorex process does not have permission to access the process "DbrFactorySetup", probably because it runs as Administrator. Luckily this doesn't affect your app testing... but is it possible that you run your Ranorex Spy/Studio as Administrator too?
by Diddy
Thu Apr 14, 2016 10:07 am
Forum: General Questions
Topic: Single project in multi-project Ranorex solution runs slowly
Replies: 2
Views: 1560

Re: Single project in multi-project Ranorex solution runs slowly

I would suggest you create a "New test solution" in Ranorex Studio, delete the default empty project and "Add existing project" the project you want to work on. You can use this small single-project solution for your work and all changes will be applied in your big solution "automatically".
by Diddy
Thu Apr 07, 2016 3:22 pm
Forum: Object Identification and Technologies
Topic: Writing multiline query using vb.net in ranorex
Replies: 5
Views: 3445

Re: Writing multiline query using vb.net in ranorex

[...]there is no equivalent to '@"string"' in VB. Agreed! At least you don't have to terminate the multiline strings with _ As you think of using parameters from an connector it could be useful to structure your statement using Linq anyway -> as described in some of krstcs' linked stackoverflow pos...