2
I need to program in a single check-box, so when it is "marked" select all my files present in a checklistbox and "unchecked" the reverse.
I created a check-box in my 'mark/deselect all' application, which I need when checking it to select all my collaborators that I display in a checkbox below and when unchecking it, to deselect them flags of all of them from that same checklistbox.
I started with something like this:
if (checkBox1.Checked == true)
foreach (String Arquivo in ck_Colaboradores.CheckedItems)
{
}
else if(checkBox1.Checked == false)
foreach (String Arquivo in ck_Colaboradores.CheckedItems)
{
}
could improve the question a little with more details ?
– Marco Souza
Of course @Marconciliosouza , I created a checkbox in my application 'mark/deselect all', I need to mark it and select all my collaborators I bring in a checklist box below and uncheck it to uncheck the flags of all of them in that same checklist.
– Lucão
friends...would like now, the files I have selected I send to print,(all at once, and without showing to the user, exit directly in the standard printer) how do I do it ? I am not qualified to ask new questions for while anything put my code here !
– Lucão
you create another question, simple like this.
– Marco Souza
I am not qualified to ask new questions for now anything put my code here ! @Marconciliosouza
– Lucão
As such, it is not authorised ?
– Marco Souza
gives a message of "You have reached the limit of questions" by clicking the button "Ask a question "
– Lucão