Ronak Posted December 14, 2012 Posted December 14, 2012 Hello, How can I Hide/Unhide Menu of MainForm MainForm.Menu :=nil // not working http://delphi.about.com/od/delphitips2007/qt/mainmenuhide.htm Regards Quote
Sherzod Posted June 13 Posted June 13 45 minutes ago, diegojmap said: I need the same solution Hello, Do you want to show and hide as needed? Quote
diegojmap Posted June 13 Posted June 13 I need to hide the entire MainMenu. MainForm.Menu :=nil // not working. Quote
Sherzod Posted June 13 Posted June 13 8 minutes ago, diegojmap said: I need to hide the entire MainMenu. MainForm.Menu :=nil // not working. Try this approach for now: procedure TMainForm.UniButton1Click(Sender: TObject); begin if Menu <> nil then JSInterface.JSCall('down("toolbar").hide', []) //show end; 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.