Najideálnejšie je použitie Port.DLL. Skúste si ho zadať v google nájdete popis ako sa dá použiť. Pomocou tohoto dll m§žete s portom robiť všetko a to aj ovládať jednotlivé výstupné piny. Tu je príklad jednoduchej deklarácie. eclare Function OPENCOM Lib "Port" (ByVal A$) As Integer Declare Sub CLOSECOM Lib "Port" () Declare Sub SENDBYTE Lib "Port" (ByVal b%) Declare Function READBYTE Lib "Port" () As Integer Declare Sub DTR Lib "Port" (ByVal b%) Declare Sub RTS Lib "Port" (ByVal b%) Declare Sub TXD Lib "Port" (ByVal b%) Declare Function CTS Lib "Port" () As Integer Declare Function DSR Lib "Port" () As Integer Declare Function RI Lib "Port" () As Integer Declare Function DCD Lib "Port" () As Integer Upozorňujem musíte mať v PC knižnicu Port.dll.
|