home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / ib / setups / intrabld / data.z / SMADMIN.JCF < prev    next >
Text File  |  1996-12-11  |  2KB  |  51 lines

  1. /****************************************************************************\
  2. *                                                                            *
  3. * SmAdmin.jcf  --  Security Administration Base Form Class                   *
  4. *                                                                            *
  5. * This file contains the SecurityForm base custom form class definition.     *
  6. * custom form class is used as the basis of other form that are part of the  *
  7. * security administration prebuild business solution. It simply defines the  *
  8. * color scheme and the form header. To change the appearance of all the      *
  9. * forms in the security administration solution, simply change this base     *
  10. * form class.                                                                *
  11. *                                                                            *
  12. * Dependencies:  secur21.gif                                                 *
  13. *                                                                            *
  14. * Updated 11/13/96 by IntraBuilder Samples Group                             *
  15. * $Revision:   1.5  $                                                        *
  16. *                                                                            *
  17. * Copyright (c) 1996, Borland International, Inc. All rights reserved.       *
  18. *                                                                            *
  19. \****************************************************************************/
  20. class SecurityForm extends Form custom {
  21.    with (this) {
  22.       color = "fff7c4";
  23.       height = 13;
  24.       left = 0;
  25.       top = 0;
  26.       width = 70;
  27.       title = "Security Administration";
  28.    }
  29.  
  30.  
  31.    with (this.logoImage = new Image(this)){
  32.       height = 3.4167;
  33.       width = 10.25;
  34.       dataSource = "filename SECUR21.GIF";
  35.       alignment = 4;
  36.       pageno = 0;
  37.    }
  38.  
  39.  
  40.    with (this.titleHTML = new HTML(this)){
  41.       height = 2;
  42.       left = 12;
  43.       width = 58;
  44.       color = "700070";
  45.       text = "<h1>Security Administration</h1>";
  46.       pageno = 0;
  47.    }
  48.  
  49.  
  50. }
  51.