Click here to Skip to main content
Licence CPOL
First Posted 8 Sep 2005
Views 121,696
Downloads 435
Bookmarked 58 times

A Complete Read Only ComboBox

By | 25 Jan 2008 | Article
A ComboBox with a read-only property that allows text copy and drop-down viewing

Introduction

Like so many others, our developers were taken in with the look and feel of the TextBox's ReadOnly property. Compared to a disabled TextBox, it is legible yet conveys a change in the state of the control. You cannot change its value but if needed you can copy the text out of it. Since the ComboBox is an enhanced TextBox, it was natural to look for a ReadOnly property, but as you all know, it's not there. Oh, but it is there. It's not exposed in the Framework but it lies underneath and can be accessed with a single line of code. Well... sort of.

The essence of giving the look and feel of the ReadOnly property does take one line of code, but plugging the holes around it takes a few more. There are a couple of other articles here on The Code Project by Dan Anatoli and Claudio Grazioli that create the look of a ReadOnly state and some of its feel, but their solutions didn't give me what I expected in a read only ComboBox. What I expected was that it should still present the dropdown list in case the user wanted to see what the other selections were. It should allow copying text out of the box either with a Ctrl+C key press or by using a right click context menu. Of course, when in ReadOnly mode, it should not allow a change.

A Single Line of Code

I love surfing the newsgroups in Google, looking for solutions to a problem. The hunt began for that magic combination of search words that will lead me to a post where someone will give me a single line of code that will do my bidding. Some little known property or method I can call that will open the door to the prize that I seek. In this case, it started out looking like it might be that simple.

SendMessage(GetWindow(Me.Handle, GW_CHILD), _
                      EM_SETREADONLY, Value, 0)

You can interact with Windows controls by sending messages to them. These messages are documented on MSDN. In the case of the ComboBox, you can send it the EM_SETREADONLY message. As soon as you do, the TextBox portion of the control looks and acts just like you'd expect; the color changes, you can't type in the box anymore, you can't paste into it, you can't use any of the editing keys, but... (and this is a big but) the ListBox portion of the control doesn't know a thing about what you have just done. It still allows you to select new values, changing the text in the box and the selected index of the list. This is where you have to start plugging the holes.

Plugging the Holes

There are four holes that are left after the TextBox within the combo has been placed in the ReadOnly state. They are:

  • Drop down list mouse selections
  • Undo in the right mouse button context menu
  • Using cursor keys to select from the list
  • Bringing up the list with repeated F4 presses

Drop Down List Mouse Selections

I wanted the user to be able to view the list even if she or he could not change the selection. There were two things that happen when you click on an item in the list. It changes the text in the text box and it changes the SelectedIndex. To stop the text from being changed I found that if I intercepted Windows message 273 when in a dropped down state, that would keep the text from changing. Message 273 also caused the list to be pulled up. So I had to send a message to the combo to tell it to bring up the list.

Protected Overrides Sub WndProc(_
              ByRef m As System.Windows.Forms.Message)
    If _ReadOnly AndAlso _DroppedDown Then
        If m.Msg = 273 Then
            _DroppedDown = False
            SendMessage(Me.Handle, CB_SHOWDROPDOWN, _
                       System.Convert.ToInt32(False), 0)
            Exit Sub
        End If
    End If
    MyBase.WndProc(m)
End Sub

That stopped the text from changing but not the SelectedIndex. To handle that, I had to take control of the SelectedIndex property. When message 273 is absorbed in the WndProc override the OnSelectedIndexChanged method is not called. By saving the value of SelectedIndex locally, I can have the last selected value to pass back in a shadowed SelectedIndex property. I had to shadow the property or else the OnSelectedIndexChanged method would not get called.

Protected Overrides Sub OnSelectedIndexChanged(_
                        ByVal e As System.EventArgs)
    _SelectedIndex = MyBase.SelectedIndex
    MyBase.OnSelectedIndexChanged(e)
End Sub

Public Shadows Property SelectedIndex() As Integer
    Get
        Return _SelectedIndex
    End Get
    Set(ByVal Value As Integer)
        _SelectedIndex = Value
        MyBase.SelectedIndex = Value
    End Set
End Property

Undo in the Right Mouse Button Context Menu

The right click context menu of the TextBox has an undo option. If the user were to paste in a value or hand type a change, the undo option will be enabled in the context menu. If there was an undo in progress when the control was placed in a ReadOnly state, it would be possible to get around the ReadOnly and revert to the previous value. But luckily this was one of those one line wonders.

SendMessage(GetWindow(Me.Handle, _
          GW_CHILD), EM_EMPTYUNDOBUFFER, Value, 0)

The SendMessage function causes the text box in the control to empty its undo buffer and disable the undo context menu selection. Next was the cursor keys.

Using Cursor Keys to Select from the List

Whether the list is dropped down or not, both the up and down cursor keys and the page up and down keys will allow you to change the selected value. This can be handled with a little override of the OnKeyDown method. Note that the Alt + Cursor Down key is allowed as it can be used to drop the list box.

Protected Overrides Sub OnKeyDown(_
        ByVal e As System.Windows.Forms.KeyEventArgs)
    If _ReadOnly Then
        If e.KeyCode = Keys.Up OrElse _
             e.KeyCode = Keys.PageUp OrElse _
             e.KeyCode = Keys.PageDown OrElse _
             (e.KeyCode = Keys.Down And _
               ((Me.ModifierKeys And Keys.Alt) <> Keys.Alt)) Then
           e.Handled = True
        End If
    End If
    MyBase.OnKeyDown(e)
End Sub

Bringing up the List with Repeated F4 Presses

Last was an odd bug in the ComboBox itself. If you press F4 the list will drop. If you press it again, it will bring up the list and fire the OnSelectedChangeCommitted event even though nothing has changed. Putting in the following code stops the event when the control is in the ReadOnly state. This does nothing for the inappropriate firing of the event when the control is writable.

Protected Overrides Sub OnSelectionChangeCommitted(_
                           ByVal e As System.EventArgs)
    If _ReadOnly Then
    Else
        MyBase.OnSelectionChangeCommitted(e)
    End If
End Sub

Using the Code

The code was written as a class that can be added into a class library, compiled, and added to the toolbox. When I first tried this class out on the other developers where I work, I named the control ReadOnlyComboBox. I was immediately assaulted with comments such as "Why would you want a ComboBox that can only be read?" and "What's the point of giving them a list if they can never change the value?" OK, so it's not a ComboBox that is ReadOnly. It's a ComboBox with a ReadOnly property. I resorted to the time honored technique of adding an "X" to the inherited class name. In the sample project it is named xboXComboBox. All of our controls are prefixed with a three character designation, then a significant name after that.

By the way, the ZIP file contains the source and a test project. You may need to build the solution before you can view the test form in the designer.

Summary

In putting this class together I thought I had something special. It wasn't large or complex but I did have to define a call to user32.dll and I did have to intercept and handle Windows messages. My understanding of Windows messages came from watching them and seeing what happened if I didn't pass them along. Does that make the code vulnerable? I don't think so. I look forward to your thoughts. So far our implementation has been successful and we are very pleased. It was great to find a way to interact with the underlying control and pull a few more horsepower out of it. For me, this was a more complete solution, handling all of the look and behavior that I expected from a ReadOnly property of a ComboBox.

History

  • 09/08/05
    • Initial release
  • 08/14/06
    • Ported from Visual Studio 2003 to Visual Studio 2005
    • Added support for DropDownStyle = DropDownList
    • Added workaround for setting SelectedIndex to -1 when data-bound, see KB327244
  • 01/23/08
    • Fixed bug which lost DropDownStyle when ReadOnly set to true two times in a row

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Thomas Wells

Software Developer (Senior)
Iowa Department of Transportation
United States United States

Member

Tom works for the DOT as a developer and project leader. Besides designing VB.Net SQL Server applications he specializes in creating tools, classes, and controls for the development team where he works.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
AnswerMy Inherited ComboBox Pinmemberpbnec15:59 18 Aug '08  
GeneralRe: created C# version of your control PinmemberFelix Todd12:52 3 Nov '08  
GeneralA small patch to handle setting the value of the ReadOnly property PinmemberJeffrey Bradley1:27 16 Jan '08  
GeneralRe: A small patch to handle setting the value of the ReadOnly property PinmemberThomas Wells3:10 24 Jan '08  
GeneralThanks for a great custom control PinmemberJeffrey Bradley2:33 14 Jan '08  
GeneralRe: Thanks for a great custom control PinmemberThomas Wells3:21 14 Jan '08  
GeneralGreat control but... PinmemberTowerIT6:44 12 Nov '07  
Hi,
 
Great control, this is exactly what VB.net should have done when they built the control!
 
One question though, probably due to my inexperience at VB, -- i have imported the control, tested it, and used it. I cannot, however, get it to stay in my toolbox. If i run the build and program like you suggested, it sees it as an add in and will let me use/add it, but when i restart vb.net (visual studio pro 2005) it is gone again from the toolbox.
 
Any advice will be greatly appreciated. Thanks for the nice control.
 
Lee
GeneralRe: Great control but... PinmemberThomas Wells3:23 13 Nov '07  
QuestionRead Only ComboBox Pinmemberkk_upadhyay0:13 3 Oct '07  
AnswerRe: Read Only ComboBox PinmemberThomas Wells3:30 3 Oct '07  
QuestionDropDownStyle? PinmemberJoshua Muller11:57 15 Feb '07  
AnswerRe: DropDownStyle? PinmemberThomas Wells3:49 16 Feb '07  
GeneralRe: DropDownStyle? PinmemberIain Clarke21:59 27 Jan '08  
GeneralRe: DropDownStyle? PinmemberThomas Wells7:17 28 Jan '08  
QuestionIt's great, any way we can specify the backcolor? Pinmembernickxiaow3:35 9 Feb '07  
AnswerRe: It's great, any way we can specify the backcolor? PinmemberThomas Wells3:51 9 Feb '07  
GeneralRe: It's great, any way we can specify the backcolor? Pinmembernickxiaow4:29 9 Feb '07  
GeneralRe: It's great, any way we can specify the backcolor? Pinmemberakaz4:57 3 Jun '08  
Generalautoellipse PinmemberBasatwar23:06 8 Jan '07  
GeneralRe: autoellipse PinmemberThomas Wells8:20 9 Jan '07  
GeneralInconsistent results at DesignTime PinmemberSBendBuckeye9:18 4 Jan '07  
AnswerRe: Inconsistent results at DesignTime PinmemberThomas Wells10:28 4 Jan '07  
GeneralRe: Inconsistent results at DesignTime PinmemberSBendBuckeye10:46 4 Jan '07  
GeneralClearing SelectionLength PinmemberSBendBuckeye7:16 4 Jan '07  
AnswerRe: Clearing SelectionLength PinmemberThomas Wells8:13 4 Jan '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 26 Jan 2008
Article Copyright 2005 by Thomas Wells
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid