Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using mscomm in _screen.
Message
From
17/03/2005 17:19:52
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Using mscomm in _screen.
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows 2000 SP4
Network:
Windows 2000 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
00997071
Message ID:
00997071
Views:
86
I'm trying to use MSCOMMLib.MSComm to read serial data from a printer. I have no problem using the control on a form. I would like to create the object before any forms are created so that I can read the status of the printer at all times. (I don't want to keep a form in the background just to contain this object.)

At first I thought it would be as easy as this:

Ocomm=createobject('mycomm')
define class Mycomm as MSCOMMLib.MSComm
proc oncomm
**** code here
endproc
enddefine

I get an error message class definition mycomm not found!

I then found some other code that talked about binding events. So I tried this:

PUBLIC lomodemcomm as MSCOMMLIB.MSComm
loModemComm = Createobject("MSCOMMLib.MSComm")
loModemComm.Settings='9600,n,8,1'
lomodemComm.Handshaking=1
oHandler=Newobject("myhandler")
loVFPCOM = Newobject("VFPCOM.ComUtil")
loVFPCOM.BindEvents(loModemComm, oHandler)
lomodemComm.portOpen=.t.

Define Class myhandler As custom
Procedure oncomm
***code here
endproc
Enddefine

When I run this code everything works until the event fires, then it crashes foxpro and want to send the dubug code to microsoft.

Does anyone any infomation that could help me out...


thanks
Tim Boccaleri
Next
Reply
Map
View

Click here to load this message in the networking platform