User Profile
Collapse
-
Take a look at the Split Function -
[QUOTE=Jamad]I want to extract some information in a text file that is not tab, comma and space separated.
Do you need help reading the text file?
Is the format of the file always like this?
USER LABEL : Intel_dub/r01sr1/board#02
Unit type : A21E1
Unit part number : 3AL78832AAAE02
Software part number : --------------
Date (00) : 03/03/07
OPERATOR INVENTORY DATA
----------------------------------------------...Leave a comment:
-
Are you trying to connect to a table within your access database or outside of it using Visual Basic? either way yes it is possible....Leave a comment:
-
Do you just want to read the text of an html file you have stored locally?
if so I would think you could just treat it as you would a text file
using something like
OPEN "c:\MyFile.html " FOR INPUT as #1
Input #1, x
CLOSE #1...Leave a comment:
-
-
Well I think the focus of these forums is on learning this yourself by searching help files and internet but I will give you one more nudge in the right direction.
After you get the line of text you can test it with the InStr Function
example
Dim strTemp As String
Open "C:\Test.tx t" For Input As #1
Input #1, strTemp
MsgBox strTemp
...Leave a comment:
-
Maybe this can get you started
Dim strTemp As String
Open "C:\Test.tx t" For Input As #1
Input #1, strTemp
MsgBox strTemp
Close #1Leave a comment:
No activity results to display
Show More
Leave a comment: