saveFileDialog disables SIP on "OK"
I've created a "Notes" textBox in my Pocket PC app. It's on a tabPage called "Notes".
When the user chooses the tabPage, the textBox gets the focus and forces InputPanel.enabled=true.
There's a "save" menu item (menuSave). When user chooses to save, the SaveFileDialog appears. I already added the handler for the dialogResult=ok event, so choosing Ok saves the file just fine. However, regardless of whether they tap OK or Cancel, the InputPanel is disabled when the Dialog closes.
I tried adding both InputPanel1.enabled = true and TextBox2.focus() to the handler for the menuSave.Click handler, with no improvement.
Any suggestions?
|