Search found 15 matches

by twardega
Fri Jun 27, 2014 2:22 pm
Forum: Technical / Scripting
Topic: How to set File Version and Product Version in EXE
Replies: 7
Views: 11090

Re: How to set File Version and Product Version in EXE

I should further explain that my scripts are compiled to EXE files and then included in an MSI file (using WIX). The MSI files are deployed to all users using Group Policy. It will be very helpful for me to be able to verify that the latest MSI contained the correct EXE build version and that it was...
by twardega
Fri Jun 27, 2014 2:13 pm
Forum: Technical / Scripting
Topic: How to set File Version and Product Version in EXE
Replies: 7
Views: 11090

Re: How to set File Version and Product Version in EXE

JRL - thank you very much for your suggestion. I tested your solution and it works as long as the version number contains single digits in all positions. If you use more than one digit in any position of the version number, the EXE file will not work. You would get an error: The application has fail...
by twardega
Thu Jun 19, 2014 6:11 pm
Forum: Technical / Scripting
Topic: How to set File Version and Product Version in EXE
Replies: 7
Views: 11090

How to set File Version and Product Version in EXE

I would like to be able to set File version and Product version properties on the EXE file generated by Macro Scheduler Pro compiler. This will allow me to verify quickly if my clients are running the latest build of the macros that I have developed - by right-clicking on the exe file, selecting Pro...
by twardega
Fri Jul 13, 2012 7:42 pm
Forum: Technical / Scripting
Topic: Where is the Send Keys to Object wizard hiding?
Replies: 2
Views: 2964

Got it - thanks!

Tomek
by twardega
Fri Jul 13, 2012 7:00 pm
Forum: Technical / Scripting
Topic: Where is the Send Keys to Object wizard hiding?
Replies: 2
Views: 2964

Where is the Send Keys to Object wizard hiding?

Hi, I have a Pro version (13.1.6) and I need to use the Send Keys to Object function. I have to locate quite a few objects and was hoping to use the wizard, but I never used wizards before in Macro Scheduler and I cannot locate it. Could you please let me know how I can navigate to this wizard - tha...
by twardega
Thu Aug 19, 2010 3:30 pm
Forum: General Discussion
Topic: IfWindowOpen seems to run slower in version 12.0.5 vs. 11.x
Replies: 9
Views: 11783

Thanks for all the posts and a new option in version 12.0.6 (WIN_SLEEP). Currently I am using WaitWindowOpen in the code that does not have to perform fast. However, I started using a different approach in the code that must perform fast. Instead of using: WaitWindowOpen>%WinTitle% I am using the fo...
by twardega
Thu Jul 22, 2010 5:50 pm
Forum: General Discussion
Topic: IfWindowOpen seems to run slower in version 12.0.5 vs. 11.x
Replies: 9
Views: 11783

Thanks for your replies.

I tested suggestion for setting WF_TYPE=2 and the response is still noticeably slower than when compiled with version 11.1.10 (that I keep to do my production build...)

The process lookup fixes the issue at hand (but it does not make IfWindowOpen faster...)
by twardega
Mon Jul 19, 2010 2:38 pm
Forum: General Discussion
Topic: IfWindowOpen seems to run slower in version 12.0.5 vs. 11.x
Replies: 9
Views: 11783

IfWindowOpen seems to run slower in version 12.0.5 vs. 11.x

It appears that IfWindowOpen call is taking a longer time when the code is compilied in v. 12 vs. 11. I use IfWindowOpen to check if another instance of the program is running. Please let me know if you can suggest a workaround. // AcctType and Appl are passed as command-line arguments. Here: define...
by twardega
Mon Jul 13, 2009 8:46 pm
Forum: Technical / Scripting
Topic: GetWordNT.dll blocked by Antivirus
Replies: 5
Views: 5024

Thanks again for the explanation - now I understand what is going on.

Best regards,

Tomek
by twardega
Mon Jul 13, 2009 7:55 pm
Forum: Technical / Scripting
Topic: GetWordNT.dll blocked by Antivirus
Replies: 5
Views: 5024

I have one follow-up comment and a question: the message captured by Antivirus shows that Outlook.exe is trying to run this DLL and this is confusing. The macro that I developed has nothing to do with Outlook or sending/receiving emails. Would there be any possibility of exploiting this DLL from Out...
by twardega
Mon Jul 13, 2009 7:08 pm
Forum: Technical / Scripting
Topic: GetWordNT.dll blocked by Antivirus
Replies: 5
Views: 5024

Thanks! I will forward your reply to our security staff.

Tomek
by twardega
Mon Jul 13, 2009 6:45 pm
Forum: Technical / Scripting
Topic: GetWordNT.dll blocked by Antivirus
Replies: 5
Views: 5024

GetWordNT.dll blocked by Antivirus

I developed a macro that has been compiled in Macro Scheduler Pro and deployed to workstations. This macro has been in use for over 2 years. Recently the new version of Antivirus software became more 'aggressive' in stopping various programs from executing. Antivirus log shows messages like this: C:...
by twardega
Tue Jan 29, 2008 10:00 pm
Forum: Technical / Scripting
Topic: Find bitmap file x/y size
Replies: 9
Views: 12492

Thanks! This is what I was looking for.
by twardega
Tue Jan 29, 2008 1:45 pm
Forum: Technical / Scripting
Topic: Find bitmap file x/y size
Replies: 9
Views: 12492

OK. After some research this what I came up with (still need to find color depth). Maybe it will be useful for others... VBSTART Function ImgDimensions (ImgFile) dim myImg, fs Set fs= CreateObject("Scripting.FileSystemObject") If fs.fileExists(ImgFile) Then Set myImg = Loadpicture(ImgFile) iWidth = ...
by twardega
Tue Jan 29, 2008 4:09 am
Forum: Technical / Scripting
Topic: Find bitmap file x/y size
Replies: 9
Views: 12492

Find bitmap file x/y size

There is a function to capture a rectangle to .bmp file: ScreenCapture>X1,Y1,X2,Y2,Filename I am looking for a way to find width, height and color depth of bitmap file from Macro Scheduler, something like: ImageProperties>Filename,Width,Height,ColorDepth Image editors provide this information about ...
Sign up to our newsletter for free automation tips, tricks & discounts