Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Bind a group of OptionButtons to a Data control

Total Hit ( 2813)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


You can't directly bind a group of OptionButton controls to a Data control, RDO Data control or ADO Data control. However, you can work around this limitation by adding an hidden TextBox control and add a few lines of code:

Click here to copy the following block
Private Sub optRadioButton_Click(Index As Integer)
  ' change the contents of the hidden TextBox control
  txtHidden.Text = Trim$(Index)
End Sub

Private Sub txtHidden_Change()
  ' Select the OptionButton corresponding to the value
  ' that the Data control is assigning to the hidden TextBox
  On Error Resume Next
  optRadioButton(CInt(txtHidden.Text)).Value = True
End Sub

You can use the same trick to indirectly bind any other type of control to a numeric or string database field, for example a scrollbar, the caption of a Frame, the size or position of a Shape control, the position of a Slider control, etc.



Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.