Click here to Skip to main content
15,923,087 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionSaving multiple RTFs to string for storage? Pin
Kayembi9-Oct-03 7:27
Kayembi9-Oct-03 7:27 
AnswerRe: Saving multiple RTFs to string for storage? Pin
John M. Drescher9-Oct-03 7:51
John M. Drescher9-Oct-03 7:51 
Questionmfc42u.lib ? Pin
spiritualfields9-Oct-03 5:39
spiritualfields9-Oct-03 5:39 
AnswerRe: mfc42u.lib ? Pin
W. Hammer -sledge-9-Oct-03 6:04
W. Hammer -sledge-9-Oct-03 6:04 
AnswerRe: mfc42u.lib ? Pin
Garth J Lancaster9-Oct-03 17:49
professionalGarth J Lancaster9-Oct-03 17:49 
AnswerRe: mfc42u.lib ? Pin
speedo21shree14-Oct-10 23:11
speedo21shree14-Oct-10 23:11 
GeneralC to C++ link error Pin
jimNLX9-Oct-03 5:05
jimNLX9-Oct-03 5:05 
GeneralRe: C to C++ link error Pin
Joaquín M López Muñoz9-Oct-03 7:51
Joaquín M López Muñoz9-Oct-03 7:51 
GeneralRe: C to C++ link error Pin
jimNLX9-Oct-03 7:57
jimNLX9-Oct-03 7:57 
GeneralRe: C to C++ link error Pin
jimNLX9-Oct-03 8:02
jimNLX9-Oct-03 8:02 
GeneralRe: C to C++ link error Pin
Joaquín M López Muñoz9-Oct-03 8:06
Joaquín M López Muñoz9-Oct-03 8:06 
GeneralRe: C to C++ link error Pin
jimNLX9-Oct-03 8:16
jimNLX9-Oct-03 8:16 
GeneralRe: C to C++ link error Pin
Joaquín M López Muñoz9-Oct-03 8:24
Joaquín M López Muñoz9-Oct-03 8:24 
Generalresizing of dialog boxes Pin
b_girl9-Oct-03 4:06
b_girl9-Oct-03 4:06 
GeneralRe: resizing of dialog boxes Pin
Ravi Bhavnani9-Oct-03 7:36
professionalRavi Bhavnani9-Oct-03 7:36 
GeneralRe: resizing of dialog boxes Pin
b_girl9-Oct-03 8:17
b_girl9-Oct-03 8:17 
Generalchanging language Pin
dudic9-Oct-03 3:44
dudic9-Oct-03 3:44 
GeneralRe: changing language Pin
Atif Mushtaq10-Oct-03 0:12
Atif Mushtaq10-Oct-03 0:12 
Generaldetecting network computers Pin
YanivNahum9-Oct-03 2:36
YanivNahum9-Oct-03 2:36 
GeneralRe: detecting network computers Pin
David Crow9-Oct-03 3:13
David Crow9-Oct-03 3:13 
GeneralListbox help Pin
NewHSKid9-Oct-03 1:41
NewHSKid9-Oct-03 1:41 
GeneralRe: Listbox help Pin
jhwurmbach9-Oct-03 1:57
jhwurmbach9-Oct-03 1:57 
GeneralRe: Listbox help Pin
Steve S9-Oct-03 2:02
Steve S9-Oct-03 2:02 
You could do it in two stages, format the hex value, then take that as further input to another Format call, using %8.8s (pad on right) or %-8.8s (pad on left) as the format string second time around

eg
testStr1.Format("%03X",myString);
testStr2.Format("%03X",myString2);
Str.Format("%10.10s%10.10s",testStr1,testStr2);

Steve S
I was 15 once. It was a long time ago.
Today, it's 22 years since I started working full-time in IT.
GeneralRe: Listbox help Pin
Steve S9-Oct-03 2:05
Steve S9-Oct-03 2:05 
QuestionVector inside MFC app? Pin
Zizilamoroso9-Oct-03 1:00
Zizilamoroso9-Oct-03 1:00 

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.