Search:

Type: Posts; User: Halo2Master

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,010

    you cant use backspace though, i know that for a...

    you cant use backspace though, i know that for a fact when my friends and I were working on this... we used that method, and when you backspace, it adds another star
  2. Replies
    7
    Views
    1,010

    now by the sounds of it, it replaces the "*" with...

    now by the sounds of it, it replaces the "*" with a backspace, then the user wont see what they enter, true?
  3. Replies
    7
    Views
    1,010

    thnx! that clears alot up... a little technical...

    thnx! that clears alot up... a little technical but nothing i cant fix up
  4. Replies
    29
    Views
    2,958

    or keep it basic with: char...

    or keep it basic with:


    char ThePassword[256];
    cout << "The Current Password Is: ";
    ifstream B ("Startup.txt");
    cout << ThePassword << endl;
    B.close();
    char...
  5. Replies
    11
    Views
    6,089

    yea, i use cin.get() in my programs, i fins its...

    yea, i use cin.get() in my programs, i fins its more efficient then the people saying to use system("pause"). I find it to be the next best thing next to a Sleep(x) function
  6. Replies
    7
    Views
    1,010

    masking problems

    ok, here is the code i'm having problems with--


    #include <iostream>
    #include <stdlib.h>
    #include <conio.h>

    using namespace std;

    int main()
  7. Replies
    19
    Views
    2,481

    Masking Issues

    hmmm... good point. I tried using the first method before i posted the question but it didnt do anything...

    Now back to the masking issue... I found a way to do it through VC++ and VB, and i did...
  8. Replies
    19
    Views
    2,481

    nazca -- thanks soooo much, but actually -- you...

    nazca -- thanks soooo much, but actually -- you don't need the extension to be .ftp, it needs to be .txt, but thanks for the advise! now back to character masking...

    I made a code using that...
  9. Replies
    19
    Views
    2,481

    while were talking about FTP, if you connect...

    while were talking about FTP, if you connect through FTP to astecinc.95mb.com and put in username astecinc.95mb.com, it brings up the password input... when you type stuff, the cursor never moves --...
  10. Replies
    19
    Views
    2,481

    ok... i never thought about that! im new to FTP...

    ok... i never thought about that! im new to FTP so im learning a little at a time... I found ways to do FTP in VC++ and C#, but couldn't find anything for C++ on MSDN
  11. Replies
    8
    Views
    1,416

    i see what you mean -- Demanding money, why not...

    i see what you mean -- Demanding money, why not charge later, program now! collect some registration fees in time, just program
  12. Replies
    22
    Views
    2,133

    uh, i have the Visual C++ 6 book, and I feel it...

    uh, i have the Visual C++ 6 book, and I feel it was good, but i got lost in the beginning...
    this is "Visual C++ 6 In Record Time -- Teach Yourself the 14 Essential Skills" by Steven Holzner right?
  13. Replies
    8
    Views
    1,416

    once done, ill like to see this those two are...

    once done, ill like to see this those two are good programmers!
  14. Replies
    22
    Views
    2,133

    i use: #include using...

    i use:


    #include <iostream>

    using namespace std;

    int main()
    {
    cout << "Hello World" << endl;
  15. Replies
    19
    Views
    2,481

    i searched for like an hour and nothing... at...

    i searched for like an hour and nothing... at times, linux has the answers. i could do it through FTP! I made a code that uses basic I/O but I cant get it to send through command prompt... I get it...
  16. Replies
    19
    Views
    2,481

    thats the problem... im running windows

    thats the problem... im running windows
  17. Replies
    19
    Views
    2,481

    ujst out of curiosity -- would there be a way to...

    ujst out of curiosity -- would there be a way to send this data via email? that would be cool!
  18. Replies
    19
    Views
    2,481

    i used the this system because i needed to limit...

    i used the this system because i needed to limit the amount of characters going into my program, i'll use that for more practical jobs -- Thanks for your help!
  19. Replies
    19
    Views
    2,481

    one more question, to make the database neat, how...

    one more question, to make the database neat, how would i make the information going into the text file be in seperate lines?
    Example: John Doe
    2222 Weird Street
    ...
  20. Replies
    19
    Views
    2,481

    i was wondering about that... it was strange to...

    i was wondering about that... it was strange to me why they didnt use brackets... thanks!
  21. Replies
    19
    Views
    2,481

    string problems

    ok, i am making a database -- here is the code, i marked what the compiler is angry about...



    #include <iostream>
    #include <stdlib.h>
    #include <cstring>
    #include <fstream>
    #include...
  22. Replies
    3
    Views
    1,131

    oh, never mind... DUH! thanks mrafcho001! i went...

    oh, never mind... DUH! thanks mrafcho001! i went through the tutorials and never knew what the ofstream was used for till now...
  23. Replies
    3
    Views
    1,131

    O.k., I understand writing to a file now. I know...

    O.k., I understand writing to a file now. I know there is a way to CREATE a new file, and i will research on it, but it would help to get help...
  24. Replies
    3
    Views
    1,131

    Creating Files

    In C++, what would I need to write in order to have a batch file written to a certain directory? Like, the program would write a batch file in a folder on my desktop for example.
  25. Replies
    3
    Views
    1,182

    only can be done in 2000/NT/XP Pro... In XP Home...

    only can be done in 2000/NT/XP Pro... In XP Home you cant change user logon permissions due to limited functions. XPH is not designed for networking... and we only have one user. I want to use the...
Results 1 to 25 of 26
Page 1 of 2 1 2