Display Controls Based On Radio Button Selected?

Jun 25, 2009

I have a group of three radio buttons. Depending on which radio button is selected, I want to disaply one of three controls - a textbox, a dropdown list, or a button. How do I display controls based on the result of a selected radio button?

View 1 Replies


ADVERTISEMENT

Display A Certain Section Of Form Based On The Number Selected By Radio Button?

Apr 25, 2011

i want to display a certain section of my form based on the number selected by radio button.( scale 1 to 5) by default 1 is clicked . if they click 5 then the same portion will be repeated 5 times .i have the database table structure to support this . but how to code the radio button to do the same .

View 8 Replies

Enable Text Box Based On Radio Button Selected?

Apr 12, 2012

I have a Radio Button List that lists different business categories. The last option is the Other category. When the user selects the Other category, I want to be able to enable a text box that the user can then enter further information to explain the Other selection.[code]...

View 2 Replies

Selected Radio Button Display Related Image In PictureBox

Sep 12, 2009

I'm new to VB.NET BTW. I designed a form and radio buttons and a submit button with a picture box ! Every radio button selected will display the image related to it in the picture box !

So, we have
O smile
O sad
O mad
O happy
O ...etc
When pressing the submit, the selected radio button will display a face of the mood !

Here is my code.
If RadBtnSmile.Checked Then
PicBxMood.load("smile.gif")
End If
If RadBtnSad.Checked Then
PicBxMood.load("sad.gif")
[Code] .....

View 2 Replies

Radio Button - Code For Display Listbox Depends On The Radio Button Check True And False

Feb 13, 2009

I have one radio button and one listbox .i want code for display listbox depends on the radio button check true and false.

View 3 Replies

Reducing An If Statement Based On Checkbox / Radio Button?

Jan 11, 2012

I have a project in which I have to display a picture box based on:

Which radio box is checked

and

if a checkbox to make the picture box visible is checked. As someone who values clean, good code this is my code and it horrifies me. My question, is there some way to condense the following using cases or some other construct I don't know in VB.net?

If CheckBox1.Checked = False Then
BooksPictureBox.Visible = False
MusicPictureBox.Visible = False

[Code]....

Note- all the images stack on one another, and all of them start without being visible.

View 3 Replies

Radio Button Automatically Selected?

Mar 23, 2010

Simple code, I have 3 radio buttons that change the color of the form. Thing is when I run it, my first radio button (red) is already selected. I know I can make a hidden button and focus it on that, but is there a way to just make it not have anything selected? I tried rdoRed.Checked = False Doesn't work.

[Code]...

View 5 Replies

Radio Button Selected When Use ShowDialog

Jan 6, 2009

If I have two radio buttons on the first form of the project, they are both uncheck by default. However, if I have two radio buttons on a form that I open with MyForm.ShowDialog(), the first radio button is checked! Is there a way to stop this?

View 4 Replies

VS 2010 Get Selected Radio Button?

Aug 2, 2011

I have two groups of RadioButtons, each group inside its own GroupBox. When a RadioButton from one group is selected, the handler passes the selected button - this is not a problem.

But I need to grab the value of the selected RadioButton from the other group as well - is there a simple way to do that without iterating through them all?

View 1 Replies

Forms :: Customizing Queries Based On Radio Button Selections?

Apr 30, 2009

I am a new to programming, trying to learn vb.net, so I apologize if my questions are very elementary or my terminology is incorrect. I am trying to format a query to an Oracle table based on user-selected radio buttons on a Windows form (i.e. the query will return different elements from the table based on the radio buttons selected). The query results will be placed in a listbox on the form. My thought was to make a Property containing my query like so:

[Code]...

and then I have a sub that feeds this SQL property (containing the query) into an OracleConnection.My problem is that I don't know how to customize that query depending on what radio buttons are selected by the user. Is a Property the best way to go about this, or is there some other way that may be better?

View 1 Replies

Having A Picture Box That Displays One Of 4 Flags Based On Radio Button Settings?

Feb 5, 2012

how would i go about having a picture box that displays one of 4 flags based on radio button settings?

View 6 Replies

Checking If A Radio Button Has Been Selected Within A Group Box?

Jun 12, 2009

How do i checked that within a GroupBox 1 radio button has been selected? I want to provide the user with a message box telling them they have not made a selection from one of the 12 radiobuttons within the group box?

View 3 Replies

Hide An Image When A Radio Button Is Selected

May 1, 2010

If I wanted to hide an image when a radio button was checked, how would I go about doing that? Does anyone have any good resources to read?

View 4 Replies

How To Sort A Gridview Once A Radio Button Is Selected

Mar 25, 2010

I'm trying to sort records in the gridview right after a radio button is selected. My approach is with the dataview, but because the dataset variable doesn't survive a round trip to the server, I don't know how to make this happen.[code]

View 1 Replies

Radio Button Is Selected, Button1 Is Enabled?

May 26, 2009

How can I make it so that when a radio button is selected, button1 is enabled?

View 3 Replies

Radio Button List Check If Selected?

May 31, 2012

I have the following:

<asp:RadioButtonList ID="rbIsRep" runat="server" RepeatDirection="horizontal" >
<asp:ListItem Value="1" >Yes</asp:ListItem>
<asp:ListItem Value="0" >No</asp:ListItem>

[code].....

View 2 Replies

Checking If Option Selected And Radio Button Checked?

Mar 29, 2010

How do I make an if statement that would check if the user has selected an option from the select list named cboGrade and also to check if the user has selected a radio button from the group named gbCalcType? I have an action that is carried out when a button is clicked, but before that action is carried out, I need to check the above.

I have this so far:

