Thread: Invoking MSWord

  1. #16
    Registered User
    Join Date
    Sep 2001
    Posts
    19
    I appreciate the help everyone, but I've been unable to get it going using the system function. I think I may go look up a spawn function or shellExecute and see what they do and try to get it going that way.

  2. #17
    Anti-Terrorist
    Join Date
    Aug 2001
    Location
    mming, Game DevelopmentCSR >&<>&2Minimization of boolean functions, PROM,PLA design >&0>&WA, USA guitar, dogsCommercial Aviation >&>>&USAProgramming
    Posts
    742
    Works fine on my computer. You don't need spawn or any bull**** like that. You did something wrong. Look it:

    Step 1, put the file helpme!.doc on the C: drive. Not in a folder but on the C: directory. What drive is MSWORD on? Can be anywhere on the C drive.

    Step 2: Cut and paste my code into your compiler and compile and run it.

    Done. It works on Win2k professional. I tested it, it works just fine. Explain to me why it works on my computer and not yours?
    Last edited by Witch_King; 09-07-2001 at 09:42 PM.
    I compile code with:
    Visual Studio.NET beta2

  3. #18
    Registered User
    Join Date
    Sep 2001
    Posts
    19
    WitchKing,
    I cut and pasted your code. I changed to my Metrowerks compiler and I'm running Win98. The document is on the C: drive as well as MSWord. Still hasn't run for me. I have to note to you though that I don't have that first header file that you have in your script. I thought the system function was part of the stdlib. Is that header (i.e. stdafx) critical? Thanks again.

  4. #19
    Skunkmeister Stoned_Coder's Avatar
    Join Date
    Aug 2001
    Posts
    2,572
    from msdn

    ShellExecute


    HINSTANCE ShellExecute(
    HWND hwnd,
    LPCTSTR lpOperation,
    LPCTSTR lpFile,
    LPCTSTR lpParameters,
    LPCTSTR lpDirectory,
    INT nShowCmd
    );

    Opens or prints a specified file.

    Returns a value greater than 32 if successful, or an error value that is less than or equal to 32 otherwise. The following table lists the error values. The return value is cast as an HINSTANCE for backward compatibility with 16-bit Windows applications. 0 The operating system is out of memory or resources.
    ERROR_FILE_NOT_FOUND The specified file was not found.
    ERROR_PATH_NOT_FOUND The specified path was not found.
    ERROR_BAD_FORMAT The .exe file is invalid (non-Win32 .exe or error in .exe image).
    SE_ERR_ACCESSDENIED The operating system denied access to the specified file.
    SE_ERR_ASSOCINCOMPLETE The file name association is incomplete or invalid.
    SE_ERR_DDEBUSY The DDE transaction could not be completed because other DDE transactions were being processed.
    SE_ERR_DDEFAIL The DDE transaction failed.
    SE_ERR_DDETIMEOUT The DDE transaction could not be completed because the request timed out.
    SE_ERR_DLLNOTFOUND The specified dynamic-link library was not found.
    SE_ERR_FNF The specified file was not found.
    SE_ERR_NOASSOC There is no application associated with the given file name extension.
    SE_ERR_OOM There was not enough memory to complete the operation.
    SE_ERR_PNF The specified path was not found.
    SE_ERR_SHARE A sharing violation occurred.

    hwnd
    Window handle to a parent window. This window receives any message boxes that an application produces. For example, an application may report an error by producing a message box.
    lpOperation
    Address of a null-terminated string that specifies the operation to perform. The following operation strings are valid: "open" The function opens the file specified by the lpFile parameter. The file can be an executable file or a document file. It can also be a folder.
    "print" The function prints the file specified by lpFile. The file should be a document file. If the file is an executable file, the function opens the file, as if "open" had been specified.
    "explore" The function explores the folder specified by lpFile.

    This parameter can be NULL. In that case, the function opens the file specified by lpFile.

    lpFile
    Address of a null-terminated string that specifies the file to open or print or the folder to open or explore. The function can open an executable file or a document file. The function can print a document file.
    lpParameters
    If the lpFile parameter specifies an executable file, lpParameters is an address to a null-terminated string that specifies the parameters to be passed to the application.
    If lpFile specifies a document file, lpParameters should be NULL.
    lpDirectory
    Address of a null-terminated string that specifies the default directory.
    nShowCmd
    If 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: 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 theSTARTUPINFO structure passed to theCreateProcess function by the program that started the application. An application should callShowWindow 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.

    You can use this function to open or explore a shell folder. To open a folder, use either of the following calls:

    ShellExecute(handle, NULL, path_to_folder, NULL, NULL, SW_SHOWNORMAL);

    or

    ShellExecute(handle, "open", path_to_folder, NULL, NULL, SW_SHOWNORMAL);

    To explore a folder, use the following call:

    ShellExecute(handle, "explore", path_to_folder, NULL, NULL, SW_SHOWNORMAL);

    If lpOperation is NULL, the function opens the file specified by lpFile. If lpOperation is "open" or "explore", the function will attempt to open or explore the folder.

    To obtain information about the application that is launched as a result of calling ShellExecute, use ShellExecuteEx.
    Free the weed!! Class B to class C is not good enough!!
    And the FAQ is here :- http://faq.cprogramming.com/cgi-bin/smartfaq.cgi

  5. #20
    Registered User
    Join Date
    Sep 2001
    Posts
    19
    I tried this line:

    ShellExecute(NULL, "open", "c:\\helpme!.doc", NULL, NULL, SW_SHOWNORMAL);

    and I received a linker error saying:
    Link Error : Undefined symbol: _WinMain@16 in
    winmaincrt.c

    But I guess I'm a bit closer? Should the handle be NULL in this case?

  6. #21
    Anti-Terrorist
    Join Date
    Aug 2001
    Location
    mming, Game DevelopmentCSR >&<>&2Minimization of boolean functions, PROM,PLA design >&0>&WA, USA guitar, dogsCommercial Aviation >&>>&USAProgramming
    Posts
    742
    Unfortunately since you do not have a professional operating system you might have to type the full pathname of the executable(MSWord). Win2k professional creates a link in the same directory as the document to WINWORD (link to MS Word).

    It will work if you type in the full path name.
    Code:
    #include "stdafx.h"
    #include<stdio.h>
    #include<stdlib.h>
    
    int main()
    {
    	system("c:\\helpme!.doc >> C:\\FULL PATH\\WINWORD");
    	return 0;
    }
    Now the tricky part is typing in the full path. If a directory contains a space you have to use quotes but the quotes have to be preceded by a backslash. This could take a million years!

    example:
    Code:
    #include "stdafx.h"
    #include<stdio.h>
    #include<stdlib.h>
    
    int main()
    {
    	system("c:\\helpme!.doc >> C:\\\"My Folder\"\\WINWORD");
    	return 0;
    }
    Last edited by Witch_King; 09-08-2001 at 02:29 PM.
    I compile code with:
    Visual Studio.NET beta2

  7. #22
    Banned master5001's Avatar
    Join Date
    Aug 2001
    Location
    Visalia, CA, USA
    Posts
    3,685
    Double check to see if that c:\winword is where winword is located. Maybe you are inadvertantly telling the computer to look in the wrong place.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Invoking constructor from another constructor
    By @nthony in forum C++ Programming
    Replies: 1
    Last Post: 11-12-2008, 12:12 AM
  2. invoking Base::virtualMethod() instead of Derived
    By noobcpp in forum C++ Programming
    Replies: 11
    Last Post: 11-08-2008, 01:16 PM
  3. invoking C# function from C++
    By George2 in forum C++ Programming
    Replies: 2
    Last Post: 07-28-2007, 08:09 AM
  4. segmentation fault when invoking new
    By George2 in forum C++ Programming
    Replies: 13
    Last Post: 05-15-2006, 05:51 AM