我想实现如下功能:点击菜单,调用Word ,Excel ,Windows自带的计算器,AutoCad,怎么实现?
谢谢指教!!!

解决方案 »

  1.   

    execute windows API函数,看一下Delphi帮助
      

  2.   

    引用shellapi单元(既然楼上的说了,那我也说一句吧,一人一点,看什么时候说完)
      

  3.   

    真是好简单,他们已说得差不多了,参考一下吧:
    uses shellapiShellExecute(handle,'open','calc.exe','','',SW_SHOWNORMAL);       //open the calculator
    ShellExecute(handle,'open','notepad.exe',nil,nil,SW_ShowNormal);  //open the notepad
    .......
      

  4.   

    在帮助里查查 ShellExecute  (专门执行应用程序的一个函数)