I want to get a result just the same as if i opened a .msg-file in notepad and saving it to a txt-file
Can i use CreateProcess(with notepad.exe) to open a .msg file and save it again.
This...
CreateOK := CreateProcess(nil, PChar('Notepad.exe '+FileName), nil, nil,False,
CREATE_NEW_PROCESS_GROUP+N
ORMAL_PRIO
RITY_CLASS
,
nil, nil, StartInfo, ProcInfo);
Works file to open a file with notepad.... but can i save it??
Start Free Trial