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

Managed C++/CLI

 
AnswerRe: opengl point selection Pin
El Corazon2-Mar-06 10:13
El Corazon2-Mar-06 10:13 
GeneralRe: opengl point selection Pin
Ingo2-Mar-06 23:08
Ingo2-Mar-06 23:08 
GeneralRe: opengl point selection Pin
El Corazon3-Mar-06 3:56
El Corazon3-Mar-06 3:56 
QuestionUsing app.config Pin
Red Stateler28-Feb-06 4:49
Red Stateler28-Feb-06 4:49 
AnswerRe: Using app.config Pin
George L. Jackson28-Feb-06 9:44
George L. Jackson28-Feb-06 9:44 
GeneralRe: Using app.config Pin
Red Stateler28-Feb-06 9:53
Red Stateler28-Feb-06 9:53 
Question[Message Deleted] Pin
Harrison Ford26-Feb-06 21:55
Harrison Ford26-Feb-06 21:55 
AnswerRe: How to convert a decimal value to a hexadecimal value? Pin
Cedric Moonen26-Feb-06 22:11
Cedric Moonen26-Feb-06 22:11 
The question makes non-sense. There is no such thing as decimal value or hexadecimal values. They are values only and this is their REPRESENTATION (so, how you print the values on the screen for example) that is either decimal or hexa.
Now, what you want to do exactly ? You have a string containing a decimal representation of a value and you want to convert it to an hexa string ? Or do you have a value and you want to print it in a string using its hexadecimal representation ?

Is it a managed question or a purely C++ question (then you are in the wrong forum). If its a C++ question, take a look at sprintf and the print format, you can do something like that:

int Value = 10;<br />
char HexaString[100];<br />
sprintf(HexaString,"%x",Value);

General[Message Deleted] Pin
Harrison Ford26-Feb-06 22:19
Harrison Ford26-Feb-06 22:19 
GeneralRe: How to convert an integer value to a hexadecimal value? Pin
Cedric Moonen26-Feb-06 22:24
Cedric Moonen26-Feb-06 22:24 
GeneralRe: How to convert an integer value to a hexadecimal value? Pin
toxcct27-Feb-06 0:04
toxcct27-Feb-06 0:04 
GeneralRe: How to convert an integer value to a hexadecimal value? Pin
Peter Charlesworth28-Feb-06 8:05
Peter Charlesworth28-Feb-06 8:05 
AnswerRe: [Message Deleted] Pin
Peter Charlesworth27-Feb-06 2:14
Peter Charlesworth27-Feb-06 2:14 
GeneralRe: [Message Deleted] Pin
toxcct27-Feb-06 6:23
toxcct27-Feb-06 6:23 
GeneralRe: [Message Deleted] Pin
Peter Charlesworth27-Feb-06 6:46
Peter Charlesworth27-Feb-06 6:46 
GeneralRe: [Message Deleted] Pin
toxcct27-Feb-06 6:47
toxcct27-Feb-06 6:47 
QuestionGet 3rd character. Pin
foolygoofy2626-Feb-06 9:21
foolygoofy2626-Feb-06 9:21 
AnswerRe: Get 3rd character. Pin
Christian Graus26-Feb-06 10:03
protectorChristian Graus26-Feb-06 10:03 
AnswerRe: Get 3rd character. Pin
Saksida Bojan28-Feb-06 6:30
Saksida Bojan28-Feb-06 6:30 
QuestionDAO in .NET application Pin
Ahmed Al-Lakani26-Feb-06 7:24
Ahmed Al-Lakani26-Feb-06 7:24 
QuestionExpose dll to VBA Pin
prrusa26-Feb-06 5:52
prrusa26-Feb-06 5:52 
Questionconsole screen size Pin
Peter Charlesworth26-Feb-06 5:42
Peter Charlesworth26-Feb-06 5:42 
AnswerRe: console screen size Pin
George L. Jackson26-Feb-06 11:57
George L. Jackson26-Feb-06 11:57 
GeneralRe: console screen size Pin
Peter Charlesworth26-Feb-06 12:06
Peter Charlesworth26-Feb-06 12:06 
GeneralRe: console screen size Pin
George L. Jackson27-Feb-06 1:10
George L. Jackson27-Feb-06 1:10 

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.