Topic: submenu in DBFILE

Hi
I need to disable the two options in the box in the attached figure. The object is a "dbfile"
Thanks

Post's attachments

Attachment icon preg.png 3.88 kb, 291 downloads since 2017-08-15 

Re: submenu in DBFILE

Hello.


Please download latest beta version
https://www.dropbox.com/s/4rfukqr2r1awq … b.zip?dl=0



Now you can disable these options

procedure Form1_DBFile1_OnRightButtonClick (Sender: string);
begin
    Form1.DBFile1.PopupMenu.Items.Items[1].Enabled := False;
    Form1.DBFile1.PopupMenu.Items.Items[2].Enabled := False;
    Form1.DBFile1.PopupMenu.Items.Items[3].Enabled := False;
end;
Dmitry.