How does a form decide when to show the InputPanel icon?

  • Thread starter Thread starter Nicky Smith
  • Start date Start date
N

Nicky Smith

Hello,

I have an app that contains 3 forms.
The first form has a Mainmenu and always displays the InputPanel icon,
even though there are no text boxes or any other controls that can
accept input.

The next 2 forms can recieve input but don't display the Inputpanel
icon. Is this because only the first form has a Menu control on it?

-N
 
For input panel icon to be displayed the form must have MainMenu attached to
it, even if empty. Don't ask why.
 
Yes, it's because you have a Menu added to the Form. Note that the menu
doesn't have to have any items, it just must exist.

<ctacke/>
 
Back
Top