|
-
Feb 14th, 2000, 07:46 AM
#1
Thread Starter
Junior Member
Visual Basic has a problem reading a line of text of a text file if the line starts with a number?
Anybody know a way around this problem?
Mark S
-
Feb 14th, 2000, 08:29 AM
#2
Dim qwe() as byte
Open MyFile For Input as #1
Redim qwe(1 to LOF(1))
Get #1 , , qwe
close #1
'you got an array of bytes; to get a string
'from it, do :
Din MyStr as String
MyStr = StrConv(qwe,VbUnicode)
-
Feb 14th, 2000, 08:38 AM
#3
not for Input... but For Binary as #1
sorry
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|