Hi !
I am creating a programming language. Here's a snippet of how it's syntax looks like:I've added the Syntax Colorizing to it. But I don't know how to add intellisense support to it. I want it to be like VB.
Like after the keyword 'As' it displays a list showing all the types.
How would I do this ??? (An easy solution would be better :p )
Regards
I am creating a programming language. Here's a snippet of how it's syntax looks like:
Function GetPageSource
Accepts PageURL As String, ReportError As Condition
Let x As String = ""
Try
Return ResponseStream From PageURL
Capture Ex As Error
If ReportError
Display Ex.Message
End If
End Try
Like after the keyword 'As' it displays a list showing all the types.
How would I do this ??? (An easy solution would be better :p )
Regards