Thank you very much for you recommendation I'm going to try this if this will work surly I'll let you know.Dorian (MJT support) wrote: ↑Mon Feb 19, 2024 8:51 amThis might get you started : viewtopic.php?f=3&t=10590&hilit=Imagemagick#p45051
Search found 10 matches
- Mon Feb 19, 2024 10:28 am
- Forum: Technical / Scripting
- Topic: File Format Conversion and compression through window command.
- Replies: 5
- Views: 8105
Re: File Format Conversion and compression through window command.
- Mon Feb 19, 2024 8:31 am
- Forum: Technical / Scripting
- Topic: File Format Conversion and compression through window command.
- Replies: 5
- Views: 8105
File Format Conversion and compression through window command.
Hello everyone, Transforming images from one format such as JPEG, PNG, GIF, etc. to another. I got a png file image which is size in 8MB, the picture taken from the satellite, and I want to keep that image in smaller size for that I'm using online application such as jpeg compressor for compressing ...
- Tue Feb 13, 2024 8:49 am
- Forum: Technical / Scripting
- Topic: Microsoft Access (Office 365) connection string
- Replies: 1
- Views: 5271
Re: Microsoft Access (Office 365) connection string
Please try to replace this into your db connection string and then try on the other hand you can go through the official documentation.
Code: Select all
Provider=Microsoft.ACE.OLEDB.16.0;Data Source=c:\CusMod Testing\JBMS Testing.accdb;Persist Security Info=False;
- Fri Feb 09, 2024 10:14 am
- Forum: Technical / Scripting
- Topic: Text in HTML Viewer is not copied.
- Replies: 8
- Views: 13695
Re: Text in HTML Viewer is not copied.
Hey, have you tried using JavaScript to programmatically copy the selected text from the HTML viewer to the clipboard. This can be achieved using the method in combination with the selection object.
Code: Select all
document.execCommand()
- Tue Feb 06, 2024 5:23 am
- Forum: Beginners
- Topic: How to use onEvent
- Replies: 3
- Views: 7813
Re: How to use onEvent
I think I forget to add double quote but you added and you solved this.
- Fri Feb 02, 2024 9:05 am
- Forum: Technical / Scripting
- Topic: Time since last user input
- Replies: 5
- Views: 13575
Re: Time since last user input
Track timestamps in your script define the structure size based on your server requirements for accurate tracking.
- Wed Jan 31, 2024 5:18 am
- Forum: Technical / Scripting
- Topic: HTTPRequest not working in Compiled version
- Replies: 18
- Views: 29660
Re: HTTPRequest not working in Compiled version
That's great you found you solution.
- Mon Jan 29, 2024 8:37 am
- Forum: General Discussion
- Topic: Another Permissions Error
- Replies: 3
- Views: 14108
Re: Another Permissions Error
Try closing other applications or restarting your system. If problem again comes then check the file permission for the macro in windows explorer.
- Sat Jan 27, 2024 7:42 am
- Forum: General Discussion
- Topic: Virtual desktop
- Replies: 1
- Views: 4976
Re: Virtual desktop
I think you should use lightweight virtual desktop solution like TeamViewer or AnyDesk to run your macros remotely avoiding disruption on your primary computer.
- Thu Jan 18, 2024 10:10 am
- Forum: Beginners
- Topic: How to use onEvent
- Replies: 3
- Views: 7813
Re: How to use onEvent
Hey try this code. XLOpen>C:\Users\Documents\Template\149405.xlsx,1,xl Wait>3 Let>row=15 Let>col=6 XLGetCell>xl,ProcessSheet,row,4,upper_val XLGetCell>xl,ProcessSheet,row,5,lower_val Let>warning=FALSE //**BREAKPOINT** OnEvent>CUSTOM,"CheckCells",,warning,"PopupWindow" Label>start SRT>CheckCells XLGe...