Options

menu item visible/invisible

i1hi1h Member Posts: 3
hi

Can you help me?

How can I make menu item visible/invisible at runtime

Comments

  • Options
    Luc_VanDyckLuc_VanDyck Member, Moderator, Administrator Posts: 3,633
    You can't. The only option is to create 2 menubuttons, one with and one without your menu. Give both menubuttons a (different) name, and use
    CurrForm.Menu1.VISIBLE = TRUE;
    CurrForm.Menu2.VISIBLE = FALSE;
    
    to hide one menubutton and show the other.
    No support using PM or e-mail - Please use this forum. BC TechDays 2024: 13 & 14 June 2024, Antwerp (Belgium)
  • Options
    i1hi1h Member Posts: 3
    Thanks a lot
Sign In or Register to comment.