Menu

Heinz

Active Member
Licensed User
Longtime User
Is it possible to show menu items
at start of the programm without
to push the menu button ?

If my program starts, the user don't
know if a menu is implemented. sure,
i can display a text with the information.
the better way would be to show the
menu items directly at the start of the
program.

is it possible like
B4X:
Sub Activity_Create(FirstTime As Boolean)
   Activity.AddmenuItem(...)
   Activity.AddmenuItem(...)
   Activity.ShowMenu()
End Sub
?
 

stevel05

Expert
Licensed User
Longtime User
I've just been scouring the help and forums for this functionality, and will now wait patiently.

Thanks

Steve
 

Jim Brown

Active Member
Licensed User
Longtime User
Hi Erel

Do you plan to add other menu-related features? Such as:

Menu.RemoveItem(i)
Menu.Add2("name",bitmapicon)
Menu.Enabled=state
Menu.Visible=state
 
Top