R
RC51WV
Is it possible to edit a .txt file with VBA?
I have .txt files that will need to be imported when selected by a user.
this is what the information looks like
NAMEOFJOB=MYJOBIS
cmd=1234567;TYP;12345;1.0;1;1234567
01:\\Imagepath\imagename1.tif
cmd=1234567;TYP;12345;1.0;1;1234567
02:\\Imagepath\imagename2.tif
cmd=1234567;TYP;12345;1.1;2;1234567
01:\\Imagepath\imagename1.tif
cmd=1234567;TYP;12345;1.1;2;1234567
02:\\Imagepath\imagename2.tif
The fields straight across the table are:
OracleIDNumb
Doc Type
Image Frame
Image Number
Capt Img Number
Doc ID
Image Path
I need to get the lines starting with cmd to be entered into the first 6
fields with the ; being the delimiter and the 01:\\imagepath etc... on the
second line to be entered into the 7th field, Image Paht. How do I go about
working on this?
-Thanks
I have .txt files that will need to be imported when selected by a user.
this is what the information looks like
NAMEOFJOB=MYJOBIS
cmd=1234567;TYP;12345;1.0;1;1234567
01:\\Imagepath\imagename1.tif
cmd=1234567;TYP;12345;1.0;1;1234567
02:\\Imagepath\imagename2.tif
cmd=1234567;TYP;12345;1.1;2;1234567
01:\\Imagepath\imagename1.tif
cmd=1234567;TYP;12345;1.1;2;1234567
02:\\Imagepath\imagename2.tif
The fields straight across the table are:
OracleIDNumb
Doc Type
Image Frame
Image Number
Capt Img Number
Doc ID
Image Path
I need to get the lines starting with cmd to be entered into the first 6
fields with the ; being the delimiter and the 01:\\imagepath etc... on the
second line to be entered into the 7th field, Image Paht. How do I go about
working on this?
-Thanks