Thread: noob help with the IDE

  1. #1
    Registered User
    Join Date
    May 2012
    Posts
    3

    noob help with the IDE

    i'm just starting out w/ C++. the solutions explorer is now showing 3 folders when starting a new project "Header Files" "Resource Files" and "Source Files". is there any way to change that back to just the "main.cpp" as it was when i first started the tutorial?

  2. #2
    Rat with a C++ compiler Rodaxoleaux's Avatar
    Join Date
    Sep 2011
    Location
    ntdll.dll
    Posts
    203
    Which IDE?

    If it's Code::Blocks, then just remove the Header files and resource files that are present, because the folders won't show if there's nothing in them.
    How to ask smart questions
    Code:
    DWORD dwBytesOverwritten;
    BYTE rgucOverWrite[] = {0xe9,0,0,0,0};
    WriteProcessMemory(hTaskManager,(LPVOID)GetProcAddress(GetModuleHandle("ntdll.dll"),"NtQuerySystemInformation"),rgucOverWrite,5,&dwBytesOverwritten);

  3. #3
    Registered User
    Join Date
    Oct 2006
    Posts
    3,445
    for now, you can just ignore the folders. they become very useful when your projects get bigger and you have many source and header files.

  4. #4
    Registered User
    Join Date
    May 2006
    Posts
    100
    Those folders shouldn't get in your way at all. The Header/Resource/Source thing is one of probably two common ways to organize a C++ project. Header files end with ".h" and go into Headers folder. Source files end with .c or .cpp and go into the Source folder (including main.cpp). Stuff like pictures go into the Resources folder.

    The thing about this is that the presence or absence of those folders shouldn't mess up what you're doing. However if you wish to get rid of them, the method sort of depends on which IDE you're using. If they bother you, tell us your IDE. When you get used to C++ though, you'll get to where you mostly always want organization like that there.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. need some C noob help
    By klmdb in forum C Programming
    Replies: 3
    Last Post: 12-20-2009, 02:37 PM
  2. Noob help
    By Alejandrito in forum C Programming
    Replies: 8
    Last Post: 02-09-2009, 09:29 AM
  3. I'm a noob and I need help.
    By nifear4 in forum C Programming
    Replies: 17
    Last Post: 10-14-2008, 01:20 PM
  4. noob here
    By lilhawk2892 in forum C++ Programming
    Replies: 2
    Last Post: 09-19-2005, 10:12 AM