If rbPlus.Checked Or rbMinus.Checked Or rbMultiply.Checked Or rbDivide.Checked Then
instructions are here
End If

This checks that one of the radio buttons are selected. How do i check that an option is selected from the option list? There are three options: 3rd, 4th, and 5th. And the text starts out saying Select One and it locks the control once they choose one.

View 1 Replies

Default Radio Button Selected Inside A Group Box?

Jan 8, 2010

I have a WinForms application (VS 2008, .NET 3.5) that has a form with two different group boxes, and inside of each group box are different sets of radio buttons. When I run the application, the first group box automatically has the first radio button in it already selected, and the second group box does not have a radio button selected by default.

I have looked through all the properties of the radio buttons and the group boxes, and cannot figure out what the difference is between the two.I would like both group boxes to have all radio buttons unselected when the form is first opened.Also, I looked through the Designer.vb file for the form, and could not find anything unusual going on in there either.

View 4 Replies

Make A Radio Button Remain Selected On Postback?

Feb 18, 2011

I am using a GridView with its first column as a template field with radio buttons.

I need to make the first radio button in the first row of the grid remain default selected during page load / postback.

View 1 Replies

Text Of Any Selected Radio Button To Appear In Multiline Textbox

Feb 15, 2011

I'm a beginner so please take it easy on me. I was wondering what the code is for the text of ANY selected radio button to appear in the multiline textbox that is already set up. Is that at all possible? If so, can you do the same for check boxes?

View 1 Replies

VS 2008 Can't Uncheck A Checkbox After Radio Button Has Been Selected

Nov 14, 2009

i'm trying to design a program where I can take all the software that i have and just put it on an external Hard drive open this program at a customers house select what software I want to install and than let the install run through everything. I'm running into a problem with my winrar installation since I have a x86 installation and an x64 installation I want to be able to select the checkbox for winrar and than choose either the x86 or x64 and than it will install. I figured out how to set everything up it disables the two radio buttons until the checkbox is checked but I can't go through and uncheck the checkbox (say if I accidently checked it or something)[code]

View 2 Replies

VS 2010 - Change Text If Certain Radio Button Selected

Feb 10, 2011

Basically I want to change a text if certain radio button is selected

Private Sub Form2_Shown(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Shown

If RadioButton1.Checked = True Then
Label11.Text = ("Boca Juniors")
End If

End Sub


I'm pretty sure the Form2_Shown is not correct but I dont know what else to put.

View 17 Replies

VS 2008 Array Controls Radio Button

Feb 19, 2012

I need codes for array controls radio button. My program is to have auto-generated radio button, when i declare no. in numeric up down that will be the no. of set of the radio button. the program is an exam generated for true or false if you will think of it to have an radio button options for true or false. if i will click the generate button then the radio buttons will appear.

View 2 Replies

Forms :: Multiplying By Two - Code - Radio Buttons That If Selected Will Display The Price Of A Ticket

Mar 22, 2010

CODE:

Right now i have the following code. it is 4 radio buttons that if selected will display the price of a ticket.

There is a button called "repeat offender" that should take the price and double it. so me, being new to visual basic, were thinking of trying an if statement such as If it is selected decTicketTotal * 2

But this did not work. any help would be appreciated.. just trying to get the repeat offender selection working so when it calculates the price will double.

View 8 Replies

VS 2010 - TableLayoutPanel - Check At Least One Radio Button Has Been Selected During A Click Event

May 27, 2011

I'm curious if there is a "check all" kind of thing for a tablelayoutpanel? To explain, say I have TableLayoutPanel1 with 6 radio buttons and I'm doing an error check to make sure that at least one radio button has been selected during a click event. Do I have to do If / and with all 6 radio buttons? Or is there something like "If TableLayoutPanel1.checked(obviously not this) = false then".

View 5 Replies

Forms :: Arrays And Radio Buttons - Determine Which Button Is Selected And Assign It To A Variable

May 15, 2009

I am having 3 radio buttons and a button The codes should be added to the button_click event, when ever the radio button is selected and the button is click then, The codes should determine which button is selected and assign it to a variable. Create a two parallel 1-dim arrays and populate it with the data below:

[Code]...

View 10 Replies

Display TImes Based On Selected Date?

Jul 11, 2011

I have to display the available times in a dropdownlist called "DDL_avalTime" based on the date selected in a ASP calendar.

How the program works is that when a User clicks a date form the caldendar, it checks the SQL database. In this case the table that I'm retrieving it from is "trainerbookings" from the column "trainingDateTime". The data type for this column is datetime.[code]...

View 1 Replies

VS 2010 Radio Button Display A Number

Feb 20, 2011

I am creating a simple application to show an amount based on the radio button selected eg. radButton1=35 radButton2=75 radButton3=150, and another button to double the total IF selected. Here is my code so far, I do not get any calculation when the program is executed.[code]

View 2 Replies

Multiple Radio Button Groups - Text Box To Display A Value

Nov 14, 2009

I have a question regarding radio buttons. I am creating a little prog that has three separate radio button groups. After selecting one button in each group, I would like a text box to display a value. The text box value will be a number between 50 and 350 or so.

View 19 Replies

VS 2008 - Display Texts When A Radio Button Is Checked?

Jun 13, 2010

I want to make 2 radio button.. I want a radio (when checked) show contents in a combo box, each radio button should show different contents when checked.for example: My project is to create a payment form for books when reference (as a radio button) is checked then i want it to show the following book titles in a combo box: "vb guide 2010" , "PHP for Dummies" etc and show the price in a separate text box when clicked when fiction (as a radio button) is checked then i want it to show the following book titles in a combo box: "harry potter" , "spiderman" etc and show the price for these titles in a separate text box when clicked.

View 10 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved