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
Search found 59 matches
- Wed Oct 14, 2020 10:41 am
- Forum: Technical / Scripting
- Topic: How Arraycount after CSVFileToArray
- Replies: 6
- Views: 8694
- Wed Apr 01, 2020 2:36 pm
- Forum: Enhancement Suggestions
- Topic: SFTP needed.
- Replies: 0
- Views: 24171
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
Greetings Oli
- Wed Oct 04, 2017 2:33 pm
- Forum: Technical / Scripting
- Topic: Move a file
- Replies: 2
- Views: 3024
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...
- Wed Oct 04, 2017 2:20 pm
- Forum: Technical / Scripting
- Topic: SMTPSendMail on Windows Server with SSL
- Replies: 3
- Views: 3781
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
i placed both missed files into a folder & now it works fine for me. Thank you for your fast support
- Mon Oct 02, 2017 1:15 pm
- Forum: Technical / Scripting
- Topic: SMTPSendMail on Windows Server with SSL
- Replies: 3
- Views: 3781
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...
- Thu Jun 13, 2013 10:03 pm
- Forum: Technical / Scripting
- Topic: Windows 7 ADO
- Replies: 5
- Views: 5966
- Tue Jun 11, 2013 2:51 am
- Forum: Technical / Scripting
- Topic: Control-O and Alt-FO key stroke problems
- Replies: 18
- Views: 14896
Paste This..
i think it will work
or ALT-FO
Kind Regard O.Hilger
i think it will work
Code: Select all
Press LCTRL
Send>o
Release LCTRL
Code: Select all
Let>delay=0.25
Press ALT
Send>f
Wait>delay
Send>o
Release ALT
Wait>delay
Press>Enter
- Thu Apr 18, 2013 5:58 pm
- Forum: General Discussion
- Topic: Capture text from cmd window
- Replies: 5
- Views: 10435
- Thu Apr 18, 2013 4:33 pm
- Forum: General Discussion
- Topic: Capture text from cmd window
- Replies: 5
- Views: 10435
Re: Capture text from cmd window
U can try this.
Kind regards oli
Code: Select all
GetTextInit
GetWindowTextEx>C:\Windows\system32\cmd.exe,strText
MDL>strText
- Wed Apr 03, 2013 9:27 am
- Forum: Technical / Scripting
- Topic: RegEx-Removal of Leading & Trailing Spaces
- Replies: 9
- Views: 9535
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...
- Wed Apr 03, 2013 8:37 am
- Forum: Technical / Scripting
- Topic: RegEx-Removal of Leading & Trailing Spaces
- Replies: 9
- Views: 9535
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...
- Fri Mar 29, 2013 8:13 am
- Forum: Enhancement Suggestions
- Topic: [Done] Dialog Designer Create AddDialogHandler>
- Replies: 2
- Views: 13036
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...
- 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: 16911
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...
- Wed Feb 27, 2013 1:40 pm
- Forum: Technical / Scripting
- Topic: Progressbarcolor ...how to change it?
- Replies: 4
- Views: 6259
- Wed Feb 27, 2013 9:05 am
- Forum: Technical / Scripting
- Topic: Progressbarcolor ...how to change it?
- Replies: 4
- Views: 6259
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...