PC Review


Reply
Thread Tools Rate Thread

Combo drop down list

 
 
=?Utf-8?B?YXJ0?=
Guest
Posts: n/a
 
      27th Nov 2006
Is there a way when I make a combo drop down list, and in the list are a lot
of names, is there a way that I should be able to type for E.G. the letter
"r" and it should jump to the names starting with a "r".
 
Reply With Quote
 
 
 
 
Dave Peterson
Guest
Posts: n/a
 
      28th Nov 2006
Use a combobox from the control toolbox.

Set its .matchentry property to fmMatchEntryFirstLetter
(And .style to fmStyleDropDownList)

art wrote:
>
> Is there a way when I make a combo drop down list, and in the list are a lot
> of names, is there a way that I should be able to type for E.G. the letter
> "r" and it should jump to the names starting with a "r".


--

Dave Peterson
 
Reply With Quote
 
=?Utf-8?B?YXJ0?=
Guest
Posts: n/a
 
      28th Nov 2006
Thanks, but I'm not so great in programing, I don't understand what you
wrote. Anyhow I think you mean I should use the control combo down list, but
I used the combo down from the "forms" not from the "control". I don't know
how to write VBA. Please help.

"Dave Peterson" wrote:

> Use a combobox from the control toolbox.
>
> Set its .matchentry property to fmMatchEntryFirstLetter
> (And .style to fmStyleDropDownList)
>
> art wrote:
> >
> > Is there a way when I make a combo drop down list, and in the list are a lot
> > of names, is there a way that I should be able to type for E.G. the letter
> > "r" and it should jump to the names starting with a "r".

>
> --
>
> Dave Peterson
>

 
Reply With Quote
 
Corey
Guest
Posts: n/a
 
      28th Nov 2006
add a combobox from the control toolbox,
then with the macro code that your existing forms combobox calls, note the
macro name:
EG.
sub macro1()
bla bla bla
end sub

in theabove the macro name is "macro1"

If you click on the design view icon then double click the contol combobox
you just added.
Place Call "Macro Name" in there.
this should run the current macro that yopu are using for the forms
combobox.

Then while in design mode, click on the properties icon when highlighting
the contol combobox.
Then look down the list for the :
..matchentry property
pick as per what Dave posted
then go scroll to the
style to fmStyleDropDownList
and pick the Dave posted item also.
Exit diesign mode and your done.

Corey....
"art" <(E-Mail Removed)> wrote in message
news:1CDA2C39-4847-44A2-AB69-(E-Mail Removed)...
> Thanks, but I'm not so great in programing, I don't understand what you
> wrote. Anyhow I think you mean I should use the control combo down list,
> but
> I used the combo down from the "forms" not from the "control". I don't
> know
> how to write VBA. Please help.
>
> "Dave Peterson" wrote:
>
>> Use a combobox from the control toolbox.
>>
>> Set its .matchentry property to fmMatchEntryFirstLetter
>> (And .style to fmStyleDropDownList)
>>
>> art wrote:
>> >
>> > Is there a way when I make a combo drop down list, and in the list are
>> > a lot
>> > of names, is there a way that I should be able to type for E.G. the
>> > letter
>> > "r" and it should jump to the names starting with a "r".

>>
>> --
>>
>> Dave Peterson
>>



 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      28th Nov 2006
And just to add to Corey's response.

You'll probably want to change the .listfillrange and .linkedcell, too.

The .listfillrange will work like the input range of the Forms dropdown.

The .linkedcell will work like the cell link.

But instead of getting an index into the input range, the linked cell will
contain the value you want.

Corey wrote:
>
> add a combobox from the control toolbox,
> then with the macro code that your existing forms combobox calls, note the
> macro name:
> EG.
> sub macro1()
> bla bla bla
> end sub
>
> in theabove the macro name is "macro1"
>
> If you click on the design view icon then double click the contol combobox
> you just added.
> Place Call "Macro Name" in there.
> this should run the current macro that yopu are using for the forms
> combobox.
>
> Then while in design mode, click on the properties icon when highlighting
> the contol combobox.
> Then look down the list for the :
> .matchentry property
> pick as per what Dave posted
> then go scroll to the
> style to fmStyleDropDownList
> and pick the Dave posted item also.
> Exit diesign mode and your done.
>
> Corey....
> "art" <(E-Mail Removed)> wrote in message
> news:1CDA2C39-4847-44A2-AB69-(E-Mail Removed)...
> > Thanks, but I'm not so great in programing, I don't understand what you
> > wrote. Anyhow I think you mean I should use the control combo down list,
> > but
> > I used the combo down from the "forms" not from the "control". I don't
> > know
> > how to write VBA. Please help.
> >
> > "Dave Peterson" wrote:
> >
> >> Use a combobox from the control toolbox.
> >>
> >> Set its .matchentry property to fmMatchEntryFirstLetter
> >> (And .style to fmStyleDropDownList)
> >>
> >> art wrote:
> >> >
> >> > Is there a way when I make a combo drop down list, and in the list are
> >> > a lot
> >> > of names, is there a way that I should be able to type for E.G. the
> >> > letter
> >> > "r" and it should jump to the names starting with a "r".
> >>
> >> --
> >>
> >> Dave Peterson
> >>


--

Dave Peterson
 
Reply With Quote
 
=?Utf-8?B?YXJ0?=
Guest
Posts: n/a
 
      28th Nov 2006
It didn't work the first part. How am I supposed to do first. After I made
from the control toolbar a combo dropdown list where am I supposed to put the
?Macro name?? And what should put "macro name" or the name of the macro?
Please help, I'm not so familiar with programming.

"Dave Peterson" wrote:

> And just to add to Corey's response.
>
> You'll probably want to change the .listfillrange and .linkedcell, too.
>
> The .listfillrange will work like the input range of the Forms dropdown.
>
> The .linkedcell will work like the cell link.
>
> But instead of getting an index into the input range, the linked cell will
> contain the value you want.
>
> Corey wrote:
> >
> > add a combobox from the control toolbox,
> > then with the macro code that your existing forms combobox calls, note the
> > macro name:
> > EG.
> > sub macro1()
> > bla bla bla
> > end sub
> >
> > in theabove the macro name is "macro1"
> >
> > If you click on the design view icon then double click the contol combobox
> > you just added.
> > Place Call "Macro Name" in there.
> > this should run the current macro that yopu are using for the forms
> > combobox.
> >
> > Then while in design mode, click on the properties icon when highlighting
> > the contol combobox.
> > Then look down the list for the :
> > .matchentry property
> > pick as per what Dave posted
> > then go scroll to the
> > style to fmStyleDropDownList
> > and pick the Dave posted item also.
> > Exit diesign mode and your done.
> >
> > Corey....
> > "art" <(E-Mail Removed)> wrote in message
> > news:1CDA2C39-4847-44A2-AB69-(E-Mail Removed)...
> > > Thanks, but I'm not so great in programing, I don't understand what you
> > > wrote. Anyhow I think you mean I should use the control combo down list,
> > > but
> > > I used the combo down from the "forms" not from the "control". I don't
> > > know
> > > how to write VBA. Please help.
> > >
> > > "Dave Peterson" wrote:
> > >
> > >> Use a combobox from the control toolbox.
> > >>
> > >> Set its .matchentry property to fmMatchEntryFirstLetter
> > >> (And .style to fmStyleDropDownList)
> > >>
> > >> art wrote:
> > >> >
> > >> > Is there a way when I make a combo drop down list, and in the list are
> > >> > a lot
> > >> > of names, is there a way that I should be able to type for E.G. the
> > >> > letter
> > >> > "r" and it should jump to the names starting with a "r".
> > >>
> > >> --
> > >>
> > >> Dave Peterson
> > >>

>
> --
>
> Dave Peterson
>

 
Reply With Quote
 
Corey
Guest
Posts: n/a
 
      28th Nov 2006
In design mode double click the command button, and look to see where your
flashing cursor is.
This is where you place the code.


Corey....
"art" <(E-Mail Removed)> wrote in message
news:0D96AEC7-FC35-4EB0-B2B4-(E-Mail Removed)...
> It didn't work the first part. How am I supposed to do first. After I made
> from the control toolbar a combo dropdown list where am I supposed to put
> the
> ?Macro name?? And what should put "macro name" or the name of the macro?
> Please help, I'm not so familiar with programming.
>
> "Dave Peterson" wrote:
>
>> And just to add to Corey's response.
>>
>> You'll probably want to change the .listfillrange and .linkedcell, too.
>>
>> The .listfillrange will work like the input range of the Forms dropdown.
>>
>> The .linkedcell will work like the cell link.
>>
>> But instead of getting an index into the input range, the linked cell
>> will
>> contain the value you want.
>>
>> Corey wrote:
>> >
>> > add a combobox from the control toolbox,
>> > then with the macro code that your existing forms combobox calls, note
>> > the
>> > macro name:
>> > EG.
>> > sub macro1()
>> > bla bla bla
>> > end sub
>> >
>> > in theabove the macro name is "macro1"
>> >
>> > If you click on the design view icon then double click the contol
>> > combobox
>> > you just added.
>> > Place Call "Macro Name" in there.
>> > this should run the current macro that yopu are using for the forms
>> > combobox.
>> >
>> > Then while in design mode, click on the properties icon when
>> > highlighting
>> > the contol combobox.
>> > Then look down the list for the :
>> > .matchentry property
>> > pick as per what Dave posted
>> > then go scroll to the
>> > style to fmStyleDropDownList
>> > and pick the Dave posted item also.
>> > Exit diesign mode and your done.
>> >
>> > Corey....
>> > "art" <(E-Mail Removed)> wrote in message
>> > news:1CDA2C39-4847-44A2-AB69-(E-Mail Removed)...
>> > > Thanks, but I'm not so great in programing, I don't understand what
>> > > you
>> > > wrote. Anyhow I think you mean I should use the control combo down
>> > > list,
>> > > but
>> > > I used the combo down from the "forms" not from the "control". I
>> > > don't
>> > > know
>> > > how to write VBA. Please help.
>> > >
>> > > "Dave Peterson" wrote:
>> > >
>> > >> Use a combobox from the control toolbox.
>> > >>
>> > >> Set its .matchentry property to fmMatchEntryFirstLetter
>> > >> (And .style to fmStyleDropDownList)
>> > >>
>> > >> art wrote:
>> > >> >
>> > >> > Is there a way when I make a combo drop down list, and in the list
>> > >> > are
>> > >> > a lot
>> > >> > of names, is there a way that I should be able to type for E.G.
>> > >> > the
>> > >> > letter
>> > >> > "r" and it should jump to the names starting with a "r".
>> > >>
>> > >> --
>> > >>
>> > >> Dave Peterson
>> > >>

>>
>> --
>>
>> Dave Peterson
>>



 
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
combo box to drop down list G Herman Microsoft Access Forms 1 4th Jul 2009 07:27 PM
Combo box, drop down list =?Utf-8?B?dmFhNTcx?= Microsoft Access 4 6th Jul 2007 02:02 PM
Combo Box - drop down list Jim Smith Microsoft Access Forms 2 4th Sep 2004 02:23 PM
Re: Combo Box drop down list Debra Dalgleish Microsoft Excel Misc 0 29th Apr 2004 04:17 PM
creating a drop-down list in a cell (NOT a combo or list box) Carrie Microsoft Excel Worksheet Functions 4 29th Jul 2003 05:46 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:54 PM.