I have a text file with one of the lines as : name=AB,CD,EF
I read the line like this:
input# line,str
first str is name=AB then the next line is CD and then EF, why it does not read the whole line at once.
I have a text file with one of the lines as : name=AB,CD,EF
I read the line like this:
input# line,str
first str is name=AB then the next line is CD and then EF, why it does not read the whole line at once.
use Line Input #
instead of Input #
if you wanna read an entire line .
input #
reads line upto ,
.
hope this helps you . . .
what do you mean by use Line Input # instead of Input #. can show me the actual syntax?.
lets have a look at following :-
Dim xno As Integer
Dim xtext As String
Open "d:\file.txt" For Input As #xno
Line Input #xno, xtext 'this is the actual line for what you searching
Print xtext
hope this helps you . . .(if it really helps then mark this thread as solved)
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.