Click here to Skip to main content
15,896,063 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: #pragma comment lib Pin
George_George12-Apr-08 21:36
George_George12-Apr-08 21:36 
GeneralStackWalk 32 bit Version of StakWalk64 Pin
ForNow12-Apr-08 16:17
ForNow12-Apr-08 16:17 
GeneralRe: StackWalk 32 bit Version of StakWalk64 Pin
Randor 12-Apr-08 19:48
professional Randor 12-Apr-08 19:48 
GeneralRe: StackWalk 32 bit Version of StakWalk64 Pin
ForNow12-Apr-08 20:00
ForNow12-Apr-08 20:00 
GeneralRe: StackWalk 32 bit Version of StakWalk64 Pin
Randor 12-Apr-08 20:38
professional Randor 12-Apr-08 20:38 
GeneralRe: StackWalk 32 bit Version of StakWalk64 Pin
ForNow12-Apr-08 21:09
ForNow12-Apr-08 21:09 
QuestionA question related sprintf function, formatting an ASCII val to hex[modified] Pin
Mushtaque Nizamani12-Apr-08 15:55
Mushtaque Nizamani12-Apr-08 15:55 
GeneralRe: A question related sprintf function, formatting an ASCII val to he Pin
Randor 12-Apr-08 19:39
professional Randor 12-Apr-08 19:39 
The problem is with your understanding. The ASCII is a 7 bit character encoding (2^7=128). You can only pass character values within the range of 0-127 and have them correctly map to proper hexadecimal values. The character you are passing is beyond the range of ASCII and is determined by the operating systems code page and character sets and internationalization.

Essentially 'ø' does not equal 0xf8. But rather depending on the localization 0xf8 == SomeCharacter.

http://en.wikipedia.org/wiki/ASCII[^]
http://en.wikipedia.org/wiki/Code_page[^]
http://msdn2.microsoft.com/en-us/library/ms776463(vs.85).aspx[^]
http://msdn2.microsoft.com/en-us/library/06b9yaeb(VS.71).aspx[^]

The concept of hexadecimal conversion is based soley on numerics not characters. The fact that you can successfully convert ASCII causes an informal fallacy.

Best Wishes,
-David Delaune
GeneralRe: A question related sprintf function, formatting an ASCII val to he Pin
Mushtaque Nizamani12-Apr-08 20:01
Mushtaque Nizamani12-Apr-08 20:01 
QuestionHow "bump a line down" in the console? Pin
mwholt12-Apr-08 9:48
mwholt12-Apr-08 9:48 
General"Data Source Name Too Long" Pin
Joseph Marzbani12-Apr-08 7:36
Joseph Marzbani12-Apr-08 7:36 
GeneralRe: "Data Source Name Too Long" Pin
ftbk12-Apr-08 7:41
ftbk12-Apr-08 7:41 
GeneralRe: "Data Source Name Too Long" [modified] Pin
Joseph Marzbani12-Apr-08 7:48
Joseph Marzbani12-Apr-08 7:48 
QuestionRe: "Data Source Name Too Long" Pin
David Crow14-Apr-08 4:46
David Crow14-Apr-08 4:46 
GeneralOnNewWindow2 on multithread Pin
ftbk12-Apr-08 6:26
ftbk12-Apr-08 6:26 
QuestionCan I set CRecordset::m_pDatabase explicitly? Pin
Joseph Marzbani12-Apr-08 6:04
Joseph Marzbani12-Apr-08 6:04 
AnswerRe: Can I set CRecordset::m_pDatabase explicitly? Pin
Mark Salsbery12-Apr-08 7:25
Mark Salsbery12-Apr-08 7:25 
GeneralRe: Can I set CRecordset::m_pDatabase explicitly? Pin
Joseph Marzbani12-Apr-08 7:46
Joseph Marzbani12-Apr-08 7:46 
GeneralRe: Can I set CRecordset::m_pDatabase explicitly? Pin
Mark Salsbery12-Apr-08 7:51
Mark Salsbery12-Apr-08 7:51 
QuestionTo catch all possible exceptions Pin
Mushtaque Nizamani12-Apr-08 3:03
Mushtaque Nizamani12-Apr-08 3:03 
QuestionRe: To catch all possible exceptions Pin
CPallini12-Apr-08 3:47
mveCPallini12-Apr-08 3:47 
GeneralRe: To catch all possible exceptions Pin
Luc Pattyn12-Apr-08 4:12
sitebuilderLuc Pattyn12-Apr-08 4:12 
GeneralRe: To catch all possible exceptions Pin
Mark Salsbery12-Apr-08 4:14
Mark Salsbery12-Apr-08 4:14 
GeneralRe: To catch all possible exceptions Pin
Luc Pattyn12-Apr-08 4:23
sitebuilderLuc Pattyn12-Apr-08 4:23 
GeneralRe: To catch all possible exceptions Pin
CPallini12-Apr-08 4:25
mveCPallini12-Apr-08 4:25 

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.