home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
ib
/
setups
/
intrabld
/
data.z
/
SMADMIN.JCF
< prev
next >
Wrap
Text File
|
1996-12-11
|
2KB
|
51 lines
/****************************************************************************\
* *
* SmAdmin.jcf -- Security Administration Base Form Class *
* *
* This file contains the SecurityForm base custom form class definition. *
* custom form class is used as the basis of other form that are part of the *
* security administration prebuild business solution. It simply defines the *
* color scheme and the form header. To change the appearance of all the *
* forms in the security administration solution, simply change this base *
* form class. *
* *
* Dependencies: secur21.gif *
* *
* Updated 11/13/96 by IntraBuilder Samples Group *
* $Revision: 1.5 $ *
* *
* Copyright (c) 1996, Borland International, Inc. All rights reserved. *
* *
\****************************************************************************/
class SecurityForm extends Form custom {
with (this) {
color = "fff7c4";
height = 13;
left = 0;
top = 0;
width = 70;
title = "Security Administration";
}
with (this.logoImage = new Image(this)){
height = 3.4167;
width = 10.25;
dataSource = "filename SECUR21.GIF";
alignment = 4;
pageno = 0;
}
with (this.titleHTML = new HTML(this)){
height = 2;
left = 12;
width = 58;
color = "700070";
text = "<h1>Security Administration</h1>";
pageno = 0;
}
}