Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Browse window on desktop
Message
De
24/12/2015 15:54:51
 
 
À
24/12/2015 11:03:40
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows 7
Network:
Windows 2008 Server
Database:
Visual FoxPro
Application:
Desktop
Divers
Thread ID:
01629278
Message ID:
01629284
Vues:
59
what kind of browse window you need ?
1-a vfp window as define window.....see foxhelp for complet syntax.add "in desktop" to place it on the desktop
if you add the clause "SYSTEM" Specifies the user-defined window to look like a system window.
When you include certain other clauses (GROW, ZOOM, and so on), the appropriate window controls are
placed in the window's border.
can browe any table here....
2-a modal form (windowtype=1) or with clause : form.show(1) and desktop=.t.
3-a form with showWindow=2 as a top level form (autocenter,alwaysOntop,...)
4-local apie
apie=newObject("internetexplorer.application")
with apie
.menubar=0
.toolbar=0
.statusbar=0
.resizable=1
navigate("https://www.levelextreme.com") &&even local file
.width=800
.height=600
.left=(sysmetric(1)-.width)/2
.top=(sysmetric(2)-.height)/2
.silent=.t.
declare integer BringWindowToTop in user32 integer
bringWindowTotop(.hwnd)
.visible=.t.
endwith
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform