At the end of an already dozen times compiled code of exactly 9014 lines I simply add another SUB. It's original trial content is:
Sub blahblahblah()
Local lRet As Long
Local Hwnd As Long
End sub
The thrown out error message is:
Statement expected
Line 9017: Local lRet As Long
Statement expected - A PowerBASIC statement was expected. Some character could not be identified as a statement, metastatement, or variable.
Replacing the added four lines with any other sequence gives always back the same error.
How can interpret this?
Sub blahblahblah()
Local lRet As Long
Local Hwnd As Long
End sub
The thrown out error message is:
Statement expected
Line 9017: Local lRet As Long
Statement expected - A PowerBASIC statement was expected. Some character could not be identified as a statement, metastatement, or variable.
Replacing the added four lines with any other sequence gives always back the same error.
How can interpret this?
Comment