Unable to use backpace, arrow and del. keys

C

Corné Dekker

We are using c# code in a form in combination with a taskpane. Information
out of the taskpane is used to fill out fields in the form. After filling out
the fields we make the taskpane invisible using the property visible=false.
The backspace, arrow and delete keys can't be used after setting the property
to false.

This is the code we use:

public void OnClickEventDetailSectieButton(string naam, string postcode,
string straat, string huisnummer, string woonplaats, string identificatie)

{

IXMLDOMNode geselecteerdeNode;

geselecteerdeNode =
_xDocument.DOM.selectSingleNode("/ns1:LEVERENPREMIEINFORMATIEREQUEST/ns1:pREMIEINFO/ns1:INDIENER/ns1:NAAM");

Debug.Assert(geselecteerdeNode != null, "Node NAAM niet gevonden");

geselecteerdeNode.text = naam;

// hide taskpane

HTMLTaskPane taskPane = (HTMLTaskPane)_application.ActiveWindow.TaskPanes[0];

taskPane.Visible=false;

}


Has anyone encountered this problem before?
 
C

Corné Dekker

Greg,

it did not work, thanks anyway.
my colleague found a way around this issue:

hide the taskpane after entering a field on the form.


Corné
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top