#7395
MA
Participant

    quote:


    How can i rename the “Formativ Portal”,


    Select ‘Advansys Formativ’ from Windows ‘Control Panel’ and rename the default portal folder name from the ‘User Interface’ tab.

    quote:


    how can i set the default page? I want that when a user click on the “Formativ” Portal”


    In the ‘User Interface’ tab above you can specify the applet to execute when the portal folder is selected. Here is some sample code to create a portal.

    dim oPortal
    dim oPortals

    set oPortals = GroupWise.PortalManager.Portals
    set oPortal = oPortals.Item(“MyCompany”)

    if oPortal is nothing Then
    set oPortal = oPortals.Add
    oPortal.Caption = “My Company”
    oPortal.TabCaption = “My Company”
    oPortal.ID = “MyCompany”
    oPortal.NavigationControlsEnabled = false
    oPortal.URLInputEnabled = false
    end If
    oPortal.Url = “http://www.advansyscorp.com”
    oPortal.Show
    oPortals.ActivePortal = oPortal.ID

    set oPortal = nothing
    set oPortals = nothing

    Thanks
    MA