DEFINE MESSAGE BAR is pre-processed incorrectly?
Posted: Thu Oct 13, 2011 9:31 am
The command 'DEFINE MESSAGE BAR of oWnd prompt "ABC" ' seems to be pre-processed into:
instead of
This caused a warning messsage during compilation, Warning W0001 Ambiguous reference 'BAR'
Tested with Harbour+FWH11.8
Is this a bug or I did something wrong?
Code: Select all | Expand
BAR:= oWnd:oMsgBar := TMsgBar():New( oWnd, "ABC", .F., .F., .F., .F.,,,,, .F., if( .F., .F., .F. ) )
instead of
Code: Select all | Expand
oWnd:oMsgBar := TMsgBar():New( oWnd, "ABC", .F., .F., .F., .F.,,,,, .F., if( .F., .F., .F. ) )
This caused a warning messsage during compilation, Warning W0001 Ambiguous reference 'BAR'
Tested with Harbour+FWH11.8
Is this a bug or I did something wrong?