Did you know...
That one of the new features of OIPI.Net is the ability to define input controls(textboxes, radio buttons, etc.) that are created on the form and allow user interaction. The additional Set_Printer messages are INPUT_TEXTBOX,INPUT_RADIOBUTTON,INPUT_CHECKBOX, andINPUT_COMBOBOX. Below is a sample code snippet:
DefaultValue = "LastName,FirstName" toolTip = "Enter the last and first name" xPos = 0 yPos = 3.5 posn = "" posn<1> = xPos posn<2> = yPos x = Set_Printer("INPUT_TEXTBOX", DefaultValue, toolTip, posn)
Did you know...
That you can configure the use of OIPI versus OIPI.Net by application, and not just globally. Specific control records can be created in the SYSENV table to fine-tune the control of OIPI. OpenInsight first looks for:
CFG_OIPI*<dbid>*<userid> then CFG_OIPI*<dbid> and lastly CFG_OIPI
It is then possible to have users of application "ABC" using OIPI, while everyone else uses OIPI.Net or vice versa.
Field 1 of each control record should be either VSPRINTER for OIPI or VSPRINTER2for OIPI.Net
|