473,698 Members | 2,274 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Radio List Box -- Disabling one item (Quite Urgent)

Jay
Good afternoon,

I have a radio list box called rblNavigateOpti ons and I need to be able to
simply set one of those radio items to disabled before any item is selected
by a user.

ie.
When the rblNavigateOpti ons control is created one or some of the items it
contains are disabled.
Is there any way to do this with a list or do I have to use individual radio
buttons for each and everyone one of the Options I want to include?

Thanks in advance,

Jay
Nov 20 '05 #1
10 2354
Jay
Just a note that I decided to go with a 'group' of single radio buttons.
It'll do what I need.

Thanks anyway.

"Jay" <jg********@scf .sk.ca> wrote in message
news:Ox******** ******@TK2MSFTN GP09.phx.gbl...
Good afternoon,

I have a radio list box called rblNavigateOpti ons and I need to be able to
simply set one of those radio items to disabled before any item is selected by a user.

ie.
When the rblNavigateOpti ons control is created one or some of the items it
contains are disabled.
Is there any way to do this with a list or do I have to use individual radio buttons for each and everyone one of the Options I want to include?

Thanks in advance,

Jay

Nov 20 '05 #2
Jay
Just a note that I decided to go with a 'group' of single radio buttons.
It'll do what I need.

Thanks anyway.

"Jay" <jg********@scf .sk.ca> wrote in message
news:Ox******** ******@TK2MSFTN GP09.phx.gbl...
Good afternoon,

I have a radio list box called rblNavigateOpti ons and I need to be able to
simply set one of those radio items to disabled before any item is selected by a user.

ie.
When the rblNavigateOpti ons control is created one or some of the items it
contains are disabled.
Is there any way to do this with a list or do I have to use individual radio buttons for each and everyone one of the Options I want to include?

Thanks in advance,

Jay

Nov 20 '05 #3
Cor
Hi Jay,

What is a radio list box, I do not know that?

Do you mean some radio buttons on a groupBox?

Cor
Nov 20 '05 #4
Cor
Hi Jay,

What is a radio list box, I do not know that?

Do you mean some radio buttons on a groupBox?

Cor
Nov 20 '05 #5
Jay
Sorry, I meant a radiobuttonlist
"Cor" <no*@non.com> wrote in message
news:O7******** ******@TK2MSFTN GP09.phx.gbl...
Hi Jay,

What is a radio list box, I do not know that?

Do you mean some radio buttons on a groupBox?

Cor

Nov 20 '05 #6
Jay
Sorry, I meant a radiobuttonlist
"Cor" <no*@non.com> wrote in message
news:O7******** ******@TK2MSFTN GP09.phx.gbl...
Hi Jay,

What is a radio list box, I do not know that?

Do you mean some radio buttons on a groupBox?

Cor

Nov 20 '05 #7
Cor
Hi Jay,

You mean something as this?
( a little bit stupid code)

Cor
\\\
Private Sub Page_Load(ByVal sender As System.Object, _
ByVal e As System.EventArg s) Handles MyBase.Load
If Not IsPostBack Then
Me.RadioButtonL ist1.Items.Add( "0")
Me.RadioButtonL ist1.Items.Add( "1")
Me.RadioButtonL ist1.Items.Add( "2")
Me.RadioButtonL ist1.Items.Remo veAt(1)
End If
End Sub
///
\\\
Private Sub Button2_Click(B yVal sender As _
System.Object, ByVal e As System.EventArg s) Handles Button2.Click
Me.RadioButtonL ist1.Items.Inse rt(1, "1")
End Sub
///

Cor
Nov 20 '05 #8
Cor
Hi Jay,

You mean something as this?
( a little bit stupid code)

Cor
\\\
Private Sub Page_Load(ByVal sender As System.Object, _
ByVal e As System.EventArg s) Handles MyBase.Load
If Not IsPostBack Then
Me.RadioButtonL ist1.Items.Add( "0")
Me.RadioButtonL ist1.Items.Add( "1")
Me.RadioButtonL ist1.Items.Add( "2")
Me.RadioButtonL ist1.Items.Remo veAt(1)
End If
End Sub
///
\\\
Private Sub Button2_Click(B yVal sender As _
System.Object, ByVal e As System.EventArg s) Handles Button2.Click
Me.RadioButtonL ist1.Items.Inse rt(1, "1")
End Sub
///

Cor
Nov 20 '05 #9
Jay
Not quite but thanks,

The issue I was having was being able to enable or disable certain items
within the radiobuttonlist but there doesn't appear to be an extension of
the radiobuttonlist 1 that allows direct access to each individual item (at
least for the 'enabled' property). I've found a work around of just adding a
bunch of radiobuttons to the page and making them all part of the same
group. Not as pretty code-wise but still meets my needs.

Thanks again,

Jay
"Cor" <no*@non.com> wrote in message
news:%2******** **********@tk2m sftngp13.phx.gb l...
Hi Jay,

You mean something as this?
( a little bit stupid code)

Cor
\\\
Private Sub Page_Load(ByVal sender As System.Object, _
ByVal e As System.EventArg s) Handles MyBase.Load
If Not IsPostBack Then
Me.RadioButtonL ist1.Items.Add( "0")
Me.RadioButtonL ist1.Items.Add( "1")
Me.RadioButtonL ist1.Items.Add( "2")
Me.RadioButtonL ist1.Items.Remo veAt(1)
End If
End Sub
///
\\\
Private Sub Button2_Click(B yVal sender As _
System.Object, ByVal e As System.EventArg s) Handles Button2.Click
Me.RadioButtonL ist1.Items.Inse rt(1, "1")
End Sub
///

Cor

Nov 20 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3503
by: John Mullen | last post by:
I want to take the following HTLM and use javascript to turn on radio buttons if checkbox is checked, can I do this with javascript (maybe onClick or an array) or do i need a server side script ? <li>ABACAVIR SULFATE</li> <INPUT NAME="ingredient0" TYPE=checkbox VALUE="ABACAVIR SULFATE"><br> <input name="ABACAVIR SULFATE AMOUNT" type="radio" value="EQ 300MG BASE">EQ 300MG BASE<br> <input name="ABACAVIR SULFATE AMOUNT" type="radio" value="EQ...
6
2040
by: sakms | last post by:
I am attempting to validate radio buttons in Netscape with JavaScript. Everything works excellent in Explorer, but refuses to work in Netscape (all versions). =========== JAVASCRIPT CODE ======================== function ValidateTest() {
1
3419
by: MickG | last post by:
I am trying to change the value of the variable "hard" according to which radio button is pressed and I am having no joy. Could anyone help me with this, the problematic section is marked with ***********************, I've included all the code incase that isn't where the problem is. Any help would be hugely appreciated. Mick
4
2841
by: TS | last post by:
My objective: To create a survey that asks people to rate a list of things in order of importance. I wish to prevent them from just rating every item in the list the same value. For example the Page would look roughly like this: Please rate the following in order of importance: Item Rating Apples 1 2 3 Orange 1 2 3
4
2607
by: tedqn | last post by:
I have a form with checkboxes and radio buttons which, onClick, run an XmlHttp call to retrieve sub questions for that particular box (AJAX). The problem is if user click on several boxes too fast, it cancel previous calls that haven't been completed. For checkboxes, I can detect that XmlHttp process is still running for another checkbox and prevent the call plus uncheck that box. However, for radio boxes, I have no way of knowing what the...
1
9977
by: John Criswell | last post by:
I have created a radio button list programmatically. C# SqlConnection conn = new SqlConnection("data source=localhost; integrated security=true; initial catalog=pubs"); SqlCommand cmdAuthors = new SqlCommand("select * from Authors", conn); SqlDataReader dr; dr = cmdAuthors.ExecuteReader(); RadioButtonList rblAuthors = new RadioButtonList(); rblAuthors.DataSource = dr;
10
1221
by: Jay | last post by:
Good afternoon, I have a radio list box called rblNavigateOptions and I need to be able to simply set one of those radio items to disabled before any item is selected by a user. ie. When the rblNavigateOptions control is created one or some of the items it contains are disabled.
0
1312
by: krizzie khonnie | last post by:
How can I Disable a Radio Button if it's a Radio Group. Example, there's a two radio button, Value and Group, in a radio group. Now I want to disable Radio Button Value when I create a Parent Item. What's the best syntax for that? Thanks..
11
2272
by: Twayne | last post by:
Hi, Newbie to PHP here, no C or other relevant background, so pretty niave w/r to the nuances etc. but I think this is pretty basic. XP Pro, SP2+, PHP 4.4.7, XAMPP Local Apache Server 6.something I think and running as a service, Using NoteTab Pro as an IDE (works well). If you need more, just ask. In one functioning form:
0
8672
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8600
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8892
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
5860
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4361
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4614
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3038
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2323
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
1998
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.