Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Object class is invalid for this container
Message
De
01/11/2007 15:05:38
Jay Johengen
Altamahaw-Ossipee, Caroline du Nord, États-Unis
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 8 SP1
Divers
Thread ID:
01265774
Message ID:
01265814
Vues:
14
Where am I putting those three lines? In my calling program?

>Try:
>
>oWinSock      = CREATEOBJECT([MSWinsock.Winsock.1])
>oEventHandler = CREATEOBJECT([EMPS_Class])
>EVENTHANDLER(oWinSock, oEventHandler)
>
>
>
>
>
>
>DEFINE CLASS EMPS_Class AS Session &&OLEPUBLIC
>
>    * Using the MSWinsck control for basic port communications
>    IMPLEMENTS DMSWinsockControlEvents IN "MSWinsock.Winsock"
>
>    PROCEDURE DMSWinsockControlEvents_Error(Number AS INTEGER, Description AS STRING, Scode AS Number, Source AS STRING, HelpFile AS STRING, HelpContext AS Number, CancelDisplay AS LOGICAL) AS VOID;
>                HELPSTRING "Error occurred"
>        * add user code here
>    ENDPROC
>
>    PROCEDURE DMSWinsockControlEvents_DataArrival(bytesTotal AS Number) AS VOID;
>                HELPSTRING "Occurs when data has been received from the remote computer"
>        * add user code here
>    ENDPROC
>
>    PROCEDURE DMSWinsockControlEvents_Connect() AS VOID;
>                HELPSTRING "Occurs connect operation is completed"
>        * add user code here
>    ENDPROC
>
>    PROCEDURE DMSWinsockControlEvents_ConnectionRequest(requestID AS Number) AS VOID;
>                HELPSTRING "Occurs when a remote client is attempting to connect"
>        * add user code here
>    ENDPROC
>
>    PROCEDURE DMSWinsockControlEvents_Close() AS VOID;
>                HELPSTRING "Occurs when the connection has been closed"
>        * add user code here
>    ENDPROC
>
>    PROCEDURE DMSWinsockControlEvents_SendProgress(bytesSent AS Number, bytesRemaining AS Number) AS VOID;
>                HELPSTRING "Occurs during process of sending data"
>        * add user code here
>    ENDPROC
>
>    PROCEDURE DMSWinsockControlEvents_SendComplete() AS VOID;
>                HELPSTRING "Occurs after a send operation has completed"
>        * add user code here
>    ENDPROC
>
>
>ENDDEFINE
>
>(not tested)
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform