I do not understand.
My Activity have a menu with 3 items.
When I select the first (or 2 or 3) item I display the dialogbox and close it by pressing "OK"
If I try to reopen the menu .. does not open and the application quits!:sign0148:
Cristiano
Code in Activity_Create
Activity.AddMenuItem2("About","about",IconInfo)
Activity.AddMenuItem2("Help","help",IconHelp)
Activity.AddMenuItem2("Exit","exit",IconExit)
------------------------------------------------------------
Sub about_click
Dim xa As Int
xa = Msgbox2("Message...","Title","OK","","",IconInfo)
If xa = DialogResponse.POSITIVE Then
Return
End If
end sub
My Activity have a menu with 3 items.
When I select the first (or 2 or 3) item I display the dialogbox and close it by pressing "OK"
If I try to reopen the menu .. does not open and the application quits!:sign0148:
Cristiano
Code in Activity_Create
Activity.AddMenuItem2("About","about",IconInfo)
Activity.AddMenuItem2("Help","help",IconHelp)
Activity.AddMenuItem2("Exit","exit",IconExit)
------------------------------------------------------------
Sub about_click
Dim xa As Int
xa = Msgbox2("Message...","Title","OK","","",IconInfo)
If xa = DialogResponse.POSITIVE Then
Return
End If
end sub