Summary: I have been redesigning several old batch files to redirect their output to HTML. Most of the redirects work fine, but of some not so fine. Some...
Summary: edman thank you for your help on this, your 2nd batch file to rename the files will be helpful. The first one does not really apply to what I wanted. ...
Summary: This one is kind of tough.. I'm sure everyone is familiar with LegalNoticeCaption and LegalNoticeText. (If not a quick Google will fill you in). Here'...
Summary: Is there a way to insert a carriage return (new line character) into a file? I would like to be able to insert a carriage return whenever I find (usi...
Summary: I have a text document which is created with an extra carriage return at the bottom of the file. I am trying to either find a way to remove that carri...
Summary: Hello. I'm trying to write a bat script to modify a text file by inserting a carriage return at the 80th character of any line. e.g. Some lines in m...
Summary: Hi vibhutidevatraj (You) need a script to remove LF and CR Characters from a CSV file. I have the perfect script for you. I will assume the csv ...
Summary: Private Sub Command1_Click() Dim strData As String Dim strText As String Dim intFile As Integer intFile = FreeFile Open "C:\Documents\newsequence.tx...
Summary: Hi, I receive a file from Unix server to my windows server,this file is unix style I try to create a copy of this file via windows batch script: @echo...
Summary: Hi all, N.B. This will only work, or has been tested in Dos 7.1 so it won't work in an NT Environment! Heres an intereting way of removing ALL(blank l...
Summary: Hi, I have the following batch file that combines the contents of 2 txt files into 1: *************** :: Get system's current date into multiple varia...
Summary: All it is doing is creating a Dummy file with an HTML extension. It can be a zero length file. The file name is then fed into the FindExecutalble API...
Summary: Maybe if I had expressed it this way it would have made more sense: dialogmsg="Programmed by xx" & vbCrLf & vbCrLf & "Ver 1.0a" The vbCrLf inserts a c...
Summary: Thats not too hard.. Create an array called temp equal to the size of the array of characters your removing white spaces from. copy one letter at a ti...
Summary: Hello, I often have some ascii text files that need edited. Not wanting to do the same task over and over, I want to make a batch file. Here is and id...
Summary: Hey again. -----------first question----------- My first question is about a program that is supposed to find prime numbers until an, user specified, ...
Summary: Making your combined empty file is easy, you could even remove an if statement doing it. Just change if exist "%2_COMBINED.TXT" del "%2_COMBINED.TXT"...
Summary: Hi, Hmm, you use NASM right? Right on bro... The very 1st thing if you want to learn asm is to learn about software interrupts, or API if you want to ...
Summary: there are a few control characters that may be included in a text file. 9 tab 10 cr (carriage return) 12 ff (form feed) 13 lf (line feed) 26 ctrl-z (...
Summary: To get your debug script as part of a batch file see the following tips: 1) create a .txt file using Notepad inserting your commands for Debug (i.e. s...
Summary: The first one is fine The second one is okay, but it also takes out any newline characters, tabs, carriage returns, etc...Are you sure this is what yo...
Summary: If you want to print it on the left edge of the screen, you may be able to do it using the carriage return to kick the cursor back. As long as the ne...
Summary: Hi Ete, The CRLF is the 'line break' created when pressing ENTER. The two bytes CR and LF take their name from the typewriter days. CR is 'carriage re...