home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////////////////////////
- // TemplateDesc.txt (VDL 2021)
- // AUTHOR: Anthony C. Ard <anthony_ard@claris.com>, 10-Jun-97.
- // Copyright 1997 Claris
-
- #include "StdVPref.txt"
-
- ///////////////////////////////////////////////////////////////////////////
- // LOCALIZED NUMERICAL CONSTANTS BEGIN
-
- /* This section contains integer constants that are used to format this VDL
- program. These are localizable - they only need to be changed if the
- localized strings are sufficiently longer than the US strings. Localize
- the strings first, then the constants. */
-
- // Width of the whole dialog.
- #define kDialogWidth 420
-
- ///////////////////////////////////////////////////////////////////////////
- // LOCALIZED NUMERICAL CONSTANTS END
- // No further localizable data past this point.
- // END LOCALIZABLE DATA
- ///////////////////////////////////////////////////////////////////////////
-
- Margin( 10,10,10,10, BackColor = Dialog, Width = kDialogWidth )
- VList( Width = UseParent ) {
- StaticText(prompt, Width = UseParent);
-
- Spacer( Height = 6, Width = 0, ScaleV );
- EditText( result, Width = UseParent, BackColor = { 65535, 65535, 65535 } );
- Spacer( Height = 6, Width = 0, ScaleV );
-
- Spacer( Height = 6, Width = 0, ScaleV );
- StandardDialogButtonsH;
- }
-