from the code below I am trying to find out if checkBox1 is Checked or Unchecked. and then I want my settings to remember if it is checked or unchecked. so when the form is loaded I want my settings to load the last action.... ie checked or unchecked.
so if a user check's the checkbox1 then the message will not show, But if it is unchecked the the messageBox will be shown
Private Sub CheckBox1_CheckedChanged(sender As System.Object, e As System.EventArgs) Handles CheckBox1.CheckedChanged If CheckBox1.Checked = True Then
Let's say I have a checkbox1 control on form1. I then open form2. I want to be able to change the checked state of checkbox1 on form1 from form2.[code]...
if i type in textbox 1,3 then checkbox1 and checkbox3 will be disabled not checked !The coding i provide below is working but ,...it chekec the cjeckoxes according to the text in textbox i.e (1,3) then checkbox1 and checkbox3 will be checked ... but i want when i type 1,3 in textbox then checkbox1 and checkbox3 will be disabled and remain unchecked .
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Dim separator As Char = "," Dim allIIDs As New List(Of Int32) If TextBox1.Text.Length <> 0 Then
I'm developing the program which opens files/programs that I have selected and checked with checkbox1, 2 and 3(i haven't coded the tihrd one yet, but it doesn't affect). The first program runs instantly and others run after X interval if it's wrote in textbox4 and checked by checkbox4. So Checkbox is like an activator for this interval. If checkbox4 isn't checked then every program should run instantly. The problem is that checkbox4 isn't doing a job. Program activates the interval if there are somekind of numbers in textbox4. It doen't matter that is the checkbox4 checked or not.
Here is the
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
I have 4 checkboxes and 1 textbox in webform if i type in textbox 1,2 then checkbox1 & 2 will be checked !
directly after if i type 3,4 in textbox then the all 4 checkboxes will be checked But i want the checkbox will be checked accorcding to the data displayed in text box ..if textbox1.text =1,2 then only checkbox1 and checkbox2 will be checked and others are remain unchecked ...
and if i checked checkbox3 and checkbox4 then only 3 and 4 will be checked and others are unchecked...
how to do that in page load event I want to do this with 50000 checkboxes ..and more.... which displayed in my webform
[Code]...
But if i type 1,2 in textbox then checkbox 1 and 2 would be checked and agin i type 3,4 then checkbox1,2,3 and 4 all the checkbox will be checked ...but i want ...what everi type in text box only that checkboxes will be checked and others will remain unchecked.....
I have the function below which I call onload, I want to be able to check the checkbox (chkactive) if the ProjectStatus is set to True, how can I do that please.[code]
When I run the apps, one radiobutton is checked though the checked properties is set to false. No code setting it to true either I tried deleting and creating a new one but it is still setting checked to true at
well, i made a check box that remembers the username and password but it only remembers if the program isnt closed.i want it to remember the data even when the comp restarts.
My form has four panels, each contains radio buttons. At design time, all buttons have checked = false, which is what I want when form loads.When the form loads a radio button in one panel has checked = true
For the other three panels, all radio buttons have checked = false.I have tested this with no code in the Form_load subrroutine.How is checked = true being set for that that one radio button ?
Does The IDE somehow force at least one radio button on the form to have checked = true?
Can I force checked = false for all radio buttons when the form loads? If so, how?
Possible Duplicate: I have 4 checkboxes and 1 textbox in webform if i type in textbox 1,2 then checkbox1 & 2 will be checked ! I have 4 checkboxes and 1 textbox on a web-form. If I type 1,2 in the textbox, then checkbox1 and checkbox2 will be checked. The code for this is as below. But what I want is that when I type 1,2 then checkbox1 and checkbox2 should be disabled and unchecked.
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Dim separator As Char = ","c Dim allIIDs As New List(Of Int32)
my form contains a checked list box [data coming from the database] a combo box [bind to a database table product] and a listview [was previously a listbox]
project im working on for my course,the idea is a photo printing machine that loads up 4 images if usb stick is checked and a different 4 if memory card is checked. and then whatever image is selected appears in the big picturebox on the left [URL] i have 2 print size options set as radiobuttons, radiobutton 1 = 6x4, which costs 25cent per photo, radiobutton 2 = 8x10, and is 50cent per photo.i also have a textbox which will display the number of copies to be printed So here's my dilemma, when the print button is selected alongside one of the radiobuttons i want it to display a message saying something like this "you have selected (whatever the amount of copies)of this photo sized 6x4, or 8x10 depending on which radiobutton is selected, and i want it to display the total cost which is the number of copies multiplied by the rate for the print size selected, then an option saying "Do you wish to proceed" Yes or No.
I did something similar to this in class earlier in the year but cant remember it, it was an airline booking program with 3 types of payment cash, visa or mastercard,upon booking a message popped up saying there is a certain percentage discount for using visa or mastercard
I've got a checked listbox on my form which saves the checked items to a spot in my database on the .ItemCheck event.But there's a problem, when I begin checking items, I check the box and click off it, but it doesn't save. (This is if I've only chosen one item)
If I choose two or more items it will save, but unchecking them takes a lot of clicking around to figure it out.Is there a better event that I can use? I've tried the SelectedIndexChanged and that has the same result, there's a lot of clicking around in the checkboxes to end up with the desired selected items, and it does not allow a single item.
I'm using loop to read data from sql and then make some calculations then save it again to another table but when application loop for 3 or 4 times it's freeze but the job is done but if loop = 10 or more then it is freeze and hangup for long time .i need to learn how to make my application working better and never freeze and make application working with any count for loop without freeze .
In a listview with check boxes, there are two fields being loaded, ID and Lastname. With this information I want to get the ID of the person whose box is checked with this sub:
I trying to get what I think should be a simple thing. I have a checked treeview. I need to get the text of each checked node into a string. For the life of me I can't get it. I am trying to loop thru all the nodes and see if they are checked but I keep getting a "object reference not set to an instance of an object" but I don't know why.
Dim value As String Dim node As TreeNode Dim i As Long
I'm trying to add CheckBox1.Checked = True to my .dll but i get this error. Error1Name 'CheckBox1' is not declared. But it the client app it is declared.
i am using VS 2008 and just started to work with XAML and WPF. while opening in page(.xaml) in design mode i'm getting the error like this "Only TrueType fonts are supported and this is not a TrueType font".
I have programmed a software that send emails it has CheckedListBox1 used to add emailsand CheckedListBox2 used to add atachments to be send to selected emails from CheckedListBox1so how to send email to checked email(s) from checklistbox1 with checked attachment(s) from checklistbox2?
Why is this code having the opposite effect? If It's checked in the checkedlistbox it's not check in my view, if it's not check in my checkedlistbox it is checked in the grid.
EDIT: More specifically. The CheckState.Checked is always the opposite. .Checked means it's not checked.
Private Sub CheckedListBox1_ItemCheck(ByVal sender As Object, ByVal e As System.Windows.Forms.ItemCheckEventArgs) Handles CheckedListBox1.ItemCheck Try
is a variable called "Incognito" that is class-wide that is a boolean.My question is that is there a form-wide variable form that can like communicate with different forms. So if a variable in form1 is "True" than, how can you make a variable in form2 turns to "True" too?
Currently I have to retrieve over 2000 records from DB and bind with combobox. and then follow with another 3 retrieving (less than 20 records)
My problem is when I call this function, my GUI became freeze.
I try to use Application.DoEvents() method but it still didn't work.I read some post and pages, they mention about BackGroundWorker and .Net 2.0. But what i use it MS 2003 with 1.1 so i think i can't access BackGroundWorker.
I am attempting to freeze the top pane of an excel spreadsheet, which I have opened via my application. The most used method from various internet sources is: [code]
ok i have this code for a banner changer i wrote for an app but i have an issue the code works it gets the banner url from the mysql database useing this code[CODE]......
so im at at loss how do i get it to work so the GUI is still useable while it gets the banner ?