Serial Device Interfacing from VBA

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
 
S

StCyrM

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top