Search found 59 matches

by olllllliii
Wed Oct 14, 2020 10:41 am
Forum: Technical / Scripting
Topic: How Arraycount after CSVFileToArray
Replies: 6
Views: 7421

Re: How Arraycount after CSVFileToArray

The Final Linecount Programm ...much faster

Let>strDatei=C:\Users\Olllllliii\Desktop\yourfile.csv
ReadFile>strDatei,strData

Let>muster=CRLF
Regex>muster,strData,1,ArrZ,numArr,0,,
Let>info=numArr
MDL>info

This script is many times faster than the older ones
by olllllliii
Wed Apr 01, 2020 2:36 pm
Forum: Enhancement Suggestions
Topic: SFTP needed.
Replies: 0
Views: 20730

SFTP needed.

I often have the problem that our data exchange system only accepts SFTP. I have to automatically exchange or send data with suppliers every day. I wish I could do this with the a build in funktion of the Macro Scheduler.

Greetings Oli
by olllllliii
Wed Oct 04, 2017 2:33 pm
Forum: Technical / Scripting
Topic: Move a file
Replies: 2
Views: 2424

Re: Move a file

Hallo , i use robocopy for the copywork , Let>path=C:\Windows\System32\Robocopy.exe Let>source=c:\test Let>target=d:\mytarget\ Let>options=/COPY:DAT /E /MT /W:2 // Robocopy Action Let>Action=%path% %source% %target% %options% Let>RP_WINDOWMODE=1 RunProgram>%Action% Label>hier WaitWindowClosed>C:\Win...
by olllllliii
Wed Oct 04, 2017 2:20 pm
Forum: Technical / Scripting
Topic: SMTPSendMail on Windows Server with SSL
Replies: 3
Views: 2837

Re: SMTPSendMail on Windows Server with SSL

Thank you Marcus,

i placed both missed files into a folder & now it works fine for me. Thank you for your fast support :D
by olllllliii
Mon Oct 02, 2017 1:15 pm
Forum: Technical / Scripting
Topic: SMTPSendMail on Windows Server with SSL
Replies: 3
Views: 2837

SMTPSendMail on Windows Server with SSL

SMTPSendMail SSL on Windows Server 2016 Builddate 03.06.2017 Let>output=Mydatatosend Let>SMTP_AUTH=1 Let>SENDMAIL_STATUS=1 Let>SMTP_USERID=kaikaitode@kaikaito.de Let>SMTP_PASSWORD={"ThePassword"} // Not the real PW Let>SMTP_PORT=25 Let>SMTP_SSL=0 SMTPSendMail>%ZielMail%,mx1.caconnect.de,kaikaitode@k...
by olllllliii
Thu Jun 13, 2013 10:03 pm
Forum: Technical / Scripting
Topic: Windows 7 ADO
Replies: 5
Views: 5174

Normally there is no Need to compile it on Windows 7 for use in Windows 7.

Did you try to run the executable with admin privileges ?
In most case it works fine.
by olllllliii
Tue Jun 11, 2013 2:51 am
Forum: Technical / Scripting
Topic: Control-O and Alt-FO key stroke problems
Replies: 18
Views: 12378

Paste This..
i think it will work

Code: Select all

Press LCTRL
Send>o
Release LCTRL
or ALT-FO

Code: Select all

Let>delay=0.25

Press ALT
Send>f
Wait>delay
Send>o
Release ALT
Wait>delay
Press>Enter
Kind Regard O.Hilger
by olllllliii
Thu Apr 18, 2013 5:58 pm
Forum: General Discussion
Topic: Capture text from cmd window
Replies: 5
Views: 9345

Is Macroscheduler running as user & cmd as superuser ( admin )..
u used Windows 7 64 bit , both running under user rights....

normally it must work ....maybe the rights...
by olllllliii
Thu Apr 18, 2013 4:33 pm
Forum: General Discussion
Topic: Capture text from cmd window
Replies: 5
Views: 9345

Re: Capture text from cmd window

U can try this.

Code: Select all

GetTextInit
GetWindowTextEx>C:\Windows\system32\cmd.exe,strText
MDL>strText
Kind regards oli
by olllllliii
Wed Apr 03, 2013 9:27 am
Forum: Technical / Scripting
Topic: RegEx-Removal of Leading & Trailing Spaces
Replies: 9
Views: 8028

Hi , yes ! there is a second way with stringreplace. I Think this is faster too. /* FullText: .......................Line 1 ....................Line 2 ..................Line 3 */ LabelToVar>FullText,strText // Before MDL>strText Let>pattern={"."} Stringreplace>strText,%pattern%,,strText // After MDL...
by olllllliii
Wed Apr 03, 2013 8:37 am
Forum: Technical / Scripting
Topic: RegEx-Removal of Leading & Trailing Spaces
Replies: 9
Views: 8028

I think this is what you are looking for. /* FullText: .......................Line 1 ....................Line 2 ..................Line 3 */ LabelToVar>FullText,strText // Before MDL>strText // now i removed all dots ....you can Change that to {" "} below for spaces Let>pattern={"."} Regex>pattern,st...
by olllllliii
Fri Mar 29, 2013 8:13 am
Forum: Enhancement Suggestions
Topic: [Done] Dialog Designer Create AddDialogHandler>
Replies: 2
Views: 12323

Re: [Done] Dialog Designer Create AddDialogHandler>

I would like a way to create AddDialogHandler> and SetDialogProperties> lines from the Dialog Designer. I kind of picture it as: Right clicking on an object property line pops open the menu. Two new items have been added, one for AddDialogHandler> and one for SetDialogProperties>. Click on AddDialo...
by olllllliii
Thu Mar 28, 2013 2:03 pm
Forum: Enhancement Suggestions
Topic: A Idea for faster choosing an Event or Object from Dialog
Replies: 1
Views: 16268

A Idea for faster choosing an Event or Object from Dialog

Hi all , every time i have to open the Dialog designer to find out what Events are Supported for which Object Type AddDialogHandler>Dialog1,MSButton1,? AddDialogHandler>Dialog1,MSStringGrid1,OnEnter <-- , wouldnt it be nice you can choose the Method by right click it and choose the Event you want to...
by olllllliii
Wed Feb 27, 2013 1:40 pm
Forum: Technical / Scripting
Topic: Progressbarcolor ...how to change it?
Replies: 4
Views: 5164

Thanks Marcus,

that means for me I need to find another graphic solution
to produce yellow, green and red progressbars.
I thought the windows would at Aero could do. Now I'm smarter.

But i am not unhappy to do that ...

:-)

Regards
Oliver Hilger
by olllllliii
Wed Feb 27, 2013 9:05 am
Forum: Technical / Scripting
Topic: Progressbarcolor ...how to change it?
Replies: 4
Views: 5164

Progressbarcolor ...how to change it?

Hello i tryed to change the Progressbarcolor.... so i made a Dialog with progressbars...but the Progressbar is always green... Let>ColorNr=0 Label>MDL SetDialogProperty>Dialog1,ProgressBar1,Position,100 SetDialogProperty>Dialog1,ProgressBar1,BackgroundColor,ColorNr SetDialogProperty>Dialog1,Progress...
Sign up to our newsletter for free automation tips, tricks & discounts