Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 80
Default Why did XL stopped showing me the Macro Commands List

I must have done something wrong. While I was in the VBE Editor working on a
macro, Excel2000 used to show me suitable commands as I type in...Now
suddenly it stopped. I'd appreciate if someone help me correct this.
TIA
Martyn





  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Why did XL stopped showing me the Macro Commands List

In the VBE, Click Tools--Options. On the Editor Tab check "Auto List
Members"

--
__________________
Robert Rosenberg
R-COR Consulting Services
Microsoft MVP - Excel

"Martyn" wrote in message
...
I must have done something wrong. While I was in the VBE Editor working on

a
macro, Excel2000 used to show me suitable commands as I type in...Now
suddenly it stopped. I'd appreciate if someone help me correct this.
TIA
Martyn







  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 80
Default Why did XL stopped showing me the Macro Commands List

Thanks Robert but "Auto List Members" is already checked.



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 63
Default Why did XL stopped showing me the Macro Commands List

Martyn,

I suppose you at the same time checked Auto Quick Info as well ?
That the component that's deciding about "adding the tips to your command
typing".

--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *

"Martyn" wrote in message
...
Thanks Robert but "Auto List Members" is already checked.





  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 80
Default Why did XL stopped showing me the Macro Commands List

Regards A.W.J. Ales,

Thanks for your reply. All Edit options were checked, including:
-------------
Auto Syntax Check
Require Variable Declaration
Auto List Members
Auto Quick Info
Auto Data Tips
---------
I removed the check from "Auto Quick Info" and try to type a command. It
make no changes...
What should be the "ideal" checked position of all options under Tools
Options in VBE Editor?. I may have made a mess out of the settings...

Martyn


"A.W.J. Ales" wrote in message
...
Martyn,

I suppose you at the same time checked Auto Quick Info as well ?
That the component that's deciding about "adding the tips to your command
typing".

--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *

"Martyn" wrote in message
...
Thanks Robert but "Auto List Members" is already checked.











  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 63
Default Why did XL stopped showing me the Macro Commands List

Martyn,

I don't know what YOUR ideal checked position would be.
As far as my setup is concerned, everythinh on the Editor Tab is checked and
I've set the Tab width to 3.
From this I think only Require Variable Declaration you should consider to
be *needed* to to be checked, but actually I should check everyone of them.
--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *

"Martyn" wrote in message
...
Regards A.W.J. Ales,

Thanks for your reply. All Edit options were checked, including:
-------------
Auto Syntax Check
Require Variable Declaration
Auto List Members
Auto Quick Info
Auto Data Tips
---------
I removed the check from "Auto Quick Info" and try to type a command. It
make no changes...
What should be the "ideal" checked position of all options under Tools
Options in VBE Editor?. I may have made a mess out of the settings...

Martyn


"A.W.J. Ales" wrote in message
...
Martyn,

I suppose you at the same time checked Auto Quick Info as well ?
That the component that's deciding about "adding the tips to your

command
typing".

--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *

"Martyn" wrote in message
...
Thanks Robert but "Auto List Members" is already checked.











  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Why did XL stopped showing me the Macro Commands List

2 more things to try:

1. Use the Debug--Compile command to see if your code runs into any
problems. If it does, fix the problem(s) until the command yields no errors.
Then try lising the members.

2. Reboot your machine.

--
__________________
Robert Rosenberg
R-COR Consulting Services
Microsoft MVP - Excel


"Martyn" wrote in message
...
Thanks Robert but "Auto List Members" is already checked.





  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 80
Default Why did XL stopped showing me the Macro Commands List

Hi Robert,
Thanks for your post.
It is good to be replied by a Microsoft MVP - Excel.
But what exactly am I to do in order to "try lising the members"?


"Robert Rosenberg" wrote in message
...
2 more things to try:

1. Use the Debug--Compile command to see if your code runs into any
problems. If it does, fix the problem(s) until the command yields no

errors.
Then try lising the members.

2. Reboot your machine.

--
__________________
Robert Rosenberg
R-COR Consulting Services
Microsoft MVP - Excel


"Martyn" wrote in message
...
Thanks Robert but "Auto List Members" is already checked.







  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Why did XL stopped showing me the Macro Commands List

Martyn,

Does CTRL+Spacebar bring up the list of items?


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Martyn" wrote in message
...
Hi Robert,
Thanks for your post.
It is good to be replied by a Microsoft MVP - Excel.
But what exactly am I to do in order to "try lising the

members"?


"Robert Rosenberg" wrote in message
...
2 more things to try:

1. Use the Debug--Compile command to see if your code runs

into any
problems. If it does, fix the problem(s) until the command

yields no
errors.
Then try lising the members.

2. Reboot your machine.

--
__________________
Robert Rosenberg
R-COR Consulting Services
Microsoft MVP - Excel


"Martyn" wrote in message
...
Thanks Robert but "Auto List Members" is already checked.









  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Why did XL stopped showing me the Macro Commands List

Do you declare you variables as

Dim rng as Range
Dim nm as Name

If you don't, then you won't get any intellisense because Excel doesn't know
what type of variable they are. You only get intellisense on typed
variables. Of course if you are getting nothing at all, then that wouldn't
be the problem.

--
Regards,
Tom Ogilvy

"Martyn" wrote in message
...
Hi Robert,
Thanks for your post.
It is good to be replied by a Microsoft MVP - Excel.
But what exactly am I to do in order to "try lising the members"?


"Robert Rosenberg" wrote in message
...
2 more things to try:

1. Use the Debug--Compile command to see if your code runs into any
problems. If it does, fix the problem(s) until the command yields no

errors.
Then try lising the members.

2. Reboot your machine.

--
__________________
Robert Rosenberg
R-COR Consulting Services
Microsoft MVP - Excel


"Martyn" wrote in message
...
Thanks Robert but "Auto List Members" is already checked.











  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,337
Default Why did XL stopped showing me the Macro Commands List

Try my solution posted in misc

--
Don Guillett
SalesAid Software

"Martyn" wrote in message
...
I must have done something wrong. While I was in the VBE Editor working on

a
macro, Excel2000 used to show me suitable commands as I type in...Now
suddenly it stopped. I'd appreciate if someone help me correct this.
TIA
Martyn







  #12   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 80
Default Why did XL stopped showing me the Macro Commands List

Thanks Don, posted my reply there...

"Don Guillett" wrote in message
...
Try my solution posted in misc

--
Don Guillett
SalesAid Software

"Martyn" wrote in message
...
I must have done something wrong. While I was in the VBE Editor working

on
a
macro, Excel2000 used to show me suitable commands as I type in...Now
suddenly it stopped. I'd appreciate if someone help me correct this.
TIA
Martyn









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
in excel 2000 work sheet excel commands are showing how to rectif murthy Excel Worksheet Functions 1 November 17th 07 02:08 AM
Why has Excel stopped showing colour changes to fonts & text? bdb Excel Discussion (Misc queries) 1 October 31st 07 02:21 AM
Excel has stopped showing graphs on seperate chart tabs JonesyAD Charts and Charting in Excel 0 September 13th 07 05:22 AM
Filtering a column, where it stopped showing records Reid_co Excel Worksheet Functions 1 September 8th 06 04:18 PM
Why did XL stopped showing me the Macro Commands list? Martyn Excel Programming 0 February 15th 04 07:24 AM


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

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

About Us

"It's about Microsoft Excel"