Link to home
Start Free TrialLog in
Avatar of sam341
sam341

asked on

Port Data

Hi, i am a newbie and i am hoping you guys can help.

I am running VB Prof 6.0 on Windows NT. I am using NTport to access the parallel port.

I can get the data in fine, convert it to decimal and have it appear as a single number in a text box. What i want to happen is have the data be saved in a string (?) format and output to a file as well as saved in a global variable.

The data comming in is a phone number from a dtmf decoder. So how can i save the 7 digit number together, save it in a global variable (for immidiate use) and output it to a text file.

Thanks for the help.
Avatar of marconovaro
marconovaro


If you have got the value, try this:

dim myValue as long

myValue = val(text1.text)

where Text1 is the textbox where you save the received data.
To save it to a file, just do it like this:

dim fn as long

fn = FreeFile
Open "C:\myFile.txt" For Output As #fn
Print #fn, myValue
close #fn

Hope this helps
M
Avatar of sam341

ASKER

Will this basically accumulate the incoming data and put it in the sting??

The data comes in 1 number at a time, and i need it saved after the seven bits enter.

ASKER CERTIFIED SOLUTION
Avatar of marconovaro
marconovaro

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
sam341:
This old question needs to be finalized -- accept an answer, split points, or get a refund.  For information on your options, please click here-> http:/help/closing.jsp#1 
Experts: Post your closing recommendations!  Who deserves points here?
Avatar of DanRollins
Moderator, my recommended disposition is:

    Accept marconovaro's comment(s) as an answer.

DanRollins -- EE database cleanup volunteer