Thread: compiler problem

  1. #1
    Registered User
    Join Date
    Nov 2007
    Posts
    73

    compiler problem

    guys !!!! i ve been using turbo c compiler till date...
    yesterday i got microsoft visual studio 2005.... i dont know head or tail f it....
    can anyonesuggest me any ebook for visual studio
    or any help file....

    if sooo please leave the links here......

    and do i need to download msdn libraries.....

  2. #2
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    What, exactly, are you struggling with?

    I have used VS C++ quite a bit, so I can probably explain, if you explain what the problem is. There is also extensive built in help.

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

  3. #3
    Registered User
    Join Date
    Nov 2007
    Posts
    73
    actually i am completely new to vc
    so dunno how to create or compile......
    it gives so many godamn options......

    pls..... if u could take the pain to explain briefly ... a get start....
    then i ll start and explore...... or suggest me a book or site....

  4. #4
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    You need a "project" first of all. This is a collection of source and header files [it can be one single source file if you want it to be - technically you can even have a project with NO files - but it's kind of like having a directory on C: with nothing in it - it's only useful if you plan to put things in it later on].

    Select the "new project" and then select "Win32 application". You then give it a name. Click OK.

    Once you have your Win32 application project, you need to select a few other things. To make it easy, let's start with a "Console Application". This setting is on the "second tab" on the project settings Window. Once you've selecte "Console App", you can click OK here too.

    Now you should have a pane on the left side of the window where you have include and source files, and you should find a "proj.cpp" file [where "proj" is the name of your project]. This file contains your "main" [called _tmain so that because it's supporting both ANSI and Unicode text encoding].

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

  5. #5
    Registered User
    Join Date
    Nov 2007
    Posts
    73
    k thanxxx i will try it out....

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Dev-C++ compiler problem
    By GrasshopperEsq in forum C++ Programming
    Replies: 19
    Last Post: 05-08-2008, 02:35 AM
  2. Compiler Problem
    By sitestem in forum C++ Programming
    Replies: 2
    Last Post: 04-11-2004, 03:48 PM
  3. Replies: 5
    Last Post: 12-03-2003, 05:47 PM
  4. Problem with compiler
    By knight543 in forum C++ Programming
    Replies: 4
    Last Post: 02-09-2002, 09:16 PM
  5. Please help me with this compiler problem
    By incognito in forum C++ Programming
    Replies: 1
    Last Post: 01-05-2002, 05:14 PM