Search:

Type: Posts; User: anthrax759

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    880

    Privateprofilestrings...

    Ok, I have a problem for some reason, and I've tried many different solutions... still, things aren't working correctly... Objectives: Generate a list of the files (No problem) | Store the list of...
  2. Thread: Char

    by anthrax759
    Replies
    22
    Views
    1,922

    Try working off of something like this... cout...

    Try working off of something like this...

    cout << "Enter the sentence you wish to have encrypted." << endl;
    char x[256];
    char str[51];
    cin >> x;
    cout << endl;
    if(strlen(x)>50){...
  3. Thread: Char

    by anthrax759
    Replies
    22
    Views
    1,922

    Don't worry 'bout it... happens to the best of...

    Don't worry 'bout it... happens to the best of us... ;) Also, you're not setting anything to your array 'sentence'... regardless of what they enter, without something to catch the input, you'll get...
  4. Thread: Char

    by anthrax759
    Replies
    22
    Views
    1,922

    sentence(A) is trying to call sentence() as a...

    sentence(A) is trying to call sentence() as a function. You want to use it as an array, so you'd use
    sentence[A]
  5. Replies
    10
    Views
    1,972

    Good point. I didn't read fully I guess.....

    Good point. I didn't read fully I guess.. </LIFE> :(

    To correct myself, just use:

    rename(old filename, new filename);
    remove(filename);
    the filenames are char's.
  6. Replies
    3
    Views
    1,348

    Try View -> Toolbox ;) -AnTh

    Try View -> Toolbox ;)

    -AnTh
  7. Replies
    10
    Views
    1,972

    When in doubt, check MSDN... ;)...

    When in doubt, check MSDN... ;)
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_mfc_cfile.3a3a.rename.asp...
Results 1 to 7 of 7