473,722 Members | 2,397 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 2359
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
3504
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
2044
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
3425
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
2842
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
2611
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
1222
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
1313
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
2275
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
8739
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,...
0
9384
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9238
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9088
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8052
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6681
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4502
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
4762
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2147
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.