home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1999 March / CDW0399.iso / Demos / HomePage / data1.cab / Program_Executable_Files / Homepage.exe / 1009 / 2021 < prev    next >
Encoding:
Text File  |  1997-12-10  |  1.3 KB  |  36 lines

  1. ///////////////////////////////////////////////////////////////////////////
  2. // TemplateDesc.txt (VDL 2021)
  3. // AUTHOR: Anthony C. Ard <anthony_ard@claris.com>, 10-Jun-97.
  4. // Copyright 1997 Claris
  5.  
  6. #include "StdVPref.txt"
  7.  
  8. ///////////////////////////////////////////////////////////////////////////
  9. // LOCALIZED NUMERICAL CONSTANTS BEGIN
  10.  
  11. /* This section contains integer constants that are used to format this VDL
  12.    program. These are localizable - they only need to be changed if the
  13.    localized strings are sufficiently longer than the US strings.  Localize
  14.    the strings first, then the constants. */
  15.  
  16. // Width of the whole dialog.
  17. #define kDialogWidth 420
  18.  
  19. ///////////////////////////////////////////////////////////////////////////
  20. // LOCALIZED NUMERICAL CONSTANTS END
  21. // No further localizable data past this point.
  22. // END LOCALIZABLE DATA
  23. ///////////////////////////////////////////////////////////////////////////
  24.  
  25. Margin( 10,10,10,10, BackColor =  Dialog, Width = kDialogWidth )
  26.     VList( Width = UseParent ) {
  27.         StaticText(prompt, Width = UseParent);
  28.         
  29.         Spacer( Height = 6, Width = 0, ScaleV );
  30.         EditText( result, Width = UseParent, BackColor = { 65535, 65535, 65535 } );
  31.         Spacer( Height = 6, Width = 0, ScaleV );
  32.         
  33.         Spacer( Height = 6, Width = 0, ScaleV );
  34.         StandardDialogButtonsH;        
  35.     }
  36.