Click here to Skip to main content
16,005,141 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: [.net] catching an exception from an unmanged DLL Pin
Saksida Bojan13-Oct-05 8:22
Saksida Bojan13-Oct-05 8:22 
GeneralRe: [.net] catching an exception from an unmanged DLL Pin
Praios14-Oct-05 2:54
Praios14-Oct-05 2:54 
Questionneed help please Pin
10-Oct-05 11:21
suss10-Oct-05 11:21 
AnswerRe: need help please Pin
Christian Graus10-Oct-05 12:27
protectorChristian Graus10-Oct-05 12:27 
GeneralRe: need help please Pin
linuxadict10-Oct-05 18:42
linuxadict10-Oct-05 18:42 
GeneralRe: need help please Pin
Christian Graus11-Oct-05 4:11
protectorChristian Graus11-Oct-05 4:11 
AnswerRe: need help please Pin
Christian Graus16-Oct-05 9:42
protectorChristian Graus16-Oct-05 9:42 
QuestionProblems when drawing a font with OpenGL Pin
Alex Cutovoi10-Oct-05 6:31
Alex Cutovoi10-Oct-05 6:31 
Hi for all

Fellows, in my application I'm drawing a font(arial, size: 50).
When the font is displayed their appearance is not so good, it seems that some parts of letters are vertically cutted.
I've put the glHint function, like this:
glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
And this is my method that draws the font:
void ImprimeTexto(unsigned int iFont, const char* cValue)
{
if(iFont == 0) MessageBox(0,"Fodeu", "tela",0);
glPushAttrib(GL_LIST_BIT);
glHint(GL_PERSPECTIVE_CORRECTION_HINT,GL_NICEST);
glListBase(iFont - 32);
glCallLists(strlen(cValue), GL_UNSIGNED_BYTE, cValue);
glPopAttrib();
}
My screen resolution is 1024x768.

I don't know what's going on, anyone can help me?
QuestionScreen capture in C++ Pin
Alex Cutovoi10-Oct-05 6:23
Alex Cutovoi10-Oct-05 6:23 
AnswerRe: Screen capture in C++ Pin
John M. Drescher10-Oct-05 6:55
John M. Drescher10-Oct-05 6:55 
AnswerRe: Screen capture in C++ Pin
John M. Drescher10-Oct-05 7:07
John M. Drescher10-Oct-05 7:07 
GeneralRe: Screen capture in C++ Pin
Alex Cutovoi10-Oct-05 8:14
Alex Cutovoi10-Oct-05 8:14 
GeneralRe: Screen capture in C++ Pin
Christian Graus10-Oct-05 8:43
protectorChristian Graus10-Oct-05 8:43 
GeneralRe: Screen capture in C++ Pin
Alex Cutovoi10-Oct-05 12:07
Alex Cutovoi10-Oct-05 12:07 
GeneralRe: Screen capture in C++ Pin
Christian Graus10-Oct-05 12:26
protectorChristian Graus10-Oct-05 12:26 
GeneralRe: Screen capture in C++ Pin
John M. Drescher10-Oct-05 8:44
John M. Drescher10-Oct-05 8:44 
GeneralRe: Screen capture in C++ Pin
Alex Cutovoi11-Oct-05 3:02
Alex Cutovoi11-Oct-05 3:02 
QuestionHow to search for some strings in a string? Pin
Jacky Tsee9-Oct-05 18:41
Jacky Tsee9-Oct-05 18:41 
AnswerRe: How to search for some strings in a string? Pin
Lyd Fab9-Oct-05 23:00
Lyd Fab9-Oct-05 23:00 
GeneralRe: How to search for some strings in a string? Pin
Jacky Tsee10-Oct-05 4:25
Jacky Tsee10-Oct-05 4:25 
GeneralRe: How to search for some strings in a string? Pin
Johann Gerell12-Oct-05 1:02
Johann Gerell12-Oct-05 1:02 
QuestionC++ UDP Tutorial Pin
JBAK_CP9-Oct-05 13:38
JBAK_CP9-Oct-05 13:38 
Questionheeeeelp Pin
linuxadict9-Oct-05 11:49
linuxadict9-Oct-05 11:49 
AnswerRe: heeeeelp Pin
Christian Graus11-Oct-05 11:09
protectorChristian Graus11-Oct-05 11:09 
QuestionUsing GDI+ to apply image effects Pin
ben090908-Oct-05 16:36
ben090908-Oct-05 16:36 

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.