Serial Device Interfacing from VBA

  • Thread starter Thread starter Jeremy Darrington
  • Start date Start date
J

Jeremy Darrington

Can someone please direct me to a possible location for
integrating serial port signals or devices into vba and
sending a 'ping' of a packet to a serial device to "Open a
Cash register drawer..." for instance, but I am trying to
open a solenoid for 1 second at 11:59 PM (1 second before
midnight) to synch a time clock with the systemtime.

Any direction and help will be appreciated.

Thanks to any who respond.

Jeremy
 
Hi Jeremy


This code works fine for me:

Open "Com1,9600,n,8,1" for output as #1
Print #1,"This is a test"
Close #1


Best Regards

Maurice St-Cyr
Micro Systems Consultants, Inc.
 
Back
Top