Search:

Type: Posts; User: frogblast

Search: Search took 0.00 seconds.

  1. Replies
    6
    Views
    1,726

    For the headers, use this: #include ...

    For the headers, use this:
    #include <iostream>
    #include <fstream>
  2. Replies
    3
    Views
    953

    Thanks, I got it now

    Thanks, I got it now
  3. Replies
    3
    Views
    953

    online status

    Is there any way to find out if there's an active dial-up connection and the computer's online?
  4. Replies
    3
    Views
    1,428

    You could always try... #include ...

    You could always try...


    #include <windows.h>
    ..
    CreateDirectory("txt",NULL);
    SetCurrentDirectory("txt");
    b_file.open("1.txt", ios::nocreate);
  5. Replies
    5
    Views
    1,126

    You need to dynamically allocate memory for a...

    You need to dynamically allocate memory for a multi-dimensional array which can be tricky. I think the following is the correct way to do it but I'm not too good with that sort of thing.Also arrays...
  6. Thread: Question

    by frogblast
    Replies
    1
    Views
    794

    If you want to scan for filenames then use the...

    If you want to scan for filenames then use the windows functions FindFirstFile and FindNextFile.

    eg, get all .txt files in the c:\ directory


    #include <windows.h>
    #include <iostream.h>

    int...
Results 1 to 6 of 6