Is it possible to (by a macro) open all files listed in an open UltraEdit window? How do you loop through all the files listed?
Any help or hints are highly appreciated.
Any help or hints are highly appreciated.
Code: Select all
Clipboard 9
Loop 0
IfEof
ExitLoop
EndIf
SelectLine
Copy
Open "^c"
PreviousWindow
Key Down
EndLoop
Clipboard 0
Code: Select all
SelectAll
Clipboard 9
Copy
Loop 0
NewFile
Paste
Top
IfEof
ExitLoop
EndIf
SelectLine
Clipboard 8
Cut
SelectAll
Clipboard 9
Copy
CloseFile NoSave
Clipboard 8
Open "^c"
Clipboard 9
EndLoop
Clipboard 0