Hi
How do I format a type defined as:
typedef UINT8 A[248];
into a CString to display it in a MessageBox in CE?
Thanks
This is a discussion on Formatting CStrings within the C++ Programming forums, part of the General Programming Boards category; Hi How do I format a type defined as: typedef UINT8 A[248]; into a CString to display it in a ...
Hi
How do I format a type defined as:
typedef UINT8 A[248];
into a CString to display it in a MessageBox in CE?
Thanks
ggCode:A a = "Hello World"; CString str; str.Format(L"%S", a);
thanks - got it