9. Juni 2009 08:33
9. Juni 2009 08:55
[ReturnCode]:= SHELL(Name [, Param, ...])
9. Juni 2009 09:29
OnRun=BEGIN
// The following is not trusted and will give a warning.
ExecName := 'C:\windows\notepad.exe';
param := 'C:\MyFile.txt';
ret := SHELL(ExecName, param);
// The following is trusted and will not give a warning.
param := 'C:\MyFile.txt';
ret := SHELL(TEXT000, param);
// The following is not possible - will only give an error
// message during runtime. This is also if its a TextConst:
ExecName := 'C:\windows\notepad.exe C:\MyFile.txt';
ret := SHELL(ExecName);
END;
9. Juni 2009 09:47
IF ISCLEAR(WSHShell) THEN
CREATE(WSHShell,TRUE,TRUE);
WSHShell.RUN('C:\windows\notepad.exe C:\MyFile.txt');
9. Juni 2009 10:02
9. Juni 2009 10:30
dr hat geschrieben:edit: wenn man einfach nur dateien öffnen will, könnte man auch HYPERLINK benutzen, dies kann eine ganze liste an protokollen/dateitypen.
bmp, doc, docx, dot, dotx, htm, html, mhtml, mht, fig, gif, ini, jpg, mdb, mov, mpeg, mpg, pub, pdf, ppt, pptx, pps, rtf, sys, txt, url, wri, wpd, wps, xls, xlsx, xsn, xml, zip, fdf, aspx, chm, vsd, mpp, wmv, wma, msg, tif, png, dwg, dwf, awf, drw, csv, dxf, cdr
9. Juni 2009 11:03
8. September 2009 10:15
8. September 2009 11:11
m_schneider hat geschrieben:Kann ich mithilfe dieses Objektes auch Ordner erstellen?
8. September 2009 11:47
McClane hat geschrieben:m_schneider hat geschrieben:Kann ich mithilfe dieses Objektes auch Ordner erstellen?
Klar: WSHShell.run('c:\windows\system32\cmd.exe /C mkdir Ordnerpfad');
6. Juni 2010 13:31
McClane hat geschrieben:m_schneider hat geschrieben:Kann ich mithilfe dieses Objektes auch Ordner erstellen?
Klar: WSHShell.run('c:\windows\system32\cmd.exe /C mkdir Ordnerpfad');