MenuButton is the name of your menu button.
However I was quite unsuccessful making the item of the Menu Button not visible. Maybe there is a trick, I did not find it
I ususally put couple of Menu Buttons one on top of another if I have to hide certain sub-button. So one of the menu buttons have this sub-button and another does not. So depending if I need to see the sub-button, I show the menu button in it. Have fun
To get it to redraw it on the form after you set the property, you usually have to call some type of update when you change a control to get the form to reflect what you did.
BTW: You may or may not want to save the record...
CurrForm.UPDATE[(SaveRecord)]
SaveRecord
Data type: boolean
You have these options:
If you want the system to...
Set SaveRecord to...
Save the current record TRUE
Update without saving the current record FALSE
Comments
No one loves you like the one who created you...
However I was quite unsuccessful making the item of the Menu Button not visible. Maybe there is a trick, I did not find it
Oleg
Depending on what you are trying to archive, there are work arounds for this, but none of them are "ideal".
Oleg
CurrForm.UPDATE;
To get it to redraw it on the form after you set the property, you usually have to call some type of update when you change a control to get the form to reflect what you did.
BTW: You may or may not want to save the record...
CurrForm.UPDATE[(SaveRecord)]
SaveRecord
Data type: boolean
You have these options:
If you want the system to...
Set SaveRecord to...
Save the current record TRUE
Update without saving the current record FALSE
No one loves you like the one who created you...