Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel VBA editor "Auto List Members" broken

Status
Not open for further replies.

mintjulep

Technical User
Aug 20, 2004
1,536
0
36
JP
The VBA editor has always kindly made suggestions about what methods and properties are available while writing a line of code. For example:

Code:
Public Sub Do_Something()
    Worksheets(1).
End Sub

When I type the "." I expect a drop down list of the available objects, methods and properties that could be used here.

This feature is no longer working for me.

This would appear to be controlled from here:

VBA_editor_options_r4b8sm.png


And help tells me that Auto List Members is probably what I want.
Auto List Members: Displays a list that contains information that would logically complete the statement at the current insertion point.

As you can see, it is checked, so I expect it to work.

For reference the feature is working in the Word VBA editor.

Excel for Office 365 MSO (16.0.11328.20362) 32-bit
on Windows 10 Pro version 1709
Recently upgraded from Windows 7

Any suggestions appreciated.
 
[tt]Worksheets[red](1).[/red][/tt] will not give you intelisense, try:

Excel_list_zfhpbe.png


BTW - it is highly encouraged to have this checked:

Excel_list1_ifzn09.png


so you can get [tt]Option Explicit[/tt] at the top of (new) code added auto-magically...


---- Andy

There is a great need for a sarcasm font.
 
Hmm, ok. Maybe my expectations became un-calibrated.

It's my general habit to manually add "Option Explicit". Didn't know there was the option to have it added automagically. Nice.
 
@Andrzejek:

How do you get a screenshot with drop down menus still shown?
 
@mintjulep,
Regarding the screen shot, I'm not sure what Andy uses but Snag-It will do this and more. It's $50 but well worth it if you capture and edit a lot of screens. It will also capture video.

Duane
Minnesota
Hook'D on Access
MS Access MVP 2001-2016
 
>How do you get a screenshot with drop down menus still shown?
With the stuff you already have installed on your computer (no Snag-It)
[ul]
[li]Have on the screen what you want to show[/li]
[li]Hit Alt-PrintScreen (that will capture active window only)[/li]
[li]You can just hit PrintScreen to get everything[/li]
[li]Start Paint[/li]
[li]Ctrl-V to paste what I've captured in Alt-PrintScreen[/li]
[/ul]
I use Paint because of nice drawings of circles, arrows, colors etc. [pc2]

Did you get your Intellisense working?


---- Andy

There is a great need for a sarcasm font.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top