------------------------------------------------
Insert Code Below in Your App.Open Event
------------------------------------------------

UniHelp = New UniHelpEngine //Initialize UniHelp


------------------------------------------------
Customized Code for the Help Menu Item Handler
------------------------------------------------

Sub Action()

  Dim hlppage As FolderItem
  hlppage = UniHelp.HelpFolder.Child("K3Util.htm") //Set FolderItem of the help page you want displayed.
  UniHelp.Run(hlppage) //Display selected page in UniHelp Viewer!

End Sub


------------------------------------------------
Customized Code for the UniHelpEngine Method
(the constructor in the UniHelpEngine class)
------------------------------------------------

Sub UniHelpEngine()

  //**************************************
  // Edit the Properties Below to Customize UniHelp

  //Set autoset = TRUE for Default 700 x 400 centered window or
  //Set autoset = FALSE to set custom window width, height, etc.
  me.AutoSet = False

  //If autoset = FALSE, then customize UniHelp window size and positioning.
  UHelpWidth = 700
  UHelpHeight = 400
  UHelpTop = 80
  UHelpLeft = 50

  me.IconCategory = bookblue //category icon
  me.IconCategoryOpen = bookblueopen //open book icon
  me.IconPage = docwhite //document icon
  me.FontName = "Abadi MT Condensed Extra Bold" //Primary Default Font
  me.AltFont = "Abadi MT Condensed Extra Bold" //Alternate Default Font

  //Set RBScript Context for optional UHScript feature.
  me.ScriptObject = 

  //Set to FALSE when using help pages in a standard folder.
  //Set to TRUE when using help pages bundled in a Virtual Volume.
  me.UseVirtualVolume = False

  If me.UseVirtualVolume then //Its a Virtual Volume.
    me.VVInitialize( "Help.vv" ) //Set filename of your VirtualVolume file.
  Else //Its a standard folder.
    me.HelpFolder = GetFolderItem("Help") //Set name of your help folder.
  End If

  me.HomePage = "K3Util.htm" //Set Filename of the help page that will be the default home page.
  me.HelpTitle = "K3 Utility Help" //Set the window title of your help book.

  // Edit the Properties Above to Customize UniHelp
  //**************************************

End Sub
