Link to home
Start Free TrialLog in
Avatar of shahjagat
shahjagatFlag for United States of America

asked on

How to write to a COM port using VB.Net

Help!!!!
 
  I am trying to write to a COM Port using VB.Net and to establlish a TCP/IP Connection..

Appreciate the Help!!

Thanks
Avatar of soujanya_g
soujanya_g

Avatar of Michele Segato
I see that you mix COM port and TCP/IP communication: they are two completely different things.

Here you can find a good tutorial about COM serial ports
http://www.dreamincode.net/forums/topic/37361-serial-port-communication-in-vbnet/
and a short example here
http://www.codeproject.com/KB/vb/Comport_made_simple.aspx

In your question you ask even for TCP/IP comunication. Port in TCP are not the same of the COM port, so you need different tutorial:
http://vb.net-informations.com/communications/vb.net_socket_programming.htm
Avatar of shahjagat

ASKER

Thank you Soujanya..:)

Thanks Kemi67
 I think i have to establish a TCP/IP Connection first  and write in to that Port. Could you please provide me the example,How to write in to a TCP port..

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Michele Segato
Michele Segato
Flag of Italy image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for you Help..:)
Hello Kemi,

 Is it possible to Write to a COM Port using a TCP/IP Connection.??


Thanks
Hi shahjagat,
yours is a strange question, Serial ports and Tcp/IP ports are not the same thing, they are two different protocols.
Why are you asking that? Are you trying to build a tcp/ip to serial converter?
Which devices do you need to connect?
I suspect that you are misunderstanding something. Tcp/ip communication required a network card. It seems that you want to use a serial port as network card, and this would be like you are writing a device driver.
You needs strong tcp/ip basics to do that.
Are you trying to build a device like this:
 http://www.barcode-manufacturer.com/serial-ethernet
Or like this
http://www.sharewareconnection.com/tcp-com.htm
Or try to look here
http://tcp-ip.qarchive.org/

Can you better explain what are are you really trying to do? Perhaps there is another way to do that.
Thanks