Thread: Help needed, C++ beginner

  1. #1
    Registered User
    Join Date
    Nov 2001
    Posts
    44

    Post Help needed, C++ beginner

    I am currently writing a program using Dev-C++. The program will require the following:
    - Password on start-up
    - Menu System
    - Store vast ammounts of data to an external file
    - Be able to print out to my Laser Jet
    Have you got any C++ Source Code that I can have a look at that may be relevant to creating such a program.

    If so can you post here / email me at [email protected]
    I'm using Bloodsheds Dev-C++ Compiler.

    JamMan..

    Curious if I can live forever? CLICK HERE

  2. #2
    Registered User
    Join Date
    Aug 2001
    Posts
    155
    source code for all the components of your program is available by searching this board for each component separately. Because file set up is not standard you will need to determine how you wish to store the data. In addition, you will learn more, better, and faster by trying your hand at the task. If you need assistance you are more likely to get what you are looking for by asking a specific question regarding a specific task/problem.

  3. #3
    Registered User
    Join Date
    Sep 2001
    Posts
    18
    LOL,
    Ur a newbie and expect to be able to do all of this before understanding the language...

    Well, for the menu system a switch case would be the best
    Password Encryption and stuph can be found at my Library Site:
    deth.ath.cx/pdf/
    Uhh.....
    This is for the prompt right???
    If you plan to do this on windows... BAHAHHAHAHAHAHAHHA
    That would be funny...
    If so DONT USE MFC! IT SUX AND HAS GLITCHES!
    I would use OpenGL, although its a graphics programming library I still use it when I want to program windows because its easier to comprehend and the handlers are FAR simplar...
    for GREAT tutorials goto
    NeHe
    Dont expect much if your a beginner, im very good at OpenGL but I nearly forgot all of the basics!
    SO I have to go back and learn them...


    For the file exporting
    Code:
    ofstream a_file;
    a_file.open("filedb.txt");
    //.........
    //......Code here
    a_file.close()
    For Printing:
    Code:
    ofstream printer;
    printer.open("LPT1");
    printer<<"Some text or string\f";  //U NEED THE \f, it means form 
                                                         // For the printer
    printer.close();
    Sorry if this isnt enough help, but this is all I could do besides right it for you...
    HACKERS MANIFESTO (NOTE MOST WAS CUT OFF) (PEOPLE SAID IT WAS TOO LONG)
    This is our world now... the world of the electron and the switch, the beauty of the baud.
    · We make use of a service already existing withoutpaying for what could be dirt-cheap if it wasn't run by profiteering gluttons, and you call us criminals.
    · We explore... and you call us criminals.
    · We seek after knowledge... and you call us criminals.
    · We exist without skin color, without nationality, without religious bias... and you call us criminals.
    · You build atomic bombs, you wage wars, you murder, cheat, and lie to us and try to make us believe it's for our own good, yet we're the criminals.

    Yes, I am a criminal. My crime is that of curiosity. My crime is that of judging people by what they say and think, not what they look like. My crime is that of outsmarting you, something that you will never forgive me for.

    I am a hacker, and this is my manifesto. You may stop this individual,but you can't stop us all... after all, we're all alike.
    +++The Mentor+++

  4. #4
    Registered User
    Join Date
    Aug 2001
    Posts
    61
    I would use OpenGL, although its a graphics programming library I still use it when I want to program windows because its easier to comprehend and the handlers are FAR simplar...
    Umm.... why would you use openGL to program for windows its a graphics programming library and has nothing to do with windows.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. C Programmers needed for Direct Hire positions
    By canefan in forum Projects and Job Recruitment
    Replies: 0
    Last Post: 09-24-2008, 11:55 AM
  2. Same old beginner question...
    By Sharmz in forum C Programming
    Replies: 15
    Last Post: 08-04-2008, 11:48 AM
  3. What are some good beginner programs I shouold make?
    By oobootsy1 in forum C# Programming
    Replies: 6
    Last Post: 08-09-2005, 02:02 PM
  4. C++ help needed
    By Enkindu in forum Projects and Job Recruitment
    Replies: 3
    Last Post: 08-31-2004, 11:24 PM
  5. Windows programming for beginner (Absolute beginner)
    By WDT in forum Windows Programming
    Replies: 4
    Last Post: 01-06-2004, 11:21 AM