lucksjb Posted March 27, 2013 Posted March 27, 2013 This routine is with error a:= 1; b:= 1; // in this code if a=b then begin showmessage( 'A = B', // this message don´t showed procedure(Res: Integer) begin CLOSE end ); end; showmessage('Just this message is showed '); I know this using the follow workaround : a:= 1; b:= 1; // in this code if a=b then begin showmessage( 'A = B'); // this message is displayed end else begin showmessage('this message don´t showed '); end; How can I do it using callback ? tnx advanced Luciano Quote
Administrators Farshad Mohajeri Posted March 27, 2013 Administrators Posted March 27, 2013 Moved to General. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.