When working in VS2008 in a large aspx file, the program stops updating the JScript intellisense.
Is this their way to turn it off?
It is not listed in Tools> Options> Text Editor. You already have AllLanguages.AutoListMembers and AllLanguages.ParameterInformation disabled.
EDIT: VS2008 did not install sp1. As to why it does not have SP1, I do not know. Not listed in my Microsoft updates. Forced manual installation. AARRGGGHHHHHHH !!!!!! 1!
EDIT 2: After an hour and a half, and SP1 is installed and updated. By the way, these are the macros that I use to disable and on intellisense:
Sub Intellisense_Off()
Dim textEditor As Properties
textEditor = DTE.Properties("TextEditor", "AllLanguages")
textEditor.Item("AutoListMembers").Value = False
textEditor.Item("AutoListParams").Value = False
End Sub
Sub Intellisense_On()
Dim textEditor As Properties
textEditor = DTE.Properties("TextEditor", "AllLanguages")
textEditor.Item("AutoListMembers").Value = True
textEditor.Item("AutoListParams").Value = True
End Sub