Associating a CComboBox with a CRadioButton option on a CTaskDialogDynamic create/destroy CComboBoxHow to copy CComboBox data to another CComboBox?CCombobox painting issueHiding Combo Items In CComboBoxCComboBox::GetLBText returns garbageCompareItem not called in class derived from CComboBoxSetCurSel for unsorted CComboBox not workingChange text and background of CComboBoxCComboBox DDX_CBString behavior confusingCheckDlgButton with CComboBox
Discontinuous Tube visualization
Project Euler # 25 The 1000 digit Fibonacci index
Why teach C using scanf without talking about command line arguments?
Who is Jambavan an incarnation of?
The most secure way to handle someone forgetting to verify their account?
Demographic consequences of closed loop reincarnation
How to get a type of "screech" on guitar
Draw parts of a split rectangle in a dashed/dotted style
Legendre Polynomial Integral over half space
Inscriptio Labyrinthica
Why is regex [0-9]0,2 not greedy in sed?
Inside Out and Back to Front
Authorship dispute on a paper that came out of a final report of a course?
What is this green alien supposed to be on the American covers of the "Hitchhiker's Guide to the Galaxy"?
When will the last unambiguous evidence of mankind disappear?
Was demon possession only a New Testament phenomenon?
How to tell readers that I know my story is factually incorrect?
Should I have one hand on the throttle during engine ignition?
"Je suis petite, moi?", purpose of the "moi"?
How was Luke's prosthetic hand in Episode V filmed?
Does unblocking power bar outlets through short extension cords increase fire risk?
Will copper pour help on my single-layer PCB?
Who determines when road center lines are solid or dashed?
Pauli exclusion principle - black holes
Associating a CComboBox with a CRadioButton option on a CTaskDialog
Dynamic create/destroy CComboBoxHow to copy CComboBox data to another CComboBox?CCombobox painting issueHiding Combo Items In CComboBoxCComboBox::GetLBText returns garbageCompareItem not called in class derived from CComboBoxSetCurSel for unsorted CComboBox not workingChange text and background of CComboBoxCComboBox DDX_CBString behavior confusingCheckDlgButton with CComboBox
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have been playing around with the CTaskDialog. At the moment I have this:

The code at the moment is quite simple:
CTaskDialog dlg(_T("Reminder 1.nnReminder 2."),
_T("Important! Please read!"),
_T("Reminder"), TDCBF_YES_BUTTON | TDCBF_NO_BUTTON);
dlg.SetMainIcon(TD_INFORMATION_ICON);
dlg.AddRadioButton(12345, _T("Delete reminder"));
dlg.AddRadioButton(12346, _T("Repeat reminder"));
dlg.SetFooterIcon(TD_INFORMATION_ICON);
dlg.SetFooterText(_T("This is footer text"));
dlg.DoModal();
I would like to get the Repeat reminder command line to have a drop-down combo associated with it so that the user can specify the number of weeks before repeating.
I don't know if this is possible with task dialog's.
mfc taskdialog
add a comment |
I have been playing around with the CTaskDialog. At the moment I have this:

The code at the moment is quite simple:
CTaskDialog dlg(_T("Reminder 1.nnReminder 2."),
_T("Important! Please read!"),
_T("Reminder"), TDCBF_YES_BUTTON | TDCBF_NO_BUTTON);
dlg.SetMainIcon(TD_INFORMATION_ICON);
dlg.AddRadioButton(12345, _T("Delete reminder"));
dlg.AddRadioButton(12346, _T("Repeat reminder"));
dlg.SetFooterIcon(TD_INFORMATION_ICON);
dlg.SetFooterText(_T("This is footer text"));
dlg.DoModal();
I would like to get the Repeat reminder command line to have a drop-down combo associated with it so that the user can specify the number of weeks before repeating.
I don't know if this is possible with task dialog's.
mfc taskdialog
1
I don't think you can do this. These Task Dialogs are pretty limited.
– Jabberwocky
Mar 26 at 13:38
@Jabberwocky Ok, thanks for confirming.
– Andrew Truckle
Mar 26 at 14:03
You can add a custom button or hyperlink to the dialog. On click show a popup menu to select the number of weeks. Just an idea. If you go so far it's propably the same effort as creating your own dialog which could have a better UX.
– zett42
Mar 26 at 22:52
1
@zett42 Actually the thought occurs to me to just have a few radio choices to repeat the reminder x weeks.
– Andrew Truckle
Mar 27 at 5:28
add a comment |
I have been playing around with the CTaskDialog. At the moment I have this:

The code at the moment is quite simple:
CTaskDialog dlg(_T("Reminder 1.nnReminder 2."),
_T("Important! Please read!"),
_T("Reminder"), TDCBF_YES_BUTTON | TDCBF_NO_BUTTON);
dlg.SetMainIcon(TD_INFORMATION_ICON);
dlg.AddRadioButton(12345, _T("Delete reminder"));
dlg.AddRadioButton(12346, _T("Repeat reminder"));
dlg.SetFooterIcon(TD_INFORMATION_ICON);
dlg.SetFooterText(_T("This is footer text"));
dlg.DoModal();
I would like to get the Repeat reminder command line to have a drop-down combo associated with it so that the user can specify the number of weeks before repeating.
I don't know if this is possible with task dialog's.
mfc taskdialog
I have been playing around with the CTaskDialog. At the moment I have this:

The code at the moment is quite simple:
CTaskDialog dlg(_T("Reminder 1.nnReminder 2."),
_T("Important! Please read!"),
_T("Reminder"), TDCBF_YES_BUTTON | TDCBF_NO_BUTTON);
dlg.SetMainIcon(TD_INFORMATION_ICON);
dlg.AddRadioButton(12345, _T("Delete reminder"));
dlg.AddRadioButton(12346, _T("Repeat reminder"));
dlg.SetFooterIcon(TD_INFORMATION_ICON);
dlg.SetFooterText(_T("This is footer text"));
dlg.DoModal();
I would like to get the Repeat reminder command line to have a drop-down combo associated with it so that the user can specify the number of weeks before repeating.
I don't know if this is possible with task dialog's.
mfc taskdialog
mfc taskdialog
asked Mar 26 at 11:12
Andrew TruckleAndrew Truckle
6,4576 gold badges26 silver badges59 bronze badges
6,4576 gold badges26 silver badges59 bronze badges
1
I don't think you can do this. These Task Dialogs are pretty limited.
– Jabberwocky
Mar 26 at 13:38
@Jabberwocky Ok, thanks for confirming.
– Andrew Truckle
Mar 26 at 14:03
You can add a custom button or hyperlink to the dialog. On click show a popup menu to select the number of weeks. Just an idea. If you go so far it's propably the same effort as creating your own dialog which could have a better UX.
– zett42
Mar 26 at 22:52
1
@zett42 Actually the thought occurs to me to just have a few radio choices to repeat the reminder x weeks.
– Andrew Truckle
Mar 27 at 5:28
add a comment |
1
I don't think you can do this. These Task Dialogs are pretty limited.
– Jabberwocky
Mar 26 at 13:38
@Jabberwocky Ok, thanks for confirming.
– Andrew Truckle
Mar 26 at 14:03
You can add a custom button or hyperlink to the dialog. On click show a popup menu to select the number of weeks. Just an idea. If you go so far it's propably the same effort as creating your own dialog which could have a better UX.
– zett42
Mar 26 at 22:52
1
@zett42 Actually the thought occurs to me to just have a few radio choices to repeat the reminder x weeks.
– Andrew Truckle
Mar 27 at 5:28
1
1
I don't think you can do this. These Task Dialogs are pretty limited.
– Jabberwocky
Mar 26 at 13:38
I don't think you can do this. These Task Dialogs are pretty limited.
– Jabberwocky
Mar 26 at 13:38
@Jabberwocky Ok, thanks for confirming.
– Andrew Truckle
Mar 26 at 14:03
@Jabberwocky Ok, thanks for confirming.
– Andrew Truckle
Mar 26 at 14:03
You can add a custom button or hyperlink to the dialog. On click show a popup menu to select the number of weeks. Just an idea. If you go so far it's propably the same effort as creating your own dialog which could have a better UX.
– zett42
Mar 26 at 22:52
You can add a custom button or hyperlink to the dialog. On click show a popup menu to select the number of weeks. Just an idea. If you go so far it's propably the same effort as creating your own dialog which could have a better UX.
– zett42
Mar 26 at 22:52
1
1
@zett42 Actually the thought occurs to me to just have a few radio choices to repeat the reminder x weeks.
– Andrew Truckle
Mar 27 at 5:28
@zett42 Actually the thought occurs to me to just have a few radio choices to repeat the reminder x weeks.
– Andrew Truckle
Mar 27 at 5:28
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55355750%2fassociating-a-ccombobox-with-a-cradiobutton-option-on-a-ctaskdialog%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55355750%2fassociating-a-ccombobox-with-a-cradiobutton-option-on-a-ctaskdialog%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
I don't think you can do this. These Task Dialogs are pretty limited.
– Jabberwocky
Mar 26 at 13:38
@Jabberwocky Ok, thanks for confirming.
– Andrew Truckle
Mar 26 at 14:03
You can add a custom button or hyperlink to the dialog. On click show a popup menu to select the number of weeks. Just an idea. If you go so far it's propably the same effort as creating your own dialog which could have a better UX.
– zett42
Mar 26 at 22:52
1
@zett42 Actually the thought occurs to me to just have a few radio choices to repeat the reminder x weeks.
– Andrew Truckle
Mar 27 at 5:28