M
Mike Wood
I have seen examples in (JScript referencing a HTML file) of a context
sensitive help in a task pane for an InfoPath form. Nice feature. I have
tried to replicate this using C# with InfoPath and have come to dead halt as
the object model appears to differ. If someone has worked this one out I
would really like to know how they did it. I know you need a reference to
Microsoft.mshtml and you can reference the task pane with
// Get a reference to the custom task pane. It is always the 0-th
// task pane in the TaskPanes collection.
HTMLTaskPane custom = (HTMLTaskPane) thisXDocument.View.Window.TaskPanes[0];
Then I am lost.
sensitive help in a task pane for an InfoPath form. Nice feature. I have
tried to replicate this using C# with InfoPath and have come to dead halt as
the object model appears to differ. If someone has worked this one out I
would really like to know how they did it. I know you need a reference to
Microsoft.mshtml and you can reference the task pane with
// Get a reference to the custom task pane. It is always the 0-th
// task pane in the TaskPanes collection.
HTMLTaskPane custom = (HTMLTaskPane) thisXDocument.View.Window.TaskPanes[0];
Then I am lost.