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

Make a Checkbox control read-only

Total Hit ( 2949)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


By default, VB's CheckBox controls automatically toggle their Value property when the user clicks on them. This is usually the desired behavior, but at times you may want to be able to change their value only programmatically. Unfortunately, you can't achieve this result by simply setting the CheckBox control's Enabled property to False, because this would have a visual impact on the user interface.

However, you can reach the desired result by simply place the CheckBox inside a borderless Frame control and set the Frame control's Enabled property to False. This will automatically disable the CheckBox control, but without changing its appearance.

If you don't want to add a Frame control just for making a CheckBox control read-only, you can use the following routine, that modifies the CheckBox control's style:

Click here to copy the following block
Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" _
  (ByVal hWnd As Long, ByVal nIndex As Long) As Long
Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" _
  (ByVal hWnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
Const GWL_STYLE = -16
Const BS_AUTOCHECKBOX = 1

' Make a checkbox control read-only (or restore its
' regular behavior).
' Doesn't work well if the Style property is set to 1-Graphical

Sub MakeCheckBoxReadOnly(CheckBox As CheckBox, ByVal bReadOnly As Boolean)
  Dim lStyle As Long
  lStyle = GetWindowLong(CheckBox.hWnd, GWL_STYLE)
  If bReadOnly Then
    lStyle = lStyle Or BS_AUTOCHECKBOX
  Else
    lStyle = lStyle And (Not BS_AUTOCHECKBOX)
  End If
  SetWindowLong CheckBox.hWnd, GWL_STYLE, lStyle
End Sub


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.