Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Auto List Members

Can anyone assist? I have a problem with Auto List Members, in
particular how reliably they appear or not appear. I often use
Sheets("mySheet"). when I enter the "dot" there is no Auto List
produced. How come?
Similarly, I am currently working with commandbars, in particular the
code below:

Set DDown = CommandBars("myToolbar").controls.add
(Type:=msoControlDropdown)
with DDown
.Caption = "myDropDown" ' Caption does appear in Autolist
members
.Style = msoButtonAutomatic 'Style does not appear neither
does the mso constants
end with

Why is this so inconsistent? Or is it something I don't know?
Your help on any or all aspects of this problem would be appreciated

Thanks
David G
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 897
Default Auto List Members

If you declare a Worksheet object and set an object reference to the
sheet, you should get the dropdown after you press "."

For example:

Dim mysht As Excel.Worksheet
Set mysht = Worksheets("Sheet1")
mysht.


HTH,
JP

On Apr 26, 9:02*pm, David_G wrote:
Can anyone assist? *I have a problem with Auto List Members, in
particular how reliably they appear or not appear. *I often use
Sheets("mySheet"). *when I enter the "dot" there is no Auto List
produced. *How come?
Similarly, I am currently working with commandbars, in particular the
code below:

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Auto List Members

On Apr 27, 3:42*pm, JP wrote:
If you declare a Worksheet object and set an object reference to the
sheet, you should get the dropdown after you press "."

For example:

Dim mysht As Excel.Worksheet
Set mysht = Worksheets("Sheet1")
mysht.

HTH,
JP

On Apr 26, 9:02*pm, David_G wrote:



Can anyone assist? *I have a problem with Auto List Members, in
particular how reliably they appear or not appear. *I often use
Sheets("mySheet"). *when I enter the "dot" there is no Auto List
produced. *How come?
Similarly, I am currently working with commandbars, in particular the
code below:- Hide quoted text -


- Show quoted text -


Thanks JP,
I understand where you are coming from on the Sheets example. Yes I
have declared a variable and then referenced it, Yes it works.
However what my question is aiming at is what is the guiding
principle(s) that this behaviour is following?? In other words is
this behaviour random? or is this a Systematic event?
I am working with coding commandbars at the moment and I'm finding
there is a high rate of this type of behaviour, i.e. Auto List not
showed.
So, is it true that if this behaviour occurs (no Auto List Members),
then the object variable is not declared properly? If this is true
then I can point to more instances where the object variable is
declared and there is still no auto list members.
Hopefully I can get an understanding,
Thanks
David G
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 897
Default Auto List Members

I reread your original post, and it looks like you are using DDown as
an object reference to a dropdown box, for which a button style
(msoButtonAutomatic) is not appropriate.

From a brief check of the MSDN website, the Style property only
applies to objects instantiated as CommandBarButton or
CommandBarComboBox.

What are you declaring the DDown object as?

--JP

On Apr 29, 6:19*pm, David_G wrote:
On Apr 27, 3:42*pm, JP wrote:





If you declare a Worksheet object and set an object reference to the
sheet, you should get the dropdown after you press "."


For example:


Dim mysht As Excel.Worksheet
Set mysht = Worksheets("Sheet1")
mysht.


HTH,
JP


On Apr 26, 9:02*pm, David_G wrote:


Can anyone assist? *I have a problem with Auto List Members, in
particular how reliably they appear or not appear. *I often use
Sheets("mySheet"). *when I enter the "dot" there is no Auto List
produced. *How come?
Similarly, I am currently working with commandbars, in particular the
code below:- Hide quoted text -


- Show quoted text -


Thanks JP,
I understand where you are coming from on the Sheets example. *Yes I
have declared a variable and then referenced it, Yes it works.
However what my question is aiming at is what is the guiding
principle(s) that this behaviour is following?? *In other words *is
this behaviour random? or is this a Systematic event?
I am working with coding commandbars at the moment and I'm finding
there is a high rate of this type of behaviour, i.e. Auto List not
showed.
So, is it true that if this behaviour occurs (no Auto List Members),
then the object variable is not declared properly? *If this is true
then I can point to more instances where the object variable is
declared and there is still no auto list members.
Hopefully I can get an understanding,
Thanks
David G- Hide quoted text -

- Show quoted text -


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
array formula to extract members of list A that are not in list B [email protected] Excel Programming 5 February 12th 08 09:50 PM
Auto List Members rarely works Jeff[_42_] Excel Programming 0 July 18th 06 07:21 AM
Creating a list of aproved/not members loopoo[_6_] Excel Programming 5 November 21st 05 03:41 PM
Scrolling through Auto List members list Hari Prasadh Excel Programming 3 January 30th 05 05:27 AM
Problem with auto list members in VBA Blegos Excel Programming 2 September 8th 03 09:38 PM


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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"