Sending & Receiving Messages to COM2

myanilkumarmyanilkumar Member Posts: 108
Hi All,

Please advise how to to send & Receive message to COM2 through Navision. Please provide me if you have any sample code.

Regards,
Anil

Comments

  • ta5ta5 Member Posts: 1,164
    Hi Anil
    I have used ActiveComport tool, works very good, very powerful tool:
    Sample Code:
    ComPortDriver.BaudRate(9600);
    ComPortDriver.Parity(1);
    ComPortDriver.StopBits(1);
    ComPortDriver.Open;
    ComPortDriver.WriteString(Bufferstring);
    ComPortDriver.Close();
    CLEAR(ComPortDriver);
    

    Prices and licensing see here:
    http://www.activexperts.com/activcomport/

    Hope this helps
    Thomas
  • myanilkumarmyanilkumar Member Posts: 108
    Hi,

    Thanks for the reply. I need to check is it Possible with out using Third party tools and by using standard windows DLL or COM.

    Please advise.

    Regards,
    Anil
Sign In or Register to comment.