Click here to Skip to main content
15,900,664 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: Visual Studio 2005 Pin
Anonymous25-Aug-05 1:25
Anonymous25-Aug-05 1:25 
GeneralRe: Visual Studio 2005 Pin
toxcct30-Aug-05 4:07
toxcct30-Aug-05 4:07 
GeneralCobList deleting last element asserts!!! HELP ME Pin
dharani22-Aug-05 0:16
dharani22-Aug-05 0:16 
GeneralRe: CobList deleting last element asserts!!! HELP ME Pin
Christian Graus22-Aug-05 10:49
protectorChristian Graus22-Aug-05 10:49 
GeneralNeed to generate the inner polygon with given tolerance Pin
uma_kanth_k21-Aug-05 22:01
uma_kanth_k21-Aug-05 22:01 
GeneralRe: Need to generate the inner polygon with given tolerance Pin
dharani22-Aug-05 1:55
dharani22-Aug-05 1:55 
Generalhelp me pls Pin
neodeaths21-Aug-05 5:16
neodeaths21-Aug-05 5:16 
GeneralRe: help me pls Pin
_eulogy_21-Aug-05 11:57
_eulogy_21-Aug-05 11:57 
Hi!
I'm not quite sure what you're asking about, but if it is how to use include then I'll give it a shot.

#include is a preprocessing directive, that means that it's performed before the code is compiled (in a separate pass). When you use #include, the preprocessor will behave as though it copies the contents of the file you want to include into the place where the #include directive was (some preprocessors might create a new file and paste it all together, while some might do it in memory etc.). There are two different ways to use #include. The first one is with angle brackets and the second one is with quotation marks. The difference between these is where they search for the files to include.

#include <stdio.h> // Include an include file that usually came with the compiler
#include "myinclude.h" // Include a file in the current directory

When using angle brackets the preprocessor will search for the file among the include files that came with the compiler or other directories you have added to its search list. The quotation mark on the other hand will make the preprocessor first search through the current directory (project directory) and if it didn't find any files who matched the name, it will search through the same directories as if you had used angle brackets.
GeneralRe: help me pls Pin
toxcct21-Aug-05 20:31
toxcct21-Aug-05 20:31 
GeneralC++/CLI linked with win32 dll's in C# (msvs2005) Pin
_eulogy_20-Aug-05 1:40
_eulogy_20-Aug-05 1:40 
GeneralRe: C++/CLI linked with win32 dll's in C# (msvs2005) Pin
ursus zeta21-Aug-05 10:06
ursus zeta21-Aug-05 10:06 
GeneralRe: C++/CLI linked with win32 dll's in C# (msvs2005) Pin
Anonymous21-Aug-05 11:35
Anonymous21-Aug-05 11:35 
GeneralThat was me :P Pin
_eulogy_21-Aug-05 11:38
_eulogy_21-Aug-05 11:38 
GeneralI know,... Pin
ursus zeta23-Aug-05 9:58
ursus zeta23-Aug-05 9:58 
QuestionWhat is shared Pin
Umair Ahmad khan19-Aug-05 17:51
Umair Ahmad khan19-Aug-05 17:51 
GeneralChanging the row color of a dataGrid Pin
timbo_mobo18-Aug-05 17:47
timbo_mobo18-Aug-05 17:47 
GeneralRe: Changing the row color of a dataGrid Pin
Saksida Bojan19-Aug-05 11:04
Saksida Bojan19-Aug-05 11:04 
Generalincluding pthread.h Pin
Geilkonijn18-Aug-05 7:25
Geilkonijn18-Aug-05 7:25 
GeneralRe: including pthread.h Pin
try8818-Aug-05 8:08
try8818-Aug-05 8:08 
GeneralRe: including pthread.h Pin
Christian Graus18-Aug-05 17:59
protectorChristian Graus18-Aug-05 17:59 
GeneralRe: including pthread.h Pin
Geilkonijn19-Aug-05 4:23
Geilkonijn19-Aug-05 4:23 
GeneralRe: including pthread.h Pin
S. Senthil Kumar19-Aug-05 8:13
S. Senthil Kumar19-Aug-05 8:13 
QuestionExcel Program in c++? Pin
Anonymous17-Aug-05 16:35
Anonymous17-Aug-05 16:35 
AnswerRe: Excel Program in c++? Pin
Christian Graus17-Aug-05 17:08
protectorChristian Graus17-Aug-05 17:08 
AnswerRe: Excel Program in c++? Pin
Tim Zorn21-Aug-05 5:52
Tim Zorn21-Aug-05 5:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.