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/ns1REMIEINFO/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?
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/ns1REMIEINFO/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?