How to connect Radiobutton to a textbox? - vb.net

I'd like to create sample applications, like examination system. I don't know how to connect radio button and textbox to create multiple choices in this system. So can anyone can tell me how to connect radiobutton and textbox to create multiple choices?

If i understand your question correctly:
Radio buttons have 'text' property, you can put your description there.
Next, this code should place this Text description in TextBox after clicking this particular RadioButton:
Private Sub RadioButton_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButton.CheckedChanged
TextBox.ext = RadioButton.text
End Sub
If not, you can always look for answer here:
https://www.tutorialspoint.com/vb.net/vb.net_radio_button.htm

Related

How to change radio button value into string and send to csv file?

I have a group box called grpWindows which contains three radio buttons:
rdbUnderSlabComplete,
rdbUnderSlabCurrent,
rdbUnderSlabNA
I want to get the selected value of the radio button and convert it to a string (Different string for each radio button), which will then be sent to a csv file.
Your question is fairly simple and shows you should read some tutorials.
Generally you some code like this.
Private Sub Rb2meter_CheckedChanged(sender As Object, e As EventArgs) Handles Rb2meter.CheckedChanged
If Rb2meter.Checked = True Then
FillListBox1()
End If
End Sub
this is something I pulled from a project.
simply use the radio buttons event changed and perform your code.

How to hide a DataGridViewButtonCell

I have a DataGridViewButtonCell in my DataGridView and I wanted to set the property Visible to True.
I have tried:
DataGridView1.Rows("number of row i want").Cells("number of cell i want").Visible = True
Unfortunately it says that the property visible is read only.
Here is the code:
Private Sub DataGridView1_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles DataGridView1.CellClick
'does not work
DataGridView1.Rows(e.RowIndex).Cells(6).Visible = True
End Sub
Does anyone knows how I can achieve this?
Thanks.
There is no actual way to hide a DataGridViewButtonCell. Currently I can only see two options:
Use padding to move the button over as shown here. I will provide similar VB.NET code
Set the Cell to a DataGridViewTextBoxCell and set the ReadOnly property to True
Use Padding:
Private Sub DataGridView1_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles DataGridView1.CellClick
If DataGridView1.Rows(e.RowIndex).Cells(6).GetType() Is GetType(DataGridViewButtonCell) Then
Dim columnWidth As Integer = DataGridView1.Columns(e.ColumnIndex).Width
Dim newDataGridViewCellStyle As New DataGridViewCellStyle With {.Padding = New Padding(columnWidth + 1, 0, 0, 0)}
DataGridView1.Rows(e.RowIndex).Cells(6).Style = newDataGridViewCellStyle
End If
End Sub
Use DataGridViewTextBoxCell:
Private Sub DataGridView1_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles DataGridView1.CellClick
If DataGridView1.Rows(e.RowIndex).Cells(6).GetType() Is GetType(DataGridViewButtonCell) Then
Dim newDataGridViewCell As New DataGridViewTextBoxCell
DataGridView1.Rows(e.RowIndex).Cells(6) = newDataGridViewCell
newDataGridViewCell.ReadOnly = True
End If
End Sub
Both of these should give you the effect of not showing the button.
This is really a perspective issue. From a programmer’s perspective, simply ignoring the button clicks on the buttons I want to disable is very easy to do and takes just a few lines of code.
From a user perspective, this situation would play out like this… the user clicks what appears to be a valid enabled button, and nothing happens. The user did not write the code for this… so at best the user will think the computer is not responding to the button click or at the worst… would think your coding skills are dubious!
The same situation happens if the button is missing. The user is not going to know why it is missing… but will most likely come to the same conclusion described above with a non-working button.
In another very simple approach, let say that all the buttons are enabled and we have a list of the button indexes we want to disable. The users presses one of the buttons, we check the disabled button list and if the clicked button is one that is disabled, simply display a message box to indicate why this button is disabled. This approach says to the user… “Here are a bunch of buttons, guess which ones are enabled”…
The DataGridViewDisableButtonCell and DataGridViewDisableButtonColumn wrappers solve all of the above issues… the button is visible so the user wont question where the button went if you set it to invisible and it is greyed out. “Greyed out” is something most users understand and will relieve the user of having to “guess” which buttons are enabled.
You can create a wrapper for two classes: the DataGridViewButtonCell and the DataGridViewButtonColumn.
The link How to: Disable Buttons in a Button Column in the Windows Forms DataGridView Control to the MS example is one I have used before using C#, however there is a VB implementation at the link also.
Below is a picture of the result of using the two wrappers described in the MS link. For testing, the picture below uses the check boxes to left of the button to disable the button on the right.
IMHO, using this strategy is user friendly. If you simply make the button invisible or read only, then the user is possibly going to think your code is messed up and not have a clear understanding of WHY the button is missing or doesn’t work. A disabled button indicates to the user that the button is not available for that item. An option would be to have a mouse roll-over indicating why the button is disabled.

Message pop up?

What is the way to implement/mimic the Windows message popup that a user gets when, for instance when you try to rename a folder on the desktop using invalid characters?
I want to use this method in lieu of a message box.
You can achieve this by using ErrorProvider. It is located in your toolbox. Just drag and drop it into your form. To use it, example code
Private Sub TextBox1_TextChanged(sender As Object, e As EventArgs) Handles TextBox1.TextChanged
If TextBox1.Text.Trim().Length > 6 Then
ErrorProvider1.SetError(TextBox1, "Input is too long!")
End If
End Sub
Method 2 : Using ToolTip. This can be found in your toolbox as well. Just drop it into your form and in the properties window, you can set the "tip" for each controls in your form.
Here is how it will look like when your cursor is hovering the controls.
If you dislike the rectangle pop up, you can change it to a ballon pop up by isBallon = true.

How to use radio button list control

I believe there is a radio button list control while developing web pages using asp.net but not while developing a windows form.
I am developing a windows form where I need to check the user's gender, weather male or female.
Right now I am setting a global check variable and set it when the button is selected like shown below.
I have placed them within a panel:
Private Sub rbtMale_CheckedChanged(sender As System.Object, e As System.EventArgs) Handles rbtMale.CheckedChanged
gender = "Male"
End Sub
Private Sub rbtFemale_CheckedChanged(sender As System.Object, e As System.EventArgs) Handles rbtFemale.CheckedChanged
gender = "Female"
End Sub
Is there any other better way of doing this check?
You need to create a group using container control (Panel or GroupBox). Add Radio buttons inside the container so when the user selects one radio button within a group, the others clear automatically.
You mean like this one?
Radio Buttons are available in WinForms.

how to clear a listview from another form in vb.net

I would like to know, how to clear a list view items from an another form. For instance, I have Form A with a ListView, I would like to clear the Form A ListView Items from Form B. What I tried is, create a function in Form A to clear the listView and call that function from Form B. But it is not working. Please help me to resolve this issue.
Here is a quick and easy way to do so; this removes all items from listbox using a for each...
Private Sub btnClearListView_Click(sender As System.Object, e As System.EventArgs) Handles btnClearListView.Click
For Each I In FormA.ListView1.Items
FormA.ListView1.Items.Remove(I)
Next
End Sub
Thanks!