Search found 36 matches
marcus as I said in my first explanation. I have a paragraph with no CR or LF in about 40 lines of text. When I used ReadLn it reads the entire paragraph. But based on what u have explained, that is normal function. So as I understand it. because you have 40 lines of data (with no Delmeter separatio...
Read Line
I'm using macro scheduler Pro 7.4 This is a newbie question so I'm posting it here. when you use the ReadLn function how many bytes does it grab? The reason I ask is because if I do a read line for example: Let>k=1 ReadLn>%SCRIPT_DIR%\test.txt,k,line MessageModal>%line% I'm going to get the entire p...
- Sat Jan 22, 2011 1:39 am
- Forum: Technical / Scripting
- Topic: Input Command Caption Title
- Replies: 4
- Views: 5727
Input Command Caption Title
Hi Guys : I'm using Msched 7.4. Is there a way to change the title of the Input window when your selecting files. I have a Browse button connected to a SRT with an Input command in it. But when I click on browse the title of the Window says " Macro Scheduler Input" any way to change that title in 7....
- Sun Sep 19, 2010 7:53 pm
- Forum: Technical / Scripting
- Topic: Read File problem
- Replies: 1
- Views: 2994
Read File problem
Guys this is embarrassing is has to be something simple I'm not seeing Im running Msched 7.4009 on w2k here is the code ReadFile>%SCRIPT_DIR%\test.txt,file MessageModal>file the text file has only one line and it reads ready for good test but when I run the code I get the following displayed in the ...
- Sun Aug 29, 2010 1:14 am
- Forum: Technical / Scripting
- Topic: ReadIniFile Challenge
- Replies: 8
- Views: 7141
- Sun Aug 29, 2010 12:07 am
- Forum: Technical / Scripting
- Topic: ReadIniFile Challenge
- Replies: 8
- Views: 7141
ReadIniFile Challenge
Hey guys I have read the History but don't see any problems with MSched 7.4 concerning ReadIniFile. But I can't seem to get it to work. I am running w2k. Here is the entire script - its almost exactly like the example ReadIniFile>setup.ini,STARTUP,AppName,indata Let>msg=The Username is: ConCat>msg,i...
- Sun May 24, 2009 1:54 am
- Forum: Technical / Scripting
- Topic: exe viewer
- Replies: 1
- Views: 2680
exe viewer
Guys I had just finished writing some updated code and compiling when something happened to the PC . long story short I have a compiled exe file - but lost the code - is there any way to look at the exe file to see that code or is the code lost...
- Fri Feb 27, 2009 12:04 pm
- Forum: Technical / Scripting
- Topic: GetFileList using variables
- Replies: 1
- Views: 3172
GetFileList using variables
Hey guys I'm running macro scheduler 7.4.009 I'm reading a file (BackUpTemplate.ini) that contains folder path information. Can GFL be used with a variable like the code snippet below: Let>v=1 Label>start ReadLn>BackUpTemplate.ini,v,BkDrvs 'MessageModal>BkDrvs If>BkDrvs=##EOF##,finish 'Message>line ...
- Wed Apr 02, 2008 11:59 am
- Forum: Technical / Scripting
- Topic: Script Control
- Replies: 2
- Views: 4023
- Wed Apr 02, 2008 11:28 am
- Forum: Technical / Scripting
- Topic: Script Control
- Replies: 2
- Views: 4023
Script Control
Hello I am running Msched 7.4.09 I have developed a script to look at each drive and list the folders and subfolders (I only need folders). If I run the VBScript using wcript.exe as a .vbs file it allows the logic to process all the drives. But when I run it in Macro Scheduler I get : Script Control...
- Fri Mar 14, 2008 4:38 am
- Forum: Technical / Scripting
- Topic: SetFocus on a hidden window
- Replies: 2
- Views: 4127
- Thu Mar 13, 2008 11:47 pm
- Forum: Technical / Scripting
- Topic: SetFocus on a hidden window
- Replies: 2
- Views: 4127
SetFocus on a hidden window
Hi guys I'm trying to use SetFocus on a window but the window does not show up in task manager. It's a file - browser window that pops up when you select a folder. The Top Title says "Please select folder" - but there is no reference to it in Task Manger (Applications or Processes) window. I tried u...
- Thu Mar 13, 2008 9:19 pm
- Forum: Technical / Scripting
- Topic: ##EOF## in 7.409 - Resolved
- Replies: 3
- Views: 4547
Marcus : It took me a minute but your right: when line 1 is read its not at the end: it still has to loop back to cstart to find the ##EOF## line and because it passes through the increment x logic when it gets to the top again the count will always be 2 DuuuuuuuuuuuuHHH!! I guess I will keep the x-...