Summary: I have a standing problem: Under a directory, I have many files with similar names for example 1998.EEO.SAC 1999.OTT.SAC 2000.CRLO.SAC . . . I want to...
Summary: Sulfurik, Just use some stream input and output. It's not quite the same as C#, but it's the same idea. Here's a layout 1) Open a file with fopen....
Summary: I am programming a role-playing game from DOS to Win32 using Microsoft Visual C++ 6 environment. Recently, I have a problem reading texts from files....
Summary: I am trying to copy a file from the current directory as the batch file to C:\programfiles\mygame. how would I do this? I am what most would call a ne...
Summary: I have refernce file with some data in it myfile: aaaa bbbb cccc dddd and I have to write a script in unix such that for the first time the script has...
Summary: I have never used batch files before. If someone has time, could you please show me how to take a file and rename it with a date stamp at the end, in...
Summary: Hi Guys, Can someone give me a simple example of how to read a file of userids and passwords such as a file called passwords containing: a001mm passwo...
Summary: Hey again. This time I would like to be able to search a file name for a certain value. I'm using a for loop to check each file in a folder and would ...
Summary: Hi, I have a file called FFL_Act_YYYYMMDD.txt. I need to strip off FFL_Act and add it in my header row like HDRYYYYMMDDFFL_Act I can add HDRYYYYMMDD b...
Summary: Carven: To read from a file in VB6, try this: Private Sub Reading_Click() Dim variable1 As String Open "c:\My Documents\sample.txt" For Input As...
Summary: I need to add to an existing VBS script - to read the contents of a CSV file and locate specific data, then the check the date to see if it matches th...
Summary: Yes, don't use the FSO for a start. It cumbersome, slow and heavy on resources and has no place in VB6. If you intend distributing you application, ...
Summary: How to read repeatedly 4 bites from a file and print it out in hexadecimal. The file is under .bin. I'm using Microsoft Visual C++ 6.0 to complie my p...
Summary: Hi friends, I want to know does how to run a batch file present on another computer within the domain, from my computer, without logging into the remo...
Summary: Does anyone know how to save a wmv file using the code as appended below -"video_ad.asx?v15396,wmv" ? --------- <object id=mediaPlayer name=mediaPl...
Summary: I write this Funktion to read a ASCII FILE to a Matrix.didnīt work why? IntMatrix* load_matrix(FILE* fileIn) { IntMatrix* matrix = NULL; int cols = 0;...
Summary: Hi people. how can i read a file(any) and get its size in Assembly? suppose we dont know what type the content of the file is and we want to get its s...
Summary: Hi, I know how to open a file for reading, but I have 3 columns in a file called names, I try to read one row at a time but I can't do it like Z, ...