Basic page

This sample page includes the PowerBuilder window ActiveX:

Under the title PowerBuilder Window Active X, the sample page includes a window displaying an employee list of three columns labeled  Employee I D, First Name, and Last Name. The window has horizontal and vertical scroll bars and is left-justified in the display area.

Here is the HTML code that produces this page (note the use of the Object element to specify the PowerBuilder window ActiveX):

<HTML>
<HEAD>
<TITLE>Employee List</TITLE>
</HEAD>
<BODY>
<H1>PowerBuilder window ActiveX</H1>
<P>
<OBJECT ID="PBRX1" NAME="PBRX1" WIDTH=357 HEIGHT=269
CLASSID="CLSID:AAAA1304-A5A5-1000-8000-080009AC61A9">
<PARAM NAME="_Version" VALUE="65536">
<PARAM NAME="_ExtentX" VALUE="9440">
<PARAM NAME="_ExtentY" VALUE="7112">
<PARAM NAME="_StockProps" VALUE="0">
<PARAM NAME="PBWindow" VALUE="w_emplist">
<PARAM NAME="LibList" VALUE="http://www.company.com/rknnt.pbd;">
<PARAM NAME="PBApplication" VALUE="rknnt">
<PARAM NAME="PBVersion" VALUE="105">
</OBJECT>
</BODY>
</HTML>