Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by wannabe1234

  1. wannabe1234

    Read Serial Port Data

    Hi, is there any way that the data you received you can save it in a text format? if you declare as data string. Thanks
  2. wannabe1234

    save data to file direct using mscomm1 using port 1

    this program opens the serial port, checks the input buffer every 5 seconds and if the buffer contains 256 bytes, reads in the string, breaking in into 256 separate bytes and string these as 'test.cli' in c directory. the only components needed are mscomm and timer which can be set the interval...
  3. wannabe1234

    save data to file direct using mscomm1 using port 1

    Hi guys, i wrote a program here to collect data and save the data to file where i can open the file later. here the program i've wrote. Private Sub Form_Load() MSComm1.PortOpen = True End Sub Private Sub Timer1_Timer() Dim InputString If MSComm1.InBufferCount = 256 Then Close #1 Open...

Part and Inventory Search

Back
Top