×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Reading Data from Serial Port

Reading Data from Serial Port

Reading Data from Serial Port

(OP)
Hey,

I'm pretty new at VB and programming in general, but I don't think my question is too hard of one.

I want to be able to receive data from a serial port and write that data to a text file until I either tell it to stop or the connection is gone.  Now I've never programmed anything to read data from an outside source so this is new ground for me.

So, any help as far as structure and code goes would be greatly appreciated.  

Thanks!


Replies continue below

Recommended for you

RE: Reading Data from Serial Port

(OP)
Here is the code I have so far....unfortunately I don't have anything to test this code with (nothing in serial port).  I've put the MSComm object into the form...so I guess my question now is...to the best of your knowledge, will this work for the above described situation?




Private Sub cmdClose_Click()
    
    MSComm1.PortOpen = False
    lblStatus.Caption = "Closed"
    lblStatus.ForeColor = &HFF&
    
End Sub

Private Sub cmdOpen_Click()
    MSComm1.CommPort = 1
    MSComm1.Settings = "9600,N,8,1"
    MSComm1.PortOpen = True
    lblStatus.Caption = "Open"
    lblStatus.ForeColor = &HC000&
    
End Sub


Private Sub cmdReceive_Click()
Dim Data As Variant
    Do
        DoEvents
    Loop Until MSComm1.InBufferCount > 0
    Data = MSComm1.Input
    Open "C:\Data.txt" For Append As #1
    Write #1, Data
    Close #1
End Sub

RE: Reading Data from Serial Port

(OP)
Ooops  the Receive button code is wrong   it should read the following  (I think?):

Private Sub cmdReceive_Click()
Dim Data As Variant

    Do
    
    Data = MSComm1.Input
    Open "C:\Data.txt" For Append As #1
    Write #1, Data
    Close #1
    
    Loop Until MSComm1.InBufferCount = 0  'As long as there is data in the buffer OR  Returns 0 if user clicks "Close Port"
    
End Sub

RE: Reading Data from Serial Port

It seems to be correct.

Can you test it with a null modem and a laptop?

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members! Already a Member? Login



News


Close Box

Join Eng-Tips® Today!

Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.

Here's Why Members Love Eng-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close