User Profile
Collapse
Profile Sidebar
Collapse
LesC
Last Activity: Sep 17 '07, 09:02 PM
Joined: Jun 24 '07
Location:
-
Thank You, will give it a try -
i am using vb6 and as i said in my first post, i am trying to use tne code that i posted but can only get it to work on the first line and i need it to do the entire document.
thank you
lesLeave a comment:
-
I am trying to remove the line numbers of a text document.
Example:
N10 G01 F720 X0Y0Z0
N20 X0Y0Z0
etc...
N9000 X0Y0Z0
M0Leave a comment:
-
Process text file, line by line
trying to get this code to loop through a text document line by line.
[CODE=vb]Private Sub Command1_Click( )
WordFoundFlag = 0
For i = 1 To Len(Text1)
Char = Mid(Text1, i, 1)
If Char Like "[A-Za-z-]" And WordFoundFlag = 0 Then
WordFoundFlag = 1
StartPos = i
ElseIf Char Like "[!A-Za-z-]" And WordFoundFlag = 1 Then
ElseIf...
No activity results to display
Show More
Leave a comment: