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

Managed C++/CLI

 
GeneralRe: passing a path (ie. c:\thisfolder\thisfile.txt) to ShellExecute... Pin
Mark Salsbery2-Jan-08 7:49
Mark Salsbery2-Jan-08 7:49 
GeneralCANNOT add new database in C++ 2008 (bug BY DESIGN!) Pin
Palavos1-Jan-08 22:07
Palavos1-Jan-08 22:07 
GeneralRe: CANNOT add new database in C++ 2008 (bug BY DESIGN!) Pin
Paul Conrad2-Jan-08 6:26
professionalPaul Conrad2-Jan-08 6:26 
GeneralAbout exe file Pin
minihotto1-Jan-08 18:01
minihotto1-Jan-08 18:01 
GeneralRe: About exe file Pin
led mike2-Jan-08 5:08
led mike2-Jan-08 5:08 
GeneralRe: About exe file Pin
uusheikh8-Jan-08 20:45
uusheikh8-Jan-08 20:45 
GeneralRead a file hosted on server Pin
CodeItWell29-Dec-07 11:14
CodeItWell29-Dec-07 11:14 
GeneralGraphical Interface Program in C ...Having Error ...Please Help Pin
codingrocks27-Dec-07 22:57
codingrocks27-Dec-07 22:57 
I'm beginner for graphical prog. in C++,

#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>

int main(void)
{
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;

/* initialize graphics mode */
initgraph(&gdriver, &gmode, "");

/* read result of initialization */
errorcode = graphresult();

if (errorcode != grOk) /* an error occurred */
{
printf("Graphics error: %s\n", grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1); /* return with error code */
}

/* draw a line */
line(0, 0, getmaxx(), getmaxy());

/* clean up */
getch();
closegraph();
return 0;
}

But this programme show error while linking after compilation,
like, undefined symbol initgraph in module <prog. name.cpp="">
undefined symbol line in module <prog. name.cpp="">
undefined symbol graphresult in module <prog. name.cpp="">

Please someone help me in compiling and running it successfully.....Please

Thanks in Advance...

SAJAN A PILLAI

C#.NET Programmer
TELESOFT INDIA PVT LTD...
BANGALORE

"Winners don't do different things. They do things differently. ...

GeneralRe: Graphical Interface Program in C ...Having Error ...Please Help Pin
CPallini28-Dec-07 10:53
mveCPallini28-Dec-07 10:53 
QuestionProperties to Property Sheet ? Pin
W Balboos, GHB27-Dec-07 3:56
W Balboos, GHB27-Dec-07 3:56 
QuestionHow to copy winform from one project to another project Pin
s196675m26-Dec-07 12:37
s196675m26-Dec-07 12:37 
AnswerRe: How to copy winform from one project to another project Pin
teejayem27-Dec-07 3:26
teejayem27-Dec-07 3:26 
GeneralWindows Xp Menu Pin
mikobi26-Dec-07 1:11
mikobi26-Dec-07 1:11 
GeneralFile Handling Pin
Sangeetha_J26-Dec-07 0:55
Sangeetha_J26-Dec-07 0:55 
GeneralRe: File Handling Pin
earlgraham4-Jan-08 7:05
earlgraham4-Jan-08 7:05 
Generalcalling one winform from another winform problem Pin
_tasleem20-Dec-07 6:17
_tasleem20-Dec-07 6:17 
GeneralRe: calling one winform from another winform problem Pin
Christian Graus22-Dec-07 19:22
protectorChristian Graus22-Dec-07 19:22 
QuestionCan't figure out C4430 errors ... Pin
peepsicola20-Dec-07 5:32
peepsicola20-Dec-07 5:32 
GeneralRe: Can't figure out C4430 errors ... Pin
Mark Salsbery20-Dec-07 6:46
Mark Salsbery20-Dec-07 6:46 
GeneralRe: Can't figure out C4430 errors ... Pin
peepsicola20-Dec-07 7:25
peepsicola20-Dec-07 7:25 
GeneralRe: Can't figure out C4430 errors ... Pin
Mark Salsbery20-Dec-07 7:32
Mark Salsbery20-Dec-07 7:32 
GeneralRe: Can't figure out C4430 errors ... Pin
Christian Graus22-Dec-07 19:01
protectorChristian Graus22-Dec-07 19:01 
GeneralRe: Can't figure out C4430 errors ... Pin
Mark Salsbery23-Dec-07 6:28
Mark Salsbery23-Dec-07 6:28 
QuestionMarshalling from managed to unmanaged types Pin
kushu20-Dec-07 1:02
kushu20-Dec-07 1:02 
GeneralRe: Marshalling from managed to unmanaged types Pin
Mark Salsbery20-Dec-07 8:29
Mark Salsbery20-Dec-07 8:29 

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.