ATOUTFOX COMMUNAUTÉ FRANCOPHONE DES PROFESSIONNELS FOXPRO Visual FoxPro : le développement durable |
|||||||||||||
|
|||||||||||||
Echange d'informations entre deux applications VFP |
|||||||||||||
|
|||||||||||||
www.atoutfox.org - Site de la Communauté Francophone des Professionnels FoxPro - v3.4.0 - © 2004-2024. |
Une idée en passant (plus besoin de cliquer sur LIRE) :
(VFP9 uniquement)
PROCEDURE FORM.INIT
DECLARE LONG SendMessage IN "user32" LONG hWnd, LONG wMsg, LONG wParam, LONG lParam
#define WM_USER 0x0400
BindEvent(this.HWnd,WM_USER,this,"message")
PROCEDURE Command2.click && bouton Ecrire
...
#define WM_USER 0x0400
sendmessage(targethwnd, WM_USER,0,0)
PROCEDURE FORM.MESSAGE && nouvelle méthode
LPARAMETERS hWnd as Integer, Msg as Integer, wParam as Integer, lParam as Integer
thisform.command1.Click && bouton lire