Hello all VB masters,
I'm a VERY VERY newbie in VB, but I got a very difficult task
I need to read string from serial port (COM1), and for some reason, I can't use MSCOMM component. I already search the internet for the answer but still I stuck. Here is some code I've made :
fCOM = FreeFile
Dim LineText As String
Open "COM6" For Input As #fCOM
LineText = fCOM
Close #fCOM
Text1.Text = Text1.Text + LineText
but what I've got is just "1" character on my text1 component. Any suggestion from masters?
Thanks for read my post





Reply With Quote