Go Back  Xtreme Visual Basic Talk > Visual Basic .NET (2002/2003/2005/2008, including Express editions) > .NET General > radio button problem


Reply
 
Thread Tools Display Modes
  #1  
Old 12-31-2005, 08:44 AM
AnsiDB AnsiDB is offline
Restricted
 
Join Date: May 2005
Posts: 271
Default radio button problem


a bad problem:
i have 2 radio buttons with 2 items
i want that when user click radio buton 2 it will automaticaly set back to the item 1 with a warning mesage:
Code:
Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton2.CheckedChanged RadioButton1.Checked = True MsgBox("You cannot select item 2.", vbExclamation) End Sub
the problem is that mesage box shows 2 times!
what i have to do to correct it?
Reply With Quote
  #2  
Old 12-31-2005, 09:07 AM
inighthawki's Avatar
inighthawki inighthawki is offline
Contributor
 
Join Date: Jun 2005
Posts: 588
Default

whats prolly happenning is the messagebox is showing once u select radiobutton2, and once u change the value, so u can easily counter this with an if statement

Code:
Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton2.CheckedChanged If radiobutton2.checked = true RadioButton1.Checked = True MsgBox("You cannot select item 2.", vbExclamation) End If End Sub
__________________
Example is good. It is up to you, however, to take advantage of that example, and learn from it.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->