I have a Lazarus program which was developed in Linux and functions correctly, and I'm trying to port it to Windows. The Lazarus version is 0.9.30.4 in both cases.
This is a snippet of the code:
var
ABitmap: TBitmap;
..
begin
..
ABitmap := TBitmap.Create;
..
end;
When I try to build the program it stops with the cursor at the start of 'Create' and shows the message:
Error: identifier idents no member "Create"
What's happening?