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

Managed C++/CLI

 
GeneralRe: Flash and MFC HELP! Pin
Christian Graus23-Jan-05 9:58
protectorChristian Graus23-Jan-05 9:58 
GeneralObject disposed in Finalize method Pin
Member 134623511-Jan-05 6:24
Member 134623511-Jan-05 6:24 
GeneralAccessing Unmanaged C++ from C# Pin
jstedman11-Jan-05 5:54
jstedman11-Jan-05 5:54 
Generalrtf help Pin
Mohammad Daba'an10-Jan-05 22:28
Mohammad Daba'an10-Jan-05 22:28 
GeneralRe: rtf help Pin
Christian Graus11-Jan-05 14:37
protectorChristian Graus11-Jan-05 14:37 
Generaladding to integers together... help please!!! Pin
alexy2u8-Jan-05 8:44
alexy2u8-Jan-05 8:44 
GeneralRe: adding to integers together... help please!!! Pin
Christian Graus8-Jan-05 16:00
protectorChristian Graus8-Jan-05 16:00 
GeneralRe: adding to integers together... help please!!! Pin
FayezElFar11-Jan-05 11:04
FayezElFar11-Jan-05 11:04 
Another, old school, method is using good ol' sprintf / atoi combo

int nNum1 = 1;
int nNum2 = 2;
char caTempBuf[10];

sprintf(caTempBuf, "%d%d", nNum1, nNum2); //concatination here
int nConcatinated_Number = atoi(caTempBuf);

that should work.




When the going gets tough... write a computer program to do the thing for you
GeneralRe: adding to integers together... help please!!! Pin
prophets_lie16-Jan-05 18:17
prophets_lie16-Jan-05 18:17 
GeneralRe: adding to integers together... help please!!! Pin
Anders Dalvander29-Jan-05 1:25
Anders Dalvander29-Jan-05 1:25 
Generalsetup wizard Pin
Boniolopez8-Jan-05 4:48
Boniolopez8-Jan-05 4:48 
GeneralC++ arrays Pin
Ail6-Jan-05 9:19
Ail6-Jan-05 9:19 
Generaloperator[] in 2.0 Pin
Yaakov Davis5-Jan-05 13:20
Yaakov Davis5-Jan-05 13:20 
GeneralRe: operator[] in 2.0 Pin
Bill Gafford19-Jan-05 9:46
Bill Gafford19-Jan-05 9:46 
GeneralDetecting the phone number from C++ Pin
Bharat Gidde5-Jan-05 6:20
Bharat Gidde5-Jan-05 6:20 
GeneralRe: Detecting the phone number from C++ Pin
Christian Graus5-Jan-05 11:45
protectorChristian Graus5-Jan-05 11:45 
GeneralRe: Detecting the phone number from C++ Pin
Maximilien6-Jan-05 9:42
Maximilien6-Jan-05 9:42 
GeneralMirror Text Pin
dado745-Jan-05 2:47
dado745-Jan-05 2:47 
GeneralRe: Mirror Text Pin
Christian Graus5-Jan-05 11:46
protectorChristian Graus5-Jan-05 11:46 
GeneralMCppWrapper example Pin
eusjmf4-Jan-05 7:54
eusjmf4-Jan-05 7:54 
GeneralRe: MCppWrapper example Pin
ursus zeta5-Jan-05 10:52
ursus zeta5-Jan-05 10:52 
GeneralRe: MCppWrapper example Pin
eusjmf6-Jan-05 3:53
eusjmf6-Jan-05 3:53 
Generalproblem with Application::CommonAppDataPath Pin
maos3-Jan-05 9:03
maos3-Jan-05 9:03 
GeneralNOTIFYICONDATA missing data Pin
cimnik02931-Dec-04 6:35
cimnik02931-Dec-04 6:35 
QuestionHow Create a Printer Port Monitor?? Pin
raf-sp30-Dec-04 7:39
raf-sp30-Dec-04 7:39 

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.