Posted 18 years ago
by Dan Brown
-
Head of Development,
Oppono Ltd
Version: 4.0.0252
Environment: Windows XP (32-bit)
Hi
Not sure if this has already been reported but I cannot seem to invoke the member list drop drown inside an incomplete "If" statement. Hope I am not expecting too much since the line of code is incomplete but Visual Studio manages to do this?
Testing in the sample SyntaxEditor SDI Application:
Not sure if this has already been reported but I cannot seem to invoke the member list drop drown inside an incomplete "If" statement. Hope I am not expecting too much since the line of code is incomplete but Visual Studio manages to do this?
Testing in the sample SyntaxEditor SDI Application:
Public Class Class1
Public Shared Function TestFunc As Boolean
End Function
Public Shared Sub TestSub
End Sub
End Class
Public Class Class2
Public Shared Function TestSub As Boolean
Class1.TestSub() ' Member list displayed when . typed
If Class1. ' Member list not displayed . typed
End Function
End Class