Switch page on opening of form

  • Thread starter Thread starter tombo
  • Start date Start date
T

tombo

I know it's not possible to modify the fields on the
first page of a task form. However, if I could write a
script to move the user to page 2 of the form on form
opening, then I could create the impression of a custom
first page. Any suggestions on the best way to do this?
Thanks.
 
Hello,

tombo said:
I know it's not possible to modify the fields on the
first page of a task form. However, if I could write a
script to move the user to page 2 of the form on form
opening, then I could create the impression of a custom
first page. Any suggestions on the best way to do this?
Thanks.

Item.GetInspector.SetCurrentFormPage "Name of the Page"
should do the trick.

Greetings
 
Hi Tombo,

Use this :
Item.GetInspector.SetCurrentFormPage("Custom tab name")
within Item_open event.

Regds
Natarajan
 
Back
Top