WinFBE
WinFBE copied to clipboard
Keyword "End" by itself will cause parser to exclude the sub/function from the functions list
Example code to show the problem:
Sub __quit(msg As String = "")
db_write("(QUIT)")
If Len(Trim(msg)) Then Beep : db_write(cTab & msg)
set_removeImage()
End
End Sub
Workaround:
Change End to End(0) or End(1)