|
> .. In the input of plain text, if the input data is less than 8 bits, it will be compensated by 0. How to implement such code ...
-------------------------------------------------
You are using CString, right, you can use Format method, for example:
int nABC = 2;
CString strABC;
strABC.Format ("% 08d", nABC); |
|