请问Application.Terminate;是什么意思?winexec的具体作用。(10分)

  • 主题发起人 主题发起人 dreamblue
  • 开始时间 开始时间
Application.Terminate将程序中断
winexec运行外部程序
 
Application.Terminate:关闭当前程序。
winexec:调用外部程序。
 
多人接受答案了。
 
在程序中任何地方调用Application.Terminate
都会使程序结束。

winexec
是打开其它程序用的。
如WinExec('C:/WINDOWS/NOTEPAD.EXE C:/My Documents/my.txt',SW_SHOWNORMAL);

不过还不与用ShellExecute
shellexecute(handle,nil,pchar('C:/My Documents/my.txt'),nil,nil,sw_shownormal);

ShellExecute(

HWND hwnd, // handle to parent window
LPCTSTR lpOperation, // pointer to string that specifies operation to perform
LPCTSTR lpFile, // pointer to filename or folder name string
LPCTSTR lpParameters, // pointer to string that specifies executable-file parameters
LPCTSTR lpDirectory, // pointer to string that specifies default directory
INT nShowCmd // whether file is shown when opened
);
 
怎么慢了这么多·!!`
 
后退
顶部