home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
ib
/
setups
/
intrabld
/
data.z
/
SELECT.CC
< prev
next >
Wrap
Text File
|
1996-12-11
|
1KB
|
30 lines
/****************************************************************************\
* *
* Select.cc -- Generic IntraBuilder Custom Controls *
* (used by the TMD project) *
* *
* *
* Updated 9/18/96 by IntraBuilder Publications Group *
* $Revision: 1.0 $ *
* *
* Copyright (c) 1996, Borland International, Inc. All rights reserved. *
* *
\****************************************************************************/
class FieldSelect(FormObj) extends Select(FormObj) custom {
this.rowset = null; // Create new custom properties
this.field = "";
function onServerLoad()
{
if ( this.rowset != null ) {
this.aOptions = new Array();
this.rowset.first();
while ( !this.rowset.endOfSet ) {
this.aOptions.add( this.rowset.fields[ this.field ].value );
this.rowset.next();
}
this.options = "array this.aOptions";
}
}
}