1.調(diào)用Windows的計算器
WinExec("CALC.EXE",0);
2.調(diào)用Windows記事本
ShellExecute(Application->Handle,"open","notepad.exe",NULL,NULL,SW_SHOWNORMAL);
3.BarTender條形碼設(shè)計軟件
4.調(diào)用*.chm幫助文件:
String sHelpFilePath = GetCurrentDir() + "\\help\\help.CHM";? //文件路徑
??? if(FileExists(sHelpFilePath))
??? {
????? ShellExecute(
????? Handle,
????? "open",
????? sHelpFilePath.c_str(),
????? NULL,
????? NULL,
????? SW_SHOWNORMAL
????? );
??? }