Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations SDETERS on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change a txt file layout using a Visual Basic

Status
Not open for further replies.

uadm26

Computer
Dec 17, 2007
3
Hi,

I have this text to work on it:
16:04 -----------------------------
29-11-2007 16:04 CLIENT: devti-bck
29-11-2007 16:04 POLICY: devti-db2
29-11-2007 16:04 SCHEDULE: full
29-11-2007 16:04 SCHEDULE TYPE: FULL
29-11-2007 16:04 STATUS: 0
29-11-2007 16:04 STREAM: 0
29-11-2007 16:04 -----------------------------

It's about a exit status of a backup. Every backups ends, a new data it's enter in the file. I want to send all text to another file, not copy, because I need all text only in a line, using VB. Like this:
29-11-2007 16:04 CLIENT: devti-bck 29-11-2007 16:04 POLICY: devti-db2
 
Replies continue below

Recommended for you

Do you need to do this in VB or VBScript? In VBScript it will be something like
Code:
<job>
<object id="objFSO" progid="Scripting.FileSystemObject" />
<script language="vbscript">
const ForReading = 1, ForWriting = 2
dim statusfile, oneliner, buff
set statusfile = objFSO.OpenTextFile (whatever, ForReading)
buff = statusfile.ReadAll
statusfile.close
replace (buff, vbCRLF, " ")
set oneliner = objFSO.CreateFile (anotherfile, true)
oneliner.WriteLine buff
oneliner.close
</script>
</job>
 
I need a VB to run in a Windows 2003 server machine.
 
VBScript will run on W2003 but if you want VB
Code:
Const MULTILINE = 10, SINGLELINE = 20
Dim shortline As String, longline As String
Open "multi.txt" For Input As #MULTILINE

longline = ""
Do While Not EOF(MULTILINE)
   Line Input #MULTILINE, shortline
   longline = longline & " " & shortline
Loop
Close #MULTILINE

Open "single.txt" For Output As #SINGLELINE
Print #SINGLELINE, longline
Close #SINGLELINE
 
I would strongly recommend that you not use constants for file handles as that could lead to conflicts. VB provides the build in function "FreeFile" which returns a valid and free file handle.
Code:
Dim MULTILINE As Integer, SINGLELINE As Integer
Dim shortline As String, longline As String

MULTILINE = FreeFile
Open "multi.txt" For Input As #MULTILINE

longline = ""
Do While Not EOF(MULTILINE)
   Line Input #MULTILINE, shortline
   longline = longline & " " & shortline
Loop
Close #MULTILINE

SINGLELINE = FreeFile
Open "single.txt" For Output As #SINGLELINE
Print #SINGLELINE, longline
Close #SINGLELINE

Good Luck
--------------
As a circle of light increases so does the circumference of darkness around it. - Albert Einstein
 
I'd forgotten about that: I've been using VBScript and VBA so much that I can hardly remember the finer points of VB.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor