We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The copy of a toolbar-item from form-a and paste on form-b toolbar will fail (reader error):
Fix:
The DsgnItemEditor needs your own DesignWindows.pas
In the TDesignWindow add private error handler:
procedure ReaderErrorHandler (Reader: TReader; const Message: string; var Handled: Boolean);
Handler proc:
procedure TDesignWindow.ReaderErrorHandler (Reader: TReader; const Message: string; var Handled: Boolean);
Begin ShowMessage ('Reader Error on component and property: >>' + Message + '<<'); Handled := True; End;
add the OnError
try R.OnError := ReaderErrorHandler; R.OnSetName := ReaderSetName;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The copy of a toolbar-item from form-a and paste on form-b toolbar will fail (reader error):
Fix:
The DsgnItemEditor needs your own DesignWindows.pas
In the TDesignWindow add private error handler:
procedure ReaderErrorHandler (Reader: TReader; const Message: string; var Handled: Boolean);
Handler proc:
procedure TDesignWindow.ReaderErrorHandler (Reader: TReader; const Message: string; var Handled: Boolean);
Begin
ShowMessage ('Reader Error on component and property: >>' + Message + '<<');
Handled := True;
End;
add the OnError
The text was updated successfully, but these errors were encountered: