1 (edited by livexox 2019-05-20 23:14:25)

Topic: How to Hide Import and Export Menu MVD Version 5.4

Hello, I was able to hide the Import Menu but i'm getting an error message with export

        Form1.mniImport.Visible := False;  
        Form1.mniExport.Visible := False;        //   <-- This one does not work

Error Message Undeclared identifier: 'mniExport'. What should be the correct menu name?

Re: How to Hide Import and Export Menu MVD Version 5.4

Hello.

    Form1.mniImportData.Visible := False;
    Form1.mniExportData.Visible := False;
Dmitry.

Re: How to Hide Import and Export Menu MVD Version 5.4

Thanks it works.