PC Review


Reply
Thread Tools Rate Thread

Alphabetic lookup within a pick box

 
 
=?Utf-8?B?TWF0aGV3?=
Guest
Posts: n/a
 
      9th Jul 2007
Is there any way to have an Alphabetic lookup within a pick box? I have a
long list of data and it would help to have the list shorten up based on a
the spelling of the name.
 
Reply With Quote
 
 
 
 
=?Utf-8?B?VG9tIE9naWx2eQ==?=
Guest
Posts: n/a
 
      9th Jul 2007
If your data is sorted, then you could use the Combobox from the Control
Toolbox toolbar.

--
Regards,
Tom Ogilvy


"Mathew" wrote:

> Is there any way to have an Alphabetic lookup within a pick box? I have a
> long list of data and it would help to have the list shorten up based on a
> the spelling of the name.

 
Reply With Quote
 
=?Utf-8?B?TWF0aGV3?=
Guest
Posts: n/a
 
      10th Jul 2007
Tom: I'm new at this could you help me a little more on comboboxs. I read
the help file but it didn't really help me!

"Tom Ogilvy" wrote:

> If your data is sorted, then you could use the Combobox from the Control
> Toolbox toolbar.
>
> --
> Regards,
> Tom Ogilvy
>
>
> "Mathew" wrote:
>
> > Is there any way to have an Alphabetic lookup within a pick box? I have a
> > long list of data and it would help to have the list shorten up based on a
> > the spelling of the name.

 
Reply With Quote
 
Gary Keramidas
Guest
Posts: n/a
 
      10th Jul 2007
if it's sorted you can use one of the matchentry properties for the combobox:

select the cobobox and press F4.

look for matchentry

fmMatchEntryFirstLetter 0 Basic matching. The control searches for the
next entry that starts with the character entered. Repeatedly typing the same
letter cycles through all entries beginning with that letter.
FmMatchEntryComplete 1 Extended matching. As each character is typed, the
control searches for an entry matching all characters entered (default).
FmMatchEntryNone 2 No matching.


--


Gary


"Mathew" <(E-Mail Removed)> wrote in message
news:B3DD224A-704B-4733-B00A-(E-Mail Removed)...
> Tom: I'm new at this could you help me a little more on comboboxs. I read
> the help file but it didn't really help me!
>
> "Tom Ogilvy" wrote:
>
>> If your data is sorted, then you could use the Combobox from the Control
>> Toolbox toolbar.
>>
>> --
>> Regards,
>> Tom Ogilvy
>>
>>
>> "Mathew" wrote:
>>
>> > Is there any way to have an Alphabetic lookup within a pick box? I have a
>> > long list of data and it would help to have the list shorten up based on a
>> > the spelling of the name.



 
Reply With Quote
 
=?Utf-8?B?VG9tIE9naWx2eQ==?=
Guest
Posts: n/a
 
      10th Jul 2007
Notice:

>FmMatchEntryComplete 1 Extended matching. As each character is typed, the
>control searches for an entry matching all characters entered (default).


says it is the default - This appears to be what the OP wanted so it should
require no additional action beyond assigning a sorted range of values in the
ListFillRange property.

--
Regards,
Tom Ogilvy


"Gary Keramidas" wrote:

> if it's sorted you can use one of the matchentry properties for the combobox:
>
> select the cobobox and press F4.
>
> look for matchentry
>
> fmMatchEntryFirstLetter 0 Basic matching. The control searches for the
> next entry that starts with the character entered. Repeatedly typing the same
> letter cycles through all entries beginning with that letter.
> FmMatchEntryComplete 1 Extended matching. As each character is typed, the
> control searches for an entry matching all characters entered (default).
> FmMatchEntryNone 2 No matching.
>
>
> --
>
>
> Gary
>
>
> "Mathew" <(E-Mail Removed)> wrote in message
> news:B3DD224A-704B-4733-B00A-(E-Mail Removed)...
> > Tom: I'm new at this could you help me a little more on comboboxs. I read
> > the help file but it didn't really help me!
> >
> > "Tom Ogilvy" wrote:
> >
> >> If your data is sorted, then you could use the Combobox from the Control
> >> Toolbox toolbar.
> >>
> >> --
> >> Regards,
> >> Tom Ogilvy
> >>
> >>
> >> "Mathew" wrote:
> >>
> >> > Is there any way to have an Alphabetic lookup within a pick box? I have a
> >> > long list of data and it would help to have the list shorten up based on a
> >> > the spelling of the name.

>
>
>

 
Reply With Quote
 
Gary Keramidas
Guest
Posts: n/a
 
      10th Jul 2007
know that, but who knows what options have ever been changed, so i just pointed
out where the option was for his knowledge.

--


Gary


"Tom Ogilvy" <(E-Mail Removed)> wrote in message
news6FAF552-16E7-43EF-A194-(E-Mail Removed)...
> Notice:
>
>>FmMatchEntryComplete 1 Extended matching. As each character is typed, the
>>control searches for an entry matching all characters entered (default).

>
> says it is the default - This appears to be what the OP wanted so it should
> require no additional action beyond assigning a sorted range of values in the
> ListFillRange property.
>
> --
> Regards,
> Tom Ogilvy
>
>
> "Gary Keramidas" wrote:
>
>> if it's sorted you can use one of the matchentry properties for the combobox:
>>
>> select the cobobox and press F4.
>>
>> look for matchentry
>>
>> fmMatchEntryFirstLetter 0 Basic matching. The control searches for the
>> next entry that starts with the character entered. Repeatedly typing the same
>> letter cycles through all entries beginning with that letter.
>> FmMatchEntryComplete 1 Extended matching. As each character is typed,
>> the
>> control searches for an entry matching all characters entered (default).
>> FmMatchEntryNone 2 No matching.
>>
>>
>> --
>>
>>
>> Gary
>>
>>
>> "Mathew" <(E-Mail Removed)> wrote in message
>> news:B3DD224A-704B-4733-B00A-(E-Mail Removed)...
>> > Tom: I'm new at this could you help me a little more on comboboxs. I read
>> > the help file but it didn't really help me!
>> >
>> > "Tom Ogilvy" wrote:
>> >
>> >> If your data is sorted, then you could use the Combobox from the Control
>> >> Toolbox toolbar.
>> >>
>> >> --
>> >> Regards,
>> >> Tom Ogilvy
>> >>
>> >>
>> >> "Mathew" wrote:
>> >>
>> >> > Is there any way to have an Alphabetic lookup within a pick box? I have
>> >> > a
>> >> > long list of data and it would help to have the list shorten up based on
>> >> > a
>> >> > the spelling of the name.

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pick Year and Pick Quarter Sweeds Microsoft Access Queries 1 29th Dec 2008 08:27 PM
Would I use "Lookup" to pick names for a Christmas grab bag =?Utf-8?B?RG9lYmFieQ==?= Microsoft Excel Worksheet Functions 13 7th Nov 2007 11:20 PM
lookup lists in alphabetic order cal Microsoft Access Form Coding 2 12th Sep 2006 02:29 PM
pick box based on pick box sorted - how do i store the contents of unbound contr georgezx9 via AccessMonster.com Microsoft Access Forms 0 24th May 2006 07:30 PM
Directory and File Display from Alphabetic reverse-Alphabetic =?Utf-8?B?VGVkRw==?= Windows XP Basics 2 13th Feb 2006 04:04 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:11 AM.