Format specifier for WORD
-
hi, i want to know format specifier for WORD and BYTE. Example: int nValue; CString str; str.Format("%d",nValue); afxMessageBox(str); %d for integer,same way i want to know for WORD and BTYE. Thanks in before James:rose:
-
hi, i want to know format specifier for WORD and BYTE. Example: int nValue; CString str; str.Format("%d",nValue); afxMessageBox(str); %d for integer,same way i want to know for WORD and BTYE. Thanks in before James:rose:
A WORD is a 16 bit unsigned integer. use %u for that Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
-
hi, i want to know format specifier for WORD and BYTE. Example: int nValue; CString str; str.Format("%d",nValue); afxMessageBox(str); %d for integer,same way i want to know for WORD and BTYE. Thanks in before James:rose: