Hi, I encounter a strange problem. It is about this code:
RECT rc;
rc.left = 1;
rc.top = 1;
I chose the member 'top' from the dropdown of suggestions, yet the third line gives me the errors:
error #2047: Expected a member name.
error #2001: Syntax error: expected ';' but found 'integer constant'.
error #2088: Lvalue required.
Yet 'top' is a member of RECT, and elsewhere in the program exactly the same line compiles fines...
Any suggestions?