Click here to Skip to main content
15,892,298 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Problem in Accessing CStringArray object, Pin
aks.16-Oct-07 3:24
aks.16-Oct-07 3:24 
GeneralRe: Problem in Accessing CStringArray object, Pin
Hadi Dayvary16-Oct-07 4:00
professionalHadi Dayvary16-Oct-07 4:00 
QuestionRe: Problem in Accessing CStringArray object, Pin
David Crow16-Oct-07 4:06
David Crow16-Oct-07 4:06 
AnswerRe: Problem in Accessing CStringArray object, Pin
Hadi Dayvary16-Oct-07 4:17
professionalHadi Dayvary16-Oct-07 4:17 
GeneralRe: Problem in Accessing CStringArray object, Pin
David Crow16-Oct-07 4:25
David Crow16-Oct-07 4:25 
GeneralRe: Problem in Accessing CStringArray object, Pin
ThatsAlok17-Oct-07 2:11
ThatsAlok17-Oct-07 2:11 
Questionhow to change the font of property page Pin
rajneshmalik15-Oct-07 22:49
rajneshmalik15-Oct-07 22:49 
AnswerRe: how to change the font of property page Pin
Nelek15-Oct-07 23:13
protectorNelek15-Oct-07 23:13 
Try to put all IDs in an contigous area and make a loop. I mean:

#define IDD_PROPERTY_SHEET 10000
#define IDD_CTRL_BUTTON1 IDD_PROPERTY_SHEET + 1
...
#define IDD_CTRL_EDIT_N IDD_PROPERTY_SHEET + m (from buttons) + n (from edits)


and then use a for:

for (int i = IDD_PROPERTY_SHEET; i <= IDD_CTRL_EDIT_N; i++)
this->GetDlgItem (i)->SetFont (font_size);

Hope it helps

Greetings.

--------
M.D.V.

If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?

Help me to understand what I'm saying, and I'll explain it better to you

Wink | ;)

AnswerRe: how to change the font of property page Pin
Hadi Dayvary15-Oct-07 23:49
professionalHadi Dayvary15-Oct-07 23:49 
AnswerRe: how to change the font of property page Pin
Mark Salsbery16-Oct-07 5:27
Mark Salsbery16-Oct-07 5:27 
QuestionSubClass all buttons of aprogram Pin
Hadi Dayvary15-Oct-07 22:34
professionalHadi Dayvary15-Oct-07 22:34 
AnswerRe: SubClass all buttons of aprogram Pin
Anand Todkar15-Oct-07 23:22
Anand Todkar15-Oct-07 23:22 
GeneralRe: SubClass all buttons of aprogram Pin
Hadi Dayvary15-Oct-07 23:43
professionalHadi Dayvary15-Oct-07 23:43 
GeneralRe: SubClass all buttons of aprogram Pin
_AnsHUMAN_ 16-Oct-07 2:57
_AnsHUMAN_ 16-Oct-07 2:57 
AnswerRe: SubClass all buttons of aprogram Pin
Naveen16-Oct-07 3:38
Naveen16-Oct-07 3:38 
QuestionDisplaying WChar string in non-Unicode Project. Pin
nilesh.gawade15-Oct-07 22:15
nilesh.gawade15-Oct-07 22:15 
AnswerRe: Displaying WChar string in non-Unicode Project. Pin
Naveen15-Oct-07 23:16
Naveen15-Oct-07 23:16 
QuestionRe: Displaying WChar string in non-Unicode Project. Pin
nilesh.gawade16-Oct-07 0:22
nilesh.gawade16-Oct-07 0:22 
AnswerRe: Displaying WChar string in non-Unicode Project. Pin
Naveen16-Oct-07 14:08
Naveen16-Oct-07 14:08 
QuestionRe: Displaying WChar string in non-Unicode Project. Pin
nilesh.gawade16-Oct-07 17:14
nilesh.gawade16-Oct-07 17:14 
AnswerRe: Displaying WChar string in non-Unicode Project. Pin
Naveen16-Oct-07 17:51
Naveen16-Oct-07 17:51 
GeneralRe: Displaying WChar string in non-Unicode Project. Pin
nilesh.gawade16-Oct-07 18:03
nilesh.gawade16-Oct-07 18:03 
QuestionRe: Displaying WChar string in non-Unicode Project. Pin
nilesh.gawade16-Oct-07 18:28
nilesh.gawade16-Oct-07 18:28 
AnswerRe: Displaying WChar string in non-Unicode Project. Pin
Naveen16-Oct-07 21:58
Naveen16-Oct-07 21:58 
QuestionRe: Displaying WChar string in non-Unicode Project. Pin
nilesh.gawade17-Oct-07 3:08
nilesh.gawade17-Oct-07 3:08 

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.