473,407 Members | 2,315 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

Combo box question

Does anyone know of a way (using win32s perhaps) to eliminate that focus
rectangle over the selected option you see in a normal VB combo box?
Jul 17 '05 #1
6 12489
What focus rectangle?? I can't even see one in a "standard" combo box!!
Have you got it set to Drop Down List or something??
_____________________________
The Grim Reaper

"Arlie Rahn" <ar*******@nospam.cox.net> wrote in message
news:AFYJc.8046$%p4.2086@okepread04...
Does anyone know of a way (using win32s perhaps) to eliminate that focus
rectangle over the selected option you see in a normal VB combo box?

Jul 17 '05 #2
Yeah, I have to use the list (allowing users to enter values wouldn't work
well). And, when you load the combo on the form a little focus rectangle
appears around the selected value. It's a little annoying - esp since I
can't control the color of it.

"The Grim Reaper" <gr*********@btopenworld.com> wrote in message
news:cd**********@hercules.btinternet.com...
What focus rectangle?? I can't even see one in a "standard" combo box!!
Have you got it set to Drop Down List or something??
_____________________________
The Grim Reaper

"Arlie Rahn" <ar*******@nospam.cox.net> wrote in message
news:AFYJc.8046$%p4.2086@okepread04...
Does anyone know of a way (using win32s perhaps) to eliminate that focus
rectangle over the selected option you see in a normal VB combo box?


Jul 17 '05 #3
Are you using a ComboBox with Style=2 Dropdown List
or are you using a ListBox with Style=1 Standard?

I have used the following in a ListBox (in the _Click procedure) to get rid
of the standard blue box highlight AND the focus rectangle.

List1.Enabled = False
List1.ListIndex = -1
List1.Enabled = True

Maybe the above, or some combination of the above, would work with the
ComboBox?

Tom
"Arlie Rahn" <ar*******@nospam.cox.net> wrote in message
news:AFYJc.8046$%p4.2086@okepread04...
Does anyone know of a way (using win32s perhaps) to eliminate that focus
rectangle over the selected option you see in a normal VB combo box?

Jul 17 '05 #4
I am using a combo box with style =2 Dropdown List.

If you want to mimic this, just create a project with a combo box, put in
4-5 values into it on load and select the first one after running the
project. You will see a small rectangular box around the value selected. I
would like to find a way to remove that.

"Kiteman - Canada" <-d*************@shaw.ca> wrote in message
news:qSEKc.57410$ek5.31890@pd7tw2no...
Are you using a ComboBox with Style=2 Dropdown List
or are you using a ListBox with Style=1 Standard?

I have used the following in a ListBox (in the _Click procedure) to get rid of the standard blue box highlight AND the focus rectangle.

List1.Enabled = False
List1.ListIndex = -1
List1.Enabled = True

Maybe the above, or some combination of the above, would work with the
ComboBox?

Tom
"Arlie Rahn" <ar*******@nospam.cox.net> wrote in message
news:AFYJc.8046$%p4.2086@okepread04...
Does anyone know of a way (using win32s perhaps) to eliminate that focus
rectangle over the selected option you see in a normal VB combo box?


Jul 17 '05 #5
I could not figure out a way to remove the rectangular box around the last
selected value in the pulldown menu without
Combo1.Clear
and then rebuilding the menu each time a combobox value is selected.

As for the highlight around the item displayed in the ComboBox before the
menu is pulled down you just have to set the focus to another control. You
can create a command button or another ComboBox and hide it behind your
existing control. Whenever the Combo1 receives a Change or Click event
just run this line of code:

Combo2.SetFocus
or
Command1.SetFocus

and the hidden ComboBox receives the focus and the highlighting disappears
from Combo1.

Hope this helps.

Tom
"Arlie Rahn" <ar*******@nospam.cox.net> wrote in message
news:YMmLc.2554$ml.76@lakeread05...
I am using a combo box with style =2 Dropdown List.

If you want to mimic this, just create a project with a combo box, put in
4-5 values into it on load and select the first one after running the
project. You will see a small rectangular box around the value selected. I
would like to find a way to remove that.

"Kiteman - Canada" <-d*************@shaw.ca> wrote in message
news:qSEKc.57410$ek5.31890@pd7tw2no...
Are you using a ComboBox with Style=2 Dropdown List
or are you using a ListBox with Style=1 Standard?

I have used the following in a ListBox (in the _Click procedure) to get

rid
of the standard blue box highlight AND the focus rectangle.

List1.Enabled = False
List1.ListIndex = -1
List1.Enabled = True

Maybe the above, or some combination of the above, would work with the
ComboBox?

Tom
"Arlie Rahn" <ar*******@nospam.cox.net> wrote in message
news:AFYJc.8046$%p4.2086@okepread04...
Does anyone know of a way (using win32s perhaps) to eliminate that focus rectangle over the selected option you see in a normal VB combo box?



Jul 17 '05 #6
While certainly a creative option, the problem with that solution is you
lose the ability to scroll through the options with the mouse wheel because
of the lost focus. I was hoping that there might be some sort of Win32 call
that controls the display of that focus rectangle, but it appears that may
not be the case.

"Kiteman - Canada" <-d*************@shaw.ca> wrote in message
news:BzwLc.73339$od7.64855@pd7tw3no...
I could not figure out a way to remove the rectangular box around the last
selected value in the pulldown menu without
Combo1.Clear
and then rebuilding the menu each time a combobox value is selected.

As for the highlight around the item displayed in the ComboBox before the
menu is pulled down you just have to set the focus to another control. You can create a command button or another ComboBox and hide it behind your
existing control. Whenever the Combo1 receives a Change or Click event
just run this line of code:

Combo2.SetFocus
or
Command1.SetFocus

and the hidden ComboBox receives the focus and the highlighting disappears
from Combo1.

Hope this helps.

Tom
"Arlie Rahn" <ar*******@nospam.cox.net> wrote in message
news:YMmLc.2554$ml.76@lakeread05...
I am using a combo box with style =2 Dropdown List.

If you want to mimic this, just create a project with a combo box, put in
4-5 values into it on load and select the first one after running the
project. You will see a small rectangular box around the value selected. I would like to find a way to remove that.

"Kiteman - Canada" <-d*************@shaw.ca> wrote in message
news:qSEKc.57410$ek5.31890@pd7tw2no...
Are you using a ComboBox with Style=2 Dropdown List
or are you using a ListBox with Style=1 Standard?

I have used the following in a ListBox (in the _Click procedure) to
get rid
of the standard blue box highlight AND the focus rectangle.

List1.Enabled = False
List1.ListIndex = -1
List1.Enabled = True

Maybe the above, or some combination of the above, would work with the
ComboBox?

Tom
"Arlie Rahn" <ar*******@nospam.cox.net> wrote in message
news:AFYJc.8046$%p4.2086@okepread04...
> Does anyone know of a way (using win32s perhaps) to eliminate that

focus > rectangle over the selected option you see in a normal VB combo box?
>
>



Jul 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: NB | last post by:
Let's say in the product table I have around 50,000 products (well, infact it has now about 2000 only, but it's growing very fast, hence the question here) In the order form, users will select...
3
by: Marcus Canales | last post by:
Hello all, Here is my situation. I have a combo box on a form. The combo box is linked to a qry (qryCustomers) and the form is linked to tblOrders. The way I currently use the combo box is to...
8
by: Lyn | last post by:
Hi, Can anyone tell me how the initial value displayed in Combo Box is determined when a form is opened? I am loading the dropdown from one field ("CategoryName") of a table, with "ORDER BY ". ...
2
by: Gerry | last post by:
I have a combo box and I can populate it with my class of dat (the class allows me to store each userid,username called - see code below I want the user to select the dropdown and see the...
9
by: Edwinah63 | last post by:
Hi everyone, Please let there be someone out there who can help. I have two BOUND combo boxes on a continuous form, the second being dependent on the first. I have no problem getting the...
9
by: Vmusic | last post by:
Hi, I'm using MS Access 2002. I have a form with a combo box built from a query that returns one column, and that one column is the bound column. How do you use VBA to programmatically change...
1
by: Shawn Yates | last post by:
It has been a while since I have done anything on MS Access and I seem to be a bit rusty. I hope someone could help me solve my issue. I have a form that has multiple combo boxes on it. Each box...
5
by: Bface | last post by:
Here are the other 2 questions I have. I forgot to mention I am on Access 2003/Windows XP. The second and third question I have is on Combo box. Can a combo box be used to access several documents...
2
by: Sid | last post by:
I need some help in setting up Access combo box. I am using three comboboxes in my form. Comb Box 1, Combo Box 2, Combo Box 3. The row source for each of the combo box is a seperate table. ...
2
by: biganthony via AccessMonster.com | last post by:
Hi, I decided to install Office 2003 Service Pack 3 on my home computer to test (in full knowledge that there may be some issues with it). After installation, I have noticed that with a small...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.