Bug? Intellisense not poping up for msgbox2

JohnC

Expert
Licensed User
Longtime User
When I enter the "(" at the end of the below line, the intellisense does not pop up to show me the parameter helper for the MsgBox2 function.

B4X:
Select Case Msgbox2(
 

Roycefer

Well-Known Member
Licensed User
Longtime User
Unless Case is a variable name (and it shouldn't be, you shouldn't use keywords as variable names), this is not valid B4X syntax.
 

JohnC

Expert
Licensed User
Longtime User
No, I am using it as in "Select Case [Variable]" where the variable is the value returned from the MsgBox2.

My use of the code works fine, it's just that the pop-up intellisense is not popping up to help me see what parameters the msgbox2 uses/needs.
 

JohnC

Expert
Licensed User
Longtime User
I figured it was a similar issue of the intellisense parser getting lost like it did with the double quotes in the same parameter issue I reported a few days ago.
 
Top