Hi, could somebody offer me a little help please? What I need is basically a listbox which is read only and NO item can be selected in that listbox as I have Up and Down Buttons. Some would think that the above is easy why dont I just make it read only and for the moment I have made it readonly by using the following coding:
Me.Listbox1.Enabled = False
Me.Listbox1.SelectedIndex = 0
Everything is working great apart from one problem, the text in the readonly listbox appears in gray and dull which I dont want. Is there a way making the text appear a different colour? Or even better another way around disabling selecting an item from the listbox without making it read only?
All suggestions welcome. Thanks
Me.Listbox1.Enabled = False
Me.Listbox1.SelectedIndex = 0
Everything is working great apart from one problem, the text in the readonly listbox appears in gray and dull which I dont want. Is there a way making the text appear a different colour? Or even better another way around disabling selecting an item from the listbox without making it read only?
All suggestions welcome. Thanks