0
votes
1answer
28 views

DataGridViewCheckBoxColumn - If checkBox checked issue

I have this code down below which should show messageBox when the checkbox in checkbox column is checked. It is test for me that I know that the row was really selected. If this would work I'm going ...
0
votes
1answer
51 views

Display textbox control when checkbox is checked

I have used the following JavaScript to display Two Textbox Controls with Calendar Extenders when CheckBox is checked. Otherwise, they will be hidden. (I hide the table row which contains Textbox ...
1
vote
1answer
48 views

WPF c# Checkbox clickable area modification - BATCH

I have about 3000 instances of checkboxes that are styled in a way which you can click the entire row and the state of the checkboxes will change. How do you modify the checkbox so that ONLY the box ...
1
vote
2answers
50 views

check box not working properly at page load

I have got problem with check-box to enable corresponding control next to it. My Requirement is at the page load we want to disable the all textboxes and dropdownlists by using checkbox if the ...
1
vote
3answers
55 views

How to get the value of isChecked property of a Checkbox in a data template

I have a class called People which has STRING name and STRING ImgPath. I make a LIST listOfPeople which is the source of icCheckBox. <DataTemplate x:Key="cBoxTemp"> <StackPanel ...
0
votes
2answers
56 views

Add checkboxes to a list of dynamically generated result

I have a list of result listed after extracting from a .txt file. I would like to add a checkbox behind every results listed. The following is my code: private void LoadFile() { ...
1
vote
3answers
79 views

Checkbox in an email

I am creating an email using the c# MailMessage and I am trying to add a checkbox that doesn't need to be clicked. The checkboxes will be used for a checklist of what to bring to an event (like a ...
1
vote
1answer
41 views

Checkbox doesn't read from settings correctly

Here's the issue: In my Settings I have two boolean called "check1_State" and "check2_State". They are supposed to control my two checkboxes whenever the form loads. Here's the code for when the ...
2
votes
1answer
51 views

Unable to Bind MVC Model on POST

I'm writing a view that displays a list of managers. The managers have checkboxes next to their name to select them to be removed from the manager list. I am having problems binding the form ...
3
votes
2answers
81 views

How to show a MessageBox with a checkbox?

I would like to create a MessageBox that has Yes/No buttons AND a checkbox. The application is a picture resizer and it will be re-sizing a number of pictures at once; in the process it will check if ...
1
vote
2answers
58 views

how to get row index of a row on second page of grid view

I have a grid view which stores cities with paging and has 10 cities per page. How can I get the row index of any row on the second page in asp.net? The name of the grid view is gdvCities. I have ...
0
votes
3answers
81 views

How to get a checkbox from ListViewItem in WPF?

I have a ListView that contains more than ListViewItem each ListViewItem contains a checkBox: <ListViewItem> <CheckBox IsChecked="{x:Null}" Name="myCheckBx1"> ...
1
vote
4answers
125 views

How to Uncheck Select All Checkbox when one checkbox is Unchecked

I have a checkbox named Select All. When I click this then all other check box inside my Gridview is Checked. But I want when anyone of the checkbox inside the grid will be unchecked then this Select ...
1
vote
3answers
110 views

Setting the value of an object's boolean in a list to true

So I have this class that allows me to check if a color has been selected or not: public class Colors { public bool mIsSelected { get; set; } public string mName { get; set; } } Before ...
1
vote
5answers
5k views

Programmatically click on a CheckBox

Is there a way to programmatically generate a click event on a CheckBox? I am looking for an equivalent to Button.PerformClick();

1 2 3 4 5 47
15 30 50 per page