Results 1 to 12 of 12
  1. #1

    Default learning visual C++ form the Visual studio

    i recently got microsoft visual studio and was using the win32 console projects you can make in C++. unfortunately you cant use images or colors in this. anyone know which type of project you can? anyone have any tutorials about using colors/images/buttons/advanced stuff like that?

  2. #2

    Default in Visual C++

    in Visual C++ make a New project (File/New) , then select Win32 Application.
    In this You can use images, buttons, edits, lists, everything what exists in Windows!

  3. #3

    Default

    anyone have any tutorials for using these?

  4. #4

    Default

    one more thing. sometimes when I try to copy code from the internet into win32 app, it says it cannot find some of the include files. could this be because when i installed visual studio, it asked me for like the msdk disk or something i didnt have? i know im missing the help files because of that.

  5. #5
    Uber Noobling jedimaster86's Avatar
    Join Date
    Jan 2004
    Location
    Pennsylvania
    Battle Tag
    None
    Posts
    4,593

    Default

    Basically i just went to good 'ol Google and searched for "visual studio tutorials". here were the first few links, but if you go search what i did you can find all the links below and more to help ya with whatever you're doing.

    -http://msdn.microsoft.com/library/de...lkthroughs.asp
    -http://www.c-sharpcorner.com/vsnet.asp
    -http://www.codeproject.com/
    -http://www.docnmail.com/learn/VisualStudio.htm

  6. #6

    Default

    im going back to blitz basic. C++ sux

  7. #7

    Default

    lol, that halarious, "C++ sux". Wow that was priceless... C++ is the most capable programming language on Windows, and on Linux, just because you can't set it up right, doesn't make the language suck, I suggest you return Visual Studio, and try using Dev ++, go to google, and type it in, it comes with various tutorials, and methods of creating a hello world program.

    Don't give up on C++, try Dev ++.

  8. #8

    Default

    yeah, I realize how powerful it can be, but it is aldmost impossible for me to get it working. there must be an easier way. most other languages, you just type ur code and it works. no different versions, different kinds of apps, no includes. UGH!!!

  9. #9

    Default

    luckily I got Visual Studio free from a camp. any real difference between that and dev?

  10. #10

    Default

    YES, dev is free... VC++ is by microsoft... I was just suggesting you learn to use a compiler I know works, and is pretty much set-up free..

    Maybe someone should setup a tut for you ^_^

  11. #11

    Default

    two things. how can I make .exe's with dev, and where are there any tutorials about making windows projects(instead of console)? I searched google for a while, and none of them teach you how to make windows/ buttons/ graphics.

  12. #12

    Default

    Why don't you look some stuff up before you ask dumb questions... It doesn't take much of a brain to look through Dev... To make an exe in dev, first you write your code, example:
    Code:
    #include <iostream.h> //Inlcudes the header iosteam.h, so we can use cout.
     
    int main()
    {
     
    cout<<"Hello World!"; //Displays hello world
    getchar(); //Pauses
    return 0; //Returns a value
     
    }
    Go up to one of the menues, It probably says Compile, thats what you call it when you create an exe, and click compile, or F9, I'm pretty sure compiles it and runs it.

    Good Luck

Thread Information

Users Browsing this Thread

There are currently 3 users browsing this thread. (0 members and 3 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •