473,581 Members | 2,783 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ComboBox property "Auto Expand", the combobox doesn't open by typing

Dear reader,

What can be wrong in my ComboBox, the property "Auto Expand" is set to Yes,
but by typing in the ComboBox it doesn't expand. Is this because the source
of the ComboBox is a query.

Tanks for any help.

Kind regards,

Simon
Oct 31 '08 #1
3 17229
On Fri, 31 Oct 2008 23:00:52 +0100, Simon van Beek wrote:
Dear reader,

What can be wrong in my ComboBox, the property "Auto Expand" is set to Yes,
but by typing in the ComboBox it doesn't expand. Is this because the source
of the ComboBox is a query.

Tanks for any help.

Kind regards,

Simon
Your Subject line and message body appears to conflict.

What do you mean by "doesn't open by typing" and by "doesn't Expand"?

Are you expecting the combo box to drop-down when you type so that you
can see all the possible values?
AutoExpand does not do that.

With AutoExpand set to Yes, the combo box, as you type in data, will
find the next available data that begins with the values you have
already typed. For example, if you have a list of names, one of which
is Sandler and one is Smith, as you enter the 'S', Sandler will
appear. Next type the 'm' and Smith will appear. That is AutoExpand.

If you mean the combo doesn't drop-down to show the possible values
available, that is "Drop-Down". A combo will only drop-down when you
click on the down arrow OR if you have used code to tell it to do so.
For instance, you can code the Combo Box's Enter event:

Me.[ComboName].Dropdown

--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
Oct 31 '08 #2
Fred,

What I need is that by typing in the combo box the next available data will
be appear.

The property AutoExpand is set Yes but by typing the combo box will not go
to the character combination I type and I know that the typed combination
exist.
Thanks for any help,
Simon
"fredg" <fg******@examp le.invalidwrote in message
news:zn******** *************** *******@40tude. net...
On Fri, 31 Oct 2008 23:00:52 +0100, Simon van Beek wrote:
>Dear reader,

What can be wrong in my ComboBox, the property "Auto Expand" is set to
Yes,
but by typing in the ComboBox it doesn't expand. Is this because the
source
of the ComboBox is a query.

Tanks for any help.

Kind regards,

Simon

Your Subject line and message body appears to conflict.

What do you mean by "doesn't open by typing" and by "doesn't Expand"?

Are you expecting the combo box to drop-down when you type so that you
can see all the possible values?
AutoExpand does not do that.

With AutoExpand set to Yes, the combo box, as you type in data, will
find the next available data that begins with the values you have
already typed. For example, if you have a list of names, one of which
is Sandler and one is Smith, as you enter the 'S', Sandler will
appear. Next type the 'm' and Smith will appear. That is AutoExpand.

If you mean the combo doesn't drop-down to show the possible values
available, that is "Drop-Down". A combo will only drop-down when you
click on the down arrow OR if you have used code to tell it to do so.
For instance, you can code the Combo Box's Enter event:

Me.[ComboName].Dropdown

--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail

Nov 1 '08 #3
Hello Simon,

Simon van Beek wrote:
What I need is that by typing in the combo box the next available data will
be appear.

The property AutoExpand is set Yes but by typing the combo box will not go
to the character combination I type and I know that the typed combination
exist.
is it the case, that you are using Access 2007 with a database
originally designed unter Acc2000?

I stumbled over your post because having a very strange behaviour with a
comboboxes, myself.

Some minutes ago I verified behaviour in a VM under XP with Acc2000
running. There my dialog EXACTLY does what it should. When typing a
letter it jumps to the first entry to be found in the list. However,
when running under Vista/Acc2007 it does not automatically select the
first entry in list as it does in Acc2000.

I read deeper into Acc2007 docs (I am not very pleased of the new help
system - nearly no samples anymore - what funster did throw that things
out?) but could not find any additional switch/property to reenable things.

I did not try this behavio under a plain 2007 designed form, yet, but I
am very close to believe it is a nasty bug with 2000 designed forms.
Ok. I should go into more details, so maybe - if some MS folks are
reading along and interested into this - can understand what is going on
and maybe could find a fix for this (or not. Sorry dudes for sarcasm).

This solution (yes it is part of a bigger development) has been
originally designed under XP/Acc2000. I did not convert this project
into a 2007 'database' program (because customers still using old
ms-ffice. Most of em 2k some 2k3. And as we all know there are ugly side
effects pending prevent a side by side install).

In a form there is a combobox and as datasource I do use a SELECT tbl
anything statement. Using two columns as recordsource, where only the
last one is shown. First column I use to get back a value-ID (column
size = 0 does hide column away during runtime). This field is unbound.

In event 'AfterUpdate' I do open another form. This doing nothing else
than waiting for some user input, so no other automatism can break anything.

As I defined in properties of the combobox LimitToList=tru e, MS Access
throws a message telling that value is not in list. This actually
happens if writing a complete entry to be found in list. It simply does
not position to this list value. It seems as Access2007 tries to focus
on column ONE! not visible and not as to be expected on column two!!!

In Access 2000 I know that for some strange reasons filters on
comboboxes try to grab the first hidden fields, sometimes. I never could
reproduce this behaviour. So I expect that there is a similar problem in
Access2007, here, too. (Maybe for compatibility - who knows...;)

Ok folks, hoping that there are already solutions out for this problem?
rob*
Nov 3 '08 #4

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

Similar topics

29
580
by: DraguVaso | last post by:
Hi, I'm having this error in a VB.NET-application at the moment that I attempt to read data from an SQL Server: The .Net Data SQL Provider (System.Data.SqlClient) requires Microsoft Data Access Components(MDAC) version 2.6 or later. at System.Data.SqlClient.ConnectionPool.GetConnection(Boolean& isInTransaction) at
1
2477
by: PL | last post by:
The Culture="auto" UICulture="auto" is a great idea, but how do you handle the situaion where SQL Server always requires a dot "." in numeric values. If I use Culture="auto"so that dates and numbers are formatted depending on the browser settings I will encounter situations where values come in as for example "52,50" using a comma instead of...
3
3105
by: Jo Schambach | last post by:
I am trying to write a GUI with tkinter that displays the stdout from a regular C/C++ program in a text widget. The idea i was trying to use was as follows: 1) use "popen" to execute the C/C++ program 2) then use "tkinter.createfilehandler" to create a callback that would be called when the C/C++ program creates output on stdout. ...
4
1794
by: bugbear | last post by:
Hello; I have (tried) to change my geocities site to be "styled" not "tabled". It's certainly made the HTML nicer. But it doesn't work as nicely I'd like. And it almost doesn't work at all under IE.
11
3069
by: Joseph S. | last post by:
Hi all, how do I avoid typing the keyword "$this->" every time I need to reference a member of a class inside the class? (coming from a world of cozy auto-complete enabled Java / .Net IDEs I find it a bit annoying) TIA, JS
3
5724
by: John | last post by:
Does anyone have some sample code for building a combobox that will automatically list the remaining folders while you type? I'm looking for functionality similar to the "Look in:" combobox in the Search Companion panel in Windows Explorer. If you type "C:\" it will open the drop down and fill it in with all of the directories on C:\. Then as...
28
2504
by: darren via AccessMonster.com | last post by:
Hi I've seen details on bypassing macro security with a bat file but has any one incorporated this with Tony Toews FE Updater? If so, I'd appreciate some guidance. As both open the database I'm not sure how/if this will work. Thanks
22
3045
by: nospam_news | last post by:
I currently get asked about my usage of "auto". What is it for? The keyword is clearly superflous here. In contrast to the huge majority of C/C++ developers I write definitions very explicitly like that: int main(char argc, char *argv, char *env) { try { auto Exception mainException(1); mainException.setErrNo(42);
0
7876
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7804
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8156
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8310
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7910
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
6563
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5681
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3809
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1409
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.