Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
I'm defeated. I may have to sell shoes!
Message
From
29/01/2013 09:43:00
 
 
To
28/01/2013 16:47:46
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Miscellaneous
Thread ID:
01564407
Message ID:
01564499
Views:
77
>Hello Everyone,
>
>Can anyone get this to work? If I can get past this code I'll be able to finish the rest (I think) myself.
>
>Thanks in advance...
>
>
>CLEAR
>
>PUBLIC oComUtil, oFoxEvent, oMSMQEvent 
>
>* Setup up event handler to receive the messages
>oMSMQEvent = create("msmq.msmqevent")
>oComUtil = create("vfpcom.comutil")
>oFoxEvents = create("FoxEvent")
>
>? EVENTHANDLER(oMSMQEvent,oFoxEvent)
>
>
>DEFINE CLASS FoxEvent AS custom OLEPUBLIC
>	IMPLEMENTS FoxEvents IN "MSMQ.Msmqevent"
>
>	Procedure FoxEvents_Arrived(oQueue,Cursor)
>		WAIT WINDOW "Message Arrived" TIMEOUT 1
>	ENDPROC
>
>	Procedure FoxEvents_ArrivedError(Queue,ErrorCode,Cursor)
>		WAIT WINDOW "Message Arrived Error" TIMEOUT 1
>	ENDPROC
>
>ENDDEFINE
>
Is that all the events in FoxEvents? A class that implements an interface has to have methods for every event in the interface, even if they do nothing.

Tamar
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform