Apr 22, 2002 #1 delphiman Programmer Dec 13, 2001 422 ZA Can anyone out there suggest why (all of a sudden) I get a "Undeclared Identifier" exception wherever I put this in my code? ShowMessage ('We get here'); What have I done/not done? TERRY
Can anyone out there suggest why (all of a sudden) I get a "Undeclared Identifier" exception wherever I put this in my code? ShowMessage ('We get here'); What have I done/not done? TERRY
Apr 22, 2002 #2 Ronin441 Programmer Feb 22, 2002 128 AU ShowMessage() is in the module Dialogs. Make sure this module is in your uses clause. -- Doug Burbidge mailto:doug@ultrazone.com http://home.iprimus.com.au/dougburbidge/ Upvote 0 Downvote
ShowMessage() is in the module Dialogs. Make sure this module is in your uses clause. -- Doug Burbidge mailto:doug@ultrazone.com http://home.iprimus.com.au/dougburbidge/
Apr 23, 2002 Thread starter #3 delphiman Programmer Dec 13, 2001 422 ZA Of course ....!! Where was my mind? Thanks Doug. Upvote 0 Downvote