Summary: I'm trying to make a relatively simple program but I can't remember what to do to get it to work. What I basically want it to do is read in informatio...
Summary: I am trying to find out what the easiest way to read text from a file into a variable (to put into an editbox) is? AMD Athlon 64 S939 3000+ ASUS A8V D...
Summary: I have tried to create a batch file: copy %filename% c:\files and put it in the send to folder however it does not work. Does anybody know how I woul...
Summary: Hi all, before i begin, yes this is an homework assignment question... got a c++ file I/O question. here is the code that i've so far. #include <io...
Summary: Hi everyone I am writing a fairly large c program which is in its early stages. It is merely a proof of concept thing, not for sale or anything like t...
Summary: Hey everybody, does anyone know how to create a xxxx.dll file using a xxxx.c file, a xxxx.h file and a yyyy.h file. I've been searching the net for da...
Summary: I'm not too good at reading from a file either, but what is CurrentSize in your SaveToFile? The file may be so big that it takes a long time for C++ t...
Summary: Hi, I am new to programming and want to know in simple steps (if anyone can provide me with psuedo code) how to create a form based program in C# that...
Summary: hi could somebody help me please. I have been using c# to read some data in excel file. which most of the time it work fine but their will be someti...
Summary: My program uses a class. in the class i open a file in a constructor. how can i pass the input stream to another method by reference? Is there anot...
Summary: I am trying to make a program in C++ to read in a bunch of numbers from a file "frames.txt" like shown here: Frame: 00 FE 08 08 00 60 00 23 A1 23 0E 9...
Summary: Please help a newby trying to code first program. I want to be able to write data to a file, then read from the same file. I can manage this OK, but I...
Summary: Dim FileData As String Open "c:\file.txt" For Binary Access Read As #1 FileData = Space(LOF(1)) Get 1, , FileData Close #1 That'll read. Open ...
Summary: I'm a total beginner to c++ but have some experience in java. I'm trying to read in a text file and output its contents, but only certain lines. The f...
Summary: Hello Everyone, Im looking for a bit of help. I am new to the game of setting up webservers. However I have managed to install an Apache webserver on ...
Summary: hello, i have 2 text files, one is small (file_1: about 200 lines) and the other is fairly large (file2: 12 k - 20 k lines). file_1: tango 12 beta 256...
Summary: I am trying to learn C++ and am working on a project where I need to open a file, read in data from several columns and output the data in a new file...
Summary: Having some trouble creating a file transfer server/client using C++ and Winsock2. The file is read into the client perfectly fine, but when I try and...
Summary: Hi everyone, I am a computer science student and I have written a program for one of my classes and it works for the most part with one simple excepti...
Summary: Hi Help me in this issue @echo on set Path=C:\Temp.txt for /f "eol=; tokens=1 delims=" %%i in (%Path%) do (set /a no=%%i+1) echo First %no% set no=...
Summary: Hi M2G. But why? > newfile & setLocal EnableDelayedExpansion Only the first word in the first line of the text file is being extracted, delayed expa...
Summary: I know I have seen many different threads about reading over text files with a batch file, but I for some reason am having a hard time making those wo...
Summary: Hi - I believe the possible solutions to this problem are fundamentally different in C versus C++. In C, you would: -Find the size of the file ('stat'...
Summary: CAN SOMEONE TELL ME IF IM DOING THIS RIGHT?? IM SUPPOSE TO READ A FILE AND USE A HASING FUNCTION TO SORT IT OUT IN A LINKED LIST ARRAY. THE FILE FORMA...