Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. TheProgramer

    Is there a differance between C++ and VC++?????

    I am use to making console apps with cout lines, now I see printf()? Why is this??? --TheProgramer-- C++ Programer since 2004. You can contact me at: theprogramer2004@yahoo.com
  2. TheProgramer

    How do I make a window have a default text input???

    Hi, I am making a program with multiple windows. In the main window, you can have multiple other windows. How do I make the smaller windows have a default text input? Now theeey just load as a plain white box, but I want them to have a default text input. Thanks in advance!!!!!!!!!!
  3. TheProgramer

    VC++ Help Needed!!!!!

    Hi, I am making a dialog based, Win32 application. I have set it up to have a person input a password, but it won't validate it. How do I make it validate the password? I want it to be able to have multiple passwords. I tried: if (password == 1111) return 0; so that if the password is...
  4. TheProgramer

    Making a password, dialog based, Win32 program. Please help me!!!!!!

    Hi, I am making a dialog based, Win32 application. I have set it up to have a person input a password, but it won't validate it. How do I make it validate the password? I want it to be able to have multiple passwords. I tried: if (password == 1111) return 0; so that if the password is...
  5. TheProgramer

    Win32 Programing Question

    Hi, I have a bit of code that came with my Dev-C++ for a Win32 Application. All I am asking is, where do I put my prograns code? Here is my code: #include <windows.h> /* Declare Windows procedure */ LRESULT CALLBACK WindowProcedure(HWND, UINT, WPARAM, LPARAM); /* Make the class name into a...
  6. TheProgramer

    How do I make an application print text??????

    How do I make an application print text?????? All; I want is to make a program simply print any text that was displayed in my console application. Thanks in advance! --TheProgramer-- C++ Programer since 2004. You can contact me at: theprogramer2004@yahoo.com
  7. TheProgramer

    How do I make a program delete and recreate a file? PLEASE HELP!!!!!

    I just need a snipet of code that will delete and recreate a file. Not Rename, but totaly delete and then create a new file under the same name. --TheProgramer-- C++ Programer since 2004. You can contact me at: theprogramer2004@yahoo.com
  8. TheProgramer

    Windows Programing help

    I have DEV C++, andI need to know how to program a windows program. It has a template fir Windows applications, I just cant find where to my program code. Here is what the template looks like: " #include <windows.h> /* Declare Windows procedure */ LRESULT CALLBACK WindowProcedure(HWND, UINT...

Part and Inventory Search

Back
Top