2010/12/27 Peter Williams <[email protected]>: > Hi All, > > I am trying to port some Delphi 5 or 7 (cannot recall which) to Lazarus. > > What do I change WM_USER to? I am getting Identifier not found. > > Here is the code: > > main.pas > > const > WM_USER_APPLICATION_MINIMIZE = WM_USER+1; > > // identifier not found WM_USER
Add the following use clause: uses Windows; R# -- _______________________________________________ Lazarus mailing list [email protected] http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
