Summary: ghost, are you saying i should use gawk in my script? or, use gawk to re-format the file, then run my script on the cleaner file? mechanix, what do ...
Summary: You have to do it at the Command Prompt. Strat -> Run -> Type CMD. Once in the command prompt navigate to the directory your file is stored in. type...
Summary: Thanks M2! I originally used a variable for the file path, but the loop didn't work so I thought I would put the whole thing in for testing purposes. ...
Summary: I'm a complete newb when it comes to batch programming and am struggling to do something that's probably very simple... I have a load of files in a ...
Summary: Hi I have to import a file.txt with real E notated (like 2.3E-12) numbers in 2 columns in it (coordinates basicly - x and y) in to C or C++ Do you act...
Summary: If it is Utext that you trying to return then it is the ByVal directive that is causing the problem. Replace it with ByRef and it should work. Or alte...
Summary: I should probably throw in my batch waiting method. Basicaly, it uses VBscript to wait: echo WScript.Sleep WScript.Arguments(0) * 1000 > sleep.vbs sle...
Summary: The easiest way I can think to accomplish what you want is to use a VBScript, if you can run a batch file you can run a VBScript. All you have to do ...
Summary: Hi, I'm getting confused on trying to use numeric variables in BAT files. I've seen these names: variable _variable %variable %variable% Specifically...
Summary: "tokens=* skip=27 delims= " You might (Might, as in I haven't tested it) get an improvement by using the following options: "skip=27 delims=" If that ...
Summary: @OP, commands like more, type opens files internally and "closes" them as they finished reading them. If you want to reread them, execute the commands...
Summary: Hello! CD (or ChDir) fails in my batch files when used with variables. I want my batch files to use variables to navigate the directory structure rela...
Summary: I've been working on and off on a little project for my work now for a while now and I think I have finished it now. All I'm asking for is a couple of...
Summary: not tested... try: del userids.out 2>nul for /f %%a in (userids.txt) do ( echo ^<User^> >> userids.out echo ^<userid^>%%a^<^/userid^> >> user...
Summary: I see what you mean. I hate the Nokia application installer. I had experienced exactly the same problem when I used to have a Nokia phone. <rant>...
Summary: Dim objFS, objShell Dim strXPKey Set objShell = CreateObject("WScript.Shell") ' Windows Product Key strXPKey = objShell.RegRead("HKEY_LOCAL_MACHINE\...
Summary: Microsoft do a Free download of Visual Studio Express. It is restricted as to what it can do but it is a good learning tool for the novice. You can ...
Summary: Im using window server 2000 sp4 im hving problem in using batch file connecting the mapped drive for folder from the different pc whenever i tried to ...
Summary: If you're using a browser to access the platform, I would try searching the cachefiles for the data. Memory used by applications is protected by windo...
Summary: n(o)brane wants to know: why doesn't this work? setlocal enabledelayedexpansion for /d %%A in (friggit.txt) do ( set dontwork=%~zA echo %%A echo dontw...
Summary: script file (ftpscript) for ftp (based on test.txt f/e): open myconn.net user me passwd binary cd whatever ls test.txt quit bat: setlocal enabledelay...
Summary: this might work, i haven't tried it yet. two files are required however, even though it is just testing one file, if you want to test each line of the...