| Object: | w_testwindow | Size: | 2772 |
| Comment: | This is a test window to show the documentation PBDoc is capable of producing v3.0.0 | Last Modified: | 03/18/2006 14:06 |
| Location: | d:\PB\PBDoc\prod\example\pbdoc_example_ansi.pbl<w_testwindow.srw> |
| Author: | Review Date: | 25/03/2006 14:32:38 | |
| Reviewer: | Signed: |
| Instance Vars: | None | Shared Vars: | None | External: | None |
| Functions: | 1 | Controls: | 3 | Events: | 1 |
| protected long ExampleControl ( uo_cb auo_CB ref ) | Comments |
/********************************************************************
ExampleControl
<DESC> This example function demostrates that if objects are
referenced as parameters to functions then they can be
recognised in the output as objects and become hyper
links to the documentaion of the object referenced.</DESC>
<RETURN> Return if the control was created ok
<li>1, control was created ok
<li>-1, control could not be created.</RETURN>
<ACCESS> Protected
<ARGS> auo_CB: Variable to receive the created control.</ARGS>
<USAGE> ll_RC = this.ExampleControl( my_CB )</USAGE>
********************************************************************/
RETURN 1
|
| w_testwindow::open () | Comments |
/********************************************************************
w_testwindow: Sample Test Window <EXCLUDE>
<OBJECT> This is a sample test window, there are various different
controls and events defined on the window to show how
PBDoc will produce documentation about the various
aspects of a window. The Also tags are used in this case
to ensure a dynamically created datawindow assignment is
included in the XREF.</OBJECT>
<DESC> Assign the datawindow to the control dynamically.</DESC>
<ALSO> d_testdatawindow</ALSO>
Date Ref Author Comments
12/02/2006 Ken Howe First Version
********************************************************************/
dw_1.DataObject = 'd_' + 'testdatawindow'
|