How I can assign the operations to standard menu items?
• OnAppendRecord event will be called with record append/insert in datasource • OnEditRecord event will be called with record editing in datasource • OnDeleteRecord event will be called with record deleting in datasource • OnPostData event will be called with post record in dataset • OnCancelData event will be called with cancel record in dataset • OnRefreshData event will be called with refresh item click • OnPrintData event will be called with print item click • OnExportData event will be called with export item click • OnSetupGrid event will be called with Setup of grid item click All these events are very useful. For example, you can assign a procedure for append record, where you will create a new dialog with controls for every field. And always if your end-user will append the new record, your dialog will be shown. Note that if you not assigned the code for some events then corresponded menu items will be hidden.