Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Re: Accessing Word/Excel 365 from VFP
Message
De
05/05/2016 07:44:55
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Produits tierce partie
Divers
Thread ID:
01635831
Message ID:
01635860
Vues:
80
#DEFINE SW_SHOWNORMAL 1
PARAMETERS p_file

lcUrl = p_file &&"MYFILE.xls" OR .doc
* WSH
oShell = Createobject("wscript.shell")
oShell.Run(lcUrl)
*oShell.Run(lcUrl, SW_SHOWNORMAL)
* ShellExecute Win API
DECLARE Long ShellExecute IN "Shell32.dll" ;
Long hwnd, String lpVerb, String lpFile, ;
String lpParameters, String lpDirectory, Long nShowCmd
ShellExecute(0, "Open", lcUrl, "", "", SW_SHOWNORMAL)
* Shell object
oShell = CREATEOBJECT("Shell.Application")
oShell.Open(lcUrl)


* Hides the window and activates another window.
#DEFINE SW_HIDE 0

* 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.
#DEFINE SW_SHOWNORMAL 1

* Activates the window and displays it as a minimized window.
#DEFINE SW_SHOWMINIMIZED 2

* Activates the window and displays it as a maximized window.
#DEFINE SW_SHOWMAXIMIZED 3
* Maximizes the specified window.
#DEFINE SW_MAXIMIZE 3

* Displays a window in its most recent size and position. The active window remains active.
#DEFINE SW_SHOWNOACTIVATE 4

* Activates the window and displays it in its current size and position.
#DEFINE SW_SHOW 5

* Minimizes the specified window and activates the next top-level window in the z-order.
#DEFINE SW_MINIMIZE 6

* Displays the window as a minimized window. The active window remains active.
#DEFINE SW_SHOWMINNOACTIVE 7

* Displays the window in its current state. The active window remains active.
#DEFINE SW_SHOWNA 8

* 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.
#DEFINE SW_RESTORE 9

* 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.
#DEFINE SW_SHOWDEFAULT 10
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform