Click here to Skip to main content
15,897,371 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: WS_EX_COMPOSITED [modified] Pin
Californian219-Sep-07 6:06
Californian219-Sep-07 6:06 
Questiondata types conversion Pin
shpid3r18-Sep-07 7:56
shpid3r18-Sep-07 7:56 
AnswerRe: data types conversion Pin
DevMentor.org18-Sep-07 8:02
DevMentor.org18-Sep-07 8:02 
QuestionRe: data types conversion Pin
shpid3r18-Sep-07 8:34
shpid3r18-Sep-07 8:34 
AnswerRe: data types conversion Pin
DevMentor.org18-Sep-07 8:43
DevMentor.org18-Sep-07 8:43 
GeneralRe: data types conversion Pin
shpid3r18-Sep-07 9:04
shpid3r18-Sep-07 9:04 
QuestionRe: data types conversion Pin
shpid3r18-Sep-07 9:11
shpid3r18-Sep-07 9:11 
GeneralRe: data types conversion Pin
DevMentor.org18-Sep-07 9:30
DevMentor.org18-Sep-07 9:30 
you have to set the radix value, which would be 10 for decimal.
try int Radiux = 10;

also try not to hard-code values...how is buffer defined? if it's defined like an array, and not alloacted on the heap you might want to change your ocde to something like this.

char buffer[100] = {0};
const int Radiux = 10;
...
_ui64toa_s( GPSData.dwSatellitesInView,
            buffer, 
            sizeof(buffer),
            Radiux );


(*)The "={0}" is a quick way to zero out the array Big Grin | :-D

(*) if you use const int, the compiler is smart enough to replace put in the value (in this case 10) everwhere the variable show up, so no actual storage is required for the Radiux Wink | ;)

I hope this helps!!!



---
Yours Truly, The One and Only!
devmentor.org
Design, Code, Test, Debug

AnswerDWORD Solved. How about double and SYSTEMTIME [modified] Pin
shpid3r19-Sep-07 0:29
shpid3r19-Sep-07 0:29 
GeneralRe: DWORD Solved. How about double and SYSTEMTIME Pin
DevMentor.org19-Sep-07 8:52
DevMentor.org19-Sep-07 8:52 
AnswerAll Issues Solved. 10x for support Pin
shpid3r19-Sep-07 10:53
shpid3r19-Sep-07 10:53 
QuestionUsing Emoticons(Smilies) in Rich Text Box Pin
ddspliting18-Sep-07 7:23
ddspliting18-Sep-07 7:23 
AnswerRe: Using Emoticons(Smilies) in Rich Text Box Pin
Nathan Holt at EMOM18-Sep-07 7:35
Nathan Holt at EMOM18-Sep-07 7:35 
QuestionConvert Problem CString to double Pin
Andy20218-Sep-07 7:03
Andy20218-Sep-07 7:03 
AnswerRe: Convert Problem CString to double Pin
Chris Losinger18-Sep-07 7:12
professionalChris Losinger18-Sep-07 7:12 
AnswerRe: Convert Problem CString to double Pin
Maximilien18-Sep-07 7:13
Maximilien18-Sep-07 7:13 
AnswerRe: Convert Problem CString to double [modified] Pin
DevMentor.org18-Sep-07 8:08
DevMentor.org18-Sep-07 8:08 
AnswerRe: Convert Problem CString to double Pin
Mark Salsbery18-Sep-07 9:03
Mark Salsbery18-Sep-07 9:03 
Question[Winsock] Get the address of the internet connected NIC Pin
ioctl5118-Sep-07 5:32
ioctl5118-Sep-07 5:32 
AnswerRe: [Winsock] Get the address of the internet connected NIC Pin
DevMentor.org18-Sep-07 6:24
DevMentor.org18-Sep-07 6:24 
AnswerRe: [Winsock] Get the address of the internet connected NIC Pin
DevMentor.org18-Sep-07 6:37
DevMentor.org18-Sep-07 6:37 
GeneralRe: [Winsock] Get the address of the internet connected NIC Pin
ioctl5118-Sep-07 21:29
ioctl5118-Sep-07 21:29 
QuestionRead a string from registry Pin
john563218-Sep-07 4:51
john563218-Sep-07 4:51 
AnswerRe: Read a string from registry Pin
Mark Salsbery18-Sep-07 5:09
Mark Salsbery18-Sep-07 5:09 
GeneralRe: Read a string from registry Pin
led mike18-Sep-07 6:36
led mike18-Sep-07 6: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.