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 TouchToneTommy 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: *

  • Users: denisfinn
  • Content: Threads
  • Order by date
  1. denisfinn

    Making a Post.php page

    I'm trying to make a page that after a submit button is pressed on say index.php it goes to post.php. from here i want the post.php to go to the previous page, which in this case is index.php. i can easily do this the hardcoded way where i simply tell it to go back to "index.php", but i want...
  2. denisfinn

    apache passwords?

    Hola, I just got Apache2Triad running (apache/mysql/php). I don't know any of the default passwords or if there even are ones. Could someone please guide me through how to change the passwords? Thanks DF
  3. denisfinn

    simple game source

    can someone give me the source of a simple game like pong, tetris, or chess. i just cannot picture how to make a game with c++ thanks :)
  4. denisfinn

    saving, writing, and opening files

    i'm not sure if i'm way over my head but.... could someone tell me what is needed to be able to create files from a c++ program.... for example: write a program that takes input and then can save to file.txt i don't think this should be too hard to do.... also i'd love to be able to open...
  5. denisfinn

    game?

    hello, I was wondering what kind of c++ skill it would take to make a simple game like tic tac toe or chess(???) with just G++ (linux c++ compiler). I would like to know what kind of things are involved with games, because I cannot seem to figure out how to make one.....I guess I don't know...
  6. denisfinn

    c++ setup

    hey all! the normal way i set up c++ programs is: #include <iostream> int main() { return 0; } someone told me that I should be doing: #include <iostream> VOID main() { return 0; } the difference being void in the second one. can someone tell me the true way? (or best)
  7. denisfinn

    simple simple simple pathetic question

    what's the #include to get a string? like say I wanted a user to input their name. That would be the string. What is the #include to get that? Thanks, Denis
  8. denisfinn

    how to use directx

    can someone tell me this.... Do you use directx in Visual c++ or is there something that you run to make 3d spaces ( ie level map ). I am very confused on how to do this. All that I think I understand is that I have to use Directx in a Win32 App. Please help me out here someone, as you can...
  9. denisfinn

    Direct X for 3d capability

    is DX the way to go for a windows program (a game most likey). Also, should I be using DX with a MFC app or would there be a better option? Another question... Where can I find a decent tutorial that will show me how to make say...a room for a character to adventure in? Or something that will...
  10. denisfinn

    C++ Capabilities

    I was just wondering...does c++ have any limit to the things it can make? Like would making a 3-d object be possible in c++.
  11. denisfinn

    a project idea

    well...i am starting to get the hang of VC++ and I can finally make dialog boxes with buttons and things. But I have come to a problem. I have no clue what to make. Can someone give me an idea. Actually can everyone give me an idea. Please remember that I am not at all a c++ expert, so be...
  12. denisfinn

    I finally got Visual C++, but now i need help

    VC++ is a little strange to me. If anyone could explain how to make console applications I would be grateful. Also, is there any way to have a default source file that already has: #include <iostream> int main() { return 0; } already written. I am kind of lazy...
  13. denisfinn

    Normal C++ Question

    Hey, it's me again.. any ways i figured some color might spruce up the way my programs look. too bad i can't figure out how to do this. If you could tell me it would be awesome. I am not using Visual c++, I am just using a simple C++ compiler, any help will be appreciated. thanks, denis...
  14. denisfinn

    help me (c++ calculator)

    I am trying to make a calculator! I have been doing c++ for like a week and I thought I could do it. Appartently I cannot. Here is the source I wrote for the whole thing: #include <iostream> int multiply (int firstn, int secondn); int divide (int firstn, int secondn); int add (int firstn, int...

Part and Inventory Search

Back
Top