Checkbox Checked problems in win32 api c++
up vote
0
down vote
favorite
I've this code done in c++ and I want to ask why when I press one CheckBox all of them change status.
Example:
CB1 = Checked
CB2 = UnChecked
CB1 = Press
CB1 = UnChecked
CB2 = Checked
I want just to make work one of them, not the two at the same time.
Here you have the code:
LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
switch (msg)
case WM_CREATE:
WS_CHILD
case WM_COMMAND:
BOOL checked = IsDlgButtonChecked(hwnd, 1);
if (checked)
CheckDlgButton(hwnd, 1, BST_UNCHECKED); //SetWindowText(hwnd, title or TEXT("algo");
else
CheckDlgButton(hwnd, 1, BST_CHECKED);
//action("chatlim", 150, 0, 0);
BOOL checked1 = IsDlgButtonChecked(hwnd, 2);
if (checked1)
CheckDlgButton(hwnd, 2, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 2, BST_CHECKED);
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
return DefWindowProc(hwnd, msg, wParam, lParam);
c++ api winapi checkbox
|
show 2 more comments
up vote
0
down vote
favorite
I've this code done in c++ and I want to ask why when I press one CheckBox all of them change status.
Example:
CB1 = Checked
CB2 = UnChecked
CB1 = Press
CB1 = UnChecked
CB2 = Checked
I want just to make work one of them, not the two at the same time.
Here you have the code:
LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
switch (msg)
case WM_CREATE:
WS_CHILD
case WM_COMMAND:
BOOL checked = IsDlgButtonChecked(hwnd, 1);
if (checked)
CheckDlgButton(hwnd, 1, BST_UNCHECKED); //SetWindowText(hwnd, title or TEXT("algo");
else
CheckDlgButton(hwnd, 1, BST_CHECKED);
//action("chatlim", 150, 0, 0);
BOOL checked1 = IsDlgButtonChecked(hwnd, 2);
if (checked1)
CheckDlgButton(hwnd, 2, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 2, BST_CHECKED);
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
return DefWindowProc(hwnd, msg, wParam, lParam);
c++ api winapi checkbox
4
You don't distinguish in the WM_OMMAND which one was clicked so when a WM_COMAND is received you change both hwnds.
– Jerry Jeremiah
Apr 1 '16 at 19:36
It's because, everytime you toggle both button states. No matter which one you press
– DimChtz
Apr 1 '16 at 19:36
Create your check box withBS_AUTOCHECKBOX
flag (instead ofBS_CHECKBOX
) to automatically put the check marks.
– Barmak Shemirani
Apr 1 '16 at 19:38
Jerry, How can I distinguish them?
– Onelio
Apr 1 '16 at 19:56
With BS_AUTOCHECKBOX I get Checked all of them except for the one that I want to check, his state never change(until I check another one)
– Onelio
Apr 1 '16 at 19:59
|
show 2 more comments
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I've this code done in c++ and I want to ask why when I press one CheckBox all of them change status.
Example:
CB1 = Checked
CB2 = UnChecked
CB1 = Press
CB1 = UnChecked
CB2 = Checked
I want just to make work one of them, not the two at the same time.
Here you have the code:
LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
switch (msg)
case WM_CREATE:
WS_CHILD
case WM_COMMAND:
BOOL checked = IsDlgButtonChecked(hwnd, 1);
if (checked)
CheckDlgButton(hwnd, 1, BST_UNCHECKED); //SetWindowText(hwnd, title or TEXT("algo");
else
CheckDlgButton(hwnd, 1, BST_CHECKED);
//action("chatlim", 150, 0, 0);
BOOL checked1 = IsDlgButtonChecked(hwnd, 2);
if (checked1)
CheckDlgButton(hwnd, 2, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 2, BST_CHECKED);
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
return DefWindowProc(hwnd, msg, wParam, lParam);
c++ api winapi checkbox
I've this code done in c++ and I want to ask why when I press one CheckBox all of them change status.
Example:
CB1 = Checked
CB2 = UnChecked
CB1 = Press
CB1 = UnChecked
CB2 = Checked
I want just to make work one of them, not the two at the same time.
Here you have the code:
LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
switch (msg)
case WM_CREATE:
WS_CHILD
case WM_COMMAND:
BOOL checked = IsDlgButtonChecked(hwnd, 1);
if (checked)
CheckDlgButton(hwnd, 1, BST_UNCHECKED); //SetWindowText(hwnd, title or TEXT("algo");
else
CheckDlgButton(hwnd, 1, BST_CHECKED);
//action("chatlim", 150, 0, 0);
BOOL checked1 = IsDlgButtonChecked(hwnd, 2);
if (checked1)
CheckDlgButton(hwnd, 2, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 2, BST_CHECKED);
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
return DefWindowProc(hwnd, msg, wParam, lParam);
c++ api winapi checkbox
c++ api winapi checkbox
asked Apr 1 '16 at 19:17
Onelio
98311
98311
4
You don't distinguish in the WM_OMMAND which one was clicked so when a WM_COMAND is received you change both hwnds.
– Jerry Jeremiah
Apr 1 '16 at 19:36
It's because, everytime you toggle both button states. No matter which one you press
– DimChtz
Apr 1 '16 at 19:36
Create your check box withBS_AUTOCHECKBOX
flag (instead ofBS_CHECKBOX
) to automatically put the check marks.
– Barmak Shemirani
Apr 1 '16 at 19:38
Jerry, How can I distinguish them?
– Onelio
Apr 1 '16 at 19:56
With BS_AUTOCHECKBOX I get Checked all of them except for the one that I want to check, his state never change(until I check another one)
– Onelio
Apr 1 '16 at 19:59
|
show 2 more comments
4
You don't distinguish in the WM_OMMAND which one was clicked so when a WM_COMAND is received you change both hwnds.
– Jerry Jeremiah
Apr 1 '16 at 19:36
It's because, everytime you toggle both button states. No matter which one you press
– DimChtz
Apr 1 '16 at 19:36
Create your check box withBS_AUTOCHECKBOX
flag (instead ofBS_CHECKBOX
) to automatically put the check marks.
– Barmak Shemirani
Apr 1 '16 at 19:38
Jerry, How can I distinguish them?
– Onelio
Apr 1 '16 at 19:56
With BS_AUTOCHECKBOX I get Checked all of them except for the one that I want to check, his state never change(until I check another one)
– Onelio
Apr 1 '16 at 19:59
4
4
You don't distinguish in the WM_OMMAND which one was clicked so when a WM_COMAND is received you change both hwnds.
– Jerry Jeremiah
Apr 1 '16 at 19:36
You don't distinguish in the WM_OMMAND which one was clicked so when a WM_COMAND is received you change both hwnds.
– Jerry Jeremiah
Apr 1 '16 at 19:36
It's because, everytime you toggle both button states. No matter which one you press
– DimChtz
Apr 1 '16 at 19:36
It's because, everytime you toggle both button states. No matter which one you press
– DimChtz
Apr 1 '16 at 19:36
Create your check box with
BS_AUTOCHECKBOX
flag (instead of BS_CHECKBOX
) to automatically put the check marks.– Barmak Shemirani
Apr 1 '16 at 19:38
Create your check box with
BS_AUTOCHECKBOX
flag (instead of BS_CHECKBOX
) to automatically put the check marks.– Barmak Shemirani
Apr 1 '16 at 19:38
Jerry, How can I distinguish them?
– Onelio
Apr 1 '16 at 19:56
Jerry, How can I distinguish them?
– Onelio
Apr 1 '16 at 19:56
With BS_AUTOCHECKBOX I get Checked all of them except for the one that I want to check, his state never change(until I check another one)
– Onelio
Apr 1 '16 at 19:59
With BS_AUTOCHECKBOX I get Checked all of them except for the one that I want to check, his state never change(until I check another one)
– Onelio
Apr 1 '16 at 19:59
|
show 2 more comments
2 Answers
2
active
oldest
votes
up vote
0
down vote
Fixed, Just need to use switch and case.
add a comment |
up vote
0
down vote
I will leave this code here just in case if someone will want to know how the author resolved that.
case WM_COMMAND:
switch (LOWORD(wParam))
case 1:
BOOL checked = IsDlgButtonChecked(hwnd, 1);
if (checked)
CheckDlgButton(hwnd, 1, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 1, BST_CHECKED);
break;
break;
case 2:
BOOL checked1 = IsDlgButtonChecked(hwnd, 2);
if (checked1)
CheckDlgButton(hwnd, 2, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 2, BST_CHECKED);
break;
break;
add a comment |
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%2f36364228%2fcheckbox-checked-problems-in-win32-api-c%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Fixed, Just need to use switch and case.
add a comment |
up vote
0
down vote
Fixed, Just need to use switch and case.
add a comment |
up vote
0
down vote
up vote
0
down vote
Fixed, Just need to use switch and case.
Fixed, Just need to use switch and case.
answered Apr 1 '16 at 22:30
Onelio
98311
98311
add a comment |
add a comment |
up vote
0
down vote
I will leave this code here just in case if someone will want to know how the author resolved that.
case WM_COMMAND:
switch (LOWORD(wParam))
case 1:
BOOL checked = IsDlgButtonChecked(hwnd, 1);
if (checked)
CheckDlgButton(hwnd, 1, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 1, BST_CHECKED);
break;
break;
case 2:
BOOL checked1 = IsDlgButtonChecked(hwnd, 2);
if (checked1)
CheckDlgButton(hwnd, 2, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 2, BST_CHECKED);
break;
break;
add a comment |
up vote
0
down vote
I will leave this code here just in case if someone will want to know how the author resolved that.
case WM_COMMAND:
switch (LOWORD(wParam))
case 1:
BOOL checked = IsDlgButtonChecked(hwnd, 1);
if (checked)
CheckDlgButton(hwnd, 1, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 1, BST_CHECKED);
break;
break;
case 2:
BOOL checked1 = IsDlgButtonChecked(hwnd, 2);
if (checked1)
CheckDlgButton(hwnd, 2, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 2, BST_CHECKED);
break;
break;
add a comment |
up vote
0
down vote
up vote
0
down vote
I will leave this code here just in case if someone will want to know how the author resolved that.
case WM_COMMAND:
switch (LOWORD(wParam))
case 1:
BOOL checked = IsDlgButtonChecked(hwnd, 1);
if (checked)
CheckDlgButton(hwnd, 1, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 1, BST_CHECKED);
break;
break;
case 2:
BOOL checked1 = IsDlgButtonChecked(hwnd, 2);
if (checked1)
CheckDlgButton(hwnd, 2, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 2, BST_CHECKED);
break;
break;
I will leave this code here just in case if someone will want to know how the author resolved that.
case WM_COMMAND:
switch (LOWORD(wParam))
case 1:
BOOL checked = IsDlgButtonChecked(hwnd, 1);
if (checked)
CheckDlgButton(hwnd, 1, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 1, BST_CHECKED);
break;
break;
case 2:
BOOL checked1 = IsDlgButtonChecked(hwnd, 2);
if (checked1)
CheckDlgButton(hwnd, 2, BST_UNCHECKED);
else
CheckDlgButton(hwnd, 2, BST_CHECKED);
break;
break;
answered Nov 11 at 1:25
Ruslan Muhamadiarov
157
157
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f36364228%2fcheckbox-checked-problems-in-win32-api-c%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
4
You don't distinguish in the WM_OMMAND which one was clicked so when a WM_COMAND is received you change both hwnds.
– Jerry Jeremiah
Apr 1 '16 at 19:36
It's because, everytime you toggle both button states. No matter which one you press
– DimChtz
Apr 1 '16 at 19:36
Create your check box with
BS_AUTOCHECKBOX
flag (instead ofBS_CHECKBOX
) to automatically put the check marks.– Barmak Shemirani
Apr 1 '16 at 19:38
Jerry, How can I distinguish them?
– Onelio
Apr 1 '16 at 19:56
With BS_AUTOCHECKBOX I get Checked all of them except for the one that I want to check, his state never change(until I check another one)
– Onelio
Apr 1 '16 at 19:59