Hi,
One way to do this is to get the focus to the control where you want to go
by code using code such as :
IXMLDOMNode oNode =
thisApplication.ActiveWindow.XDocument.DOM.selectSingleNode(YourTargetNodePAth);
thisApplication.ActiveWindow.XDocument.View.SelectText(oNode,Missing.Value);
For example, you can write code to "jump" to a textbox or to an optional
section that way.
If you store the path of your source control in a global var, you can use it
to jump back in the right place after you switch back to your original View.
Hope that helps.
Franck Dauché
> Is there a way to save and set the scroll position in a view (similar to
> scrollTop property in DHTML)?
[quoted text clipped - 6 lines]
>
> Thanks!
ChipD - 02 Sep 2005 03:21 GMT
That works great. Thanks!

Signature
Chip Davis
> Hi,
>
[quoted text clipped - 24 lines]
> >
> > Thanks!