本来打算用电子书做帮助文档的,但是时间仓促,找到的电子书软件又不好,有一个没注册的软件只能做两页,唉……叹奈何,有一个要编译成html格式的,word文档编译以后是无法显示。唉,反正电子书没做成。我打算直接用 word文档做成帮助文档。然后在dilphi中选择帮助按钮以后自动出来word文档做成帮助文档。请问在delphi要怎么调用word文档呢?最好就是让用户不能修改被调用的word文档的内容。

解决方案 »

  1.   


    ShellExecute(self.Handle,'open',pchar('d:\my.doc'),nil,nil,sw_showmormal);
      

  2.   

    HINSTANCE 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
       );

     nShowCmdIf lpFile specifies an executable file, nShowCmd specifies how the application is to be shown when it is opened.  This parameter can be one of the following values: Value Meaning
    SW_HIDE Hides the window and activates another window.
    SW_MAXIMIZE Maximizes the specified window.
    SW_MINIMIZE Minimizes the specified window and activates the next top-level window in the Z order.
    SW_RESTORE Activates and displays the window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when restoring a minimized window.
    SW_SHOW Activates the window and displays it in its current size and position. 
    SW_SHOWDEFAULT Sets the show state based on the SW_ flag specified in the STARTUPINFO structure passed to the CreateProcess function by the program that started the application. An application should call ShowWindow with this flag to set the initial show state of its main window.
    SW_SHOWMAXIMIZED Activates the window and displays it as a maximized window.
    SW_SHOWMINIMIZED Activates the window and displays it as a minimized window.
    SW_SHOWMINNOACTIVE Displays the window as a minimized window. The active window remains active.
    SW_SHOWNA Displays the window in its current state. The active window remains active.
    SW_SHOWNOACTIVATE Displays a window in its most recent size and position. The active window remains active.
    SW_SHOWNORMAL Activates and displays a window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when displaying the window for the first time.
     If lpFile specifies a document file, nShowCmd should be zero. ———————————————————上面是windows sdk 关于ShellExecute的一部分描述——————————————————————————貌似nShowCmd 中没有sw_showmormal这个值哦,只有SW_SHOWNORMAL。o(∩_∩)o...,1楼的是不是打错字了哦。
      

  3.   

    可以用Word按照一定的格式编辑保存为.rtf格式,然后用Delphi自带工具生成像Delphi帮助一样的帮助文件。 
      

  4.   

    呵呵,就是把word当成一个程序一样调用的意思吧。
    不过用word做帮助文档确实有点不妥,因为可编辑的缘故。如果不是时间紧迫,逼着我交作业的话就做成chm或exe的就好了。
    另外用这个函数的话还要在uses里加入shellapipchar(ExtractFilePath(Application.ExeName)+'\my.doc')另外我在文件路径那边改成了动态路径。(*^__^*) 嘻嘻……可以交作业了。