Code: Alles auswählen
MyApp.s = Space(1000)
GetModuleFileName_(GetModuleHandle_(0), @MyAPP, 1000)
file$=GetPathPart(MyApp)+GetFilePart(MyApp)
if OpenFile(0,file$)
While Not Eof(0)
line.s=Readstring(0)
MessageRequester(line,line)
Wend
CloseFile(0)
endif