Thanks for that Rob, you were correct in physically removing the line.
I had never come across the Replace function before, this is good as I
know exactly the string I am removing, hence got it down to ...
strsamplefind = "214 TRIUMPH 633D-190G-XB0 1290650 NONE KEN4_TRIUMPH"
Open "C:text.txt" For Binary As #1
strInput = Input$(LOF(1), #1)
Close #1
strOutput = Replace(strInput, vbCrLf & strsamplefind, "")
Open "c:output.txt" For Output As #2
Print #2, strOutput
Close #2
Looks neater if nothing else !
>From the web, it looks like .net has a command to pull a specific line
number from a textfile, must be a common ask ?
.