home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 February / PCWorld_2003-02_cd.bin / Software / Topware / devpascal / devpas.exe / 0 / RCDATA / TDLLFORM / TDLLFORM.txt < prev   
Text File  |  2002-07-15  |  6KB  |  260 lines

  1. object DllForm: TDllForm
  2.   Left = 198
  3.   Top = 59
  4.   BorderIcons = [biSystemMenu, biHelp]
  5.   BorderStyle = bsDialog
  6.   Caption = 'New DLL project'
  7.   ClientHeight = 511
  8.   ClientWidth = 448
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -14
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   Icon.Data = {<image000.ico>}
  16.   OldCreateOrder = True
  17.   Position = poScreenCenter
  18.   PixelsPerInch = 120
  19.   TextHeight = 16
  20.   object Image1: TImage
  21.     Left = 10
  22.     Top = 10
  23.     Width = 39
  24.     Height = 39
  25.     Picture.Data = {<image001.ico>}
  26.   end
  27.   object Panel1: TPanel
  28.     Left = 59
  29.     Top = 10
  30.     Width = 385
  31.     Height = 70
  32.     BevelOuter = bvLowered
  33.     Color = 14811135
  34.     TabOrder = 0
  35.     object Label2: TLabel
  36.       Left = 1
  37.       Top = 1
  38.       Width = 365
  39.       Height = 64
  40.       Caption = 
  41.         'This dialog will help you creating all the necessay files for bu' +
  42.         'ilding a DLL. A project will be created containing the default D' +
  43.         'LL source code, and another project will be created for using th' +
  44.         'is DLL. Please fill-in the information below:'
  45.       WordWrap = True
  46.     end
  47.   end
  48.   object DllGroup: TGroupBox
  49.     Left = 10
  50.     Top = 98
  51.     Width = 316
  52.     Height = 201
  53.     Caption = 'DLL Project'
  54.     TabOrder = 1
  55.     object Label1: TLabel
  56.       Left = 10
  57.       Top = 25
  58.       Width = 112
  59.       Height = 16
  60.       Caption = 'DLL Project Name:'
  61.     end
  62.     object Label3: TLabel
  63.       Left = 10
  64.       Top = 84
  65.       Width = 131
  66.       Height = 16
  67.       Caption = 'DLL Project Filename:'
  68.     end
  69.     object Label4: TLabel
  70.       Left = 10
  71.       Top = 143
  72.       Width = 241
  73.       Height = 16
  74.       Caption = 'Main source filename (without extension):'
  75.     end
  76.     object DllName: TEdit
  77.       Left = 10
  78.       Top = 44
  79.       Width = 295
  80.       Height = 24
  81.       Hint = 'Type the name of your DLL project'
  82.       ParentShowHint = False
  83.       ShowHint = True
  84.       TabOrder = 0
  85.       Text = 'My First Dynamic Link Library'
  86.     end
  87.     object DllFileName: TEdit
  88.       Left = 10
  89.       Top = 103
  90.       Width = 295
  91.       Height = 24
  92.       Hint = 
  93.         'Click "Browse" to select a directory and a name for your DLL pro' +
  94.         'ject'
  95.       ParentShowHint = False
  96.       ShowHint = True
  97.       TabOrder = 1
  98.       Text = 'c:\'
  99.     end
  100.     object Panel2: TPanel
  101.       Left = 282
  102.       Top = 106
  103.       Width = 21
  104.       Height = 21
  105.       BevelOuter = bvNone
  106.       TabOrder = 2
  107.       object BrowseDllBtn: TSpeedButton
  108.         Left = 0
  109.         Top = 0
  110.         Width = 21
  111.         Height = 21
  112.         Caption = '...'
  113.         OnClick = BrowseDllBtnClick
  114.       end
  115.     end
  116.     object DllSourceName: TEdit
  117.       Left = 10
  118.       Top = 162
  119.       Width = 295
  120.       Height = 24
  121.       Hint = 
  122.         'You can change the name of the main DLL source (no extensions he' +
  123.         're)'
  124.       ParentShowHint = False
  125.       ShowHint = True
  126.       TabOrder = 3
  127.       Text = 'MainDll'
  128.     end
  129.   end
  130.   object DllTestGroup: TGroupBox
  131.     Left = 10
  132.     Top = 305
  133.     Width = 316
  134.     Height = 201
  135.     Caption = 'DLL Test Project'
  136.     TabOrder = 2
  137.     object Label5: TLabel
  138.       Left = 10
  139.       Top = 25
  140.       Width = 85
  141.       Height = 16
  142.       Caption = 'Project Name:'
  143.     end
  144.     object Label6: TLabel
  145.       Left = 10
  146.       Top = 84
  147.       Width = 131
  148.       Height = 16
  149.       Caption = 'DLL Project Filename:'
  150.     end
  151.     object Label7: TLabel
  152.       Left = 10
  153.       Top = 143
  154.       Width = 241
  155.       Height = 16
  156.       Caption = 'Main source filename (without extension):'
  157.     end
  158.     object TestDllName: TEdit
  159.       Left = 10
  160.       Top = 44
  161.       Width = 295
  162.       Height = 24
  163.       Hint = 'Type the name of your DLL project'
  164.       ParentShowHint = False
  165.       ShowHint = True
  166.       TabOrder = 0
  167.       Text = 'My First Test DLL'
  168.     end
  169.     object TestFileName: TEdit
  170.       Left = 10
  171.       Top = 103
  172.       Width = 295
  173.       Height = 24
  174.       Hint = 
  175.         'Click "Browse" to select a directory and a name for your DLL pro' +
  176.         'ject'
  177.       ParentShowHint = False
  178.       ShowHint = True
  179.       TabOrder = 1
  180.       Text = 'c:\'
  181.     end
  182.     object Panel3: TPanel
  183.       Left = 282
  184.       Top = 106
  185.       Width = 21
  186.       Height = 21
  187.       BevelOuter = bvNone
  188.       Caption = 'Panel3'
  189.       TabOrder = 2
  190.       object BrowseTestBtn: TSpeedButton
  191.         Left = 0
  192.         Top = 0
  193.         Width = 21
  194.         Height = 21
  195.         Caption = '...'
  196.         OnClick = BrowseTestBtnClick
  197.       end
  198.     end
  199.     object TestSourceName: TEdit
  200.       Left = 10
  201.       Top = 162
  202.       Width = 295
  203.       Height = 24
  204.       Hint = 
  205.         'You can change the name of the main DLL source (no extensions he' +
  206.         're)'
  207.       ParentShowHint = False
  208.       ShowHint = True
  209.       TabOrder = 3
  210.       Text = 'MainExe'
  211.     end
  212.   end
  213.   object BitBtn1: TBitBtn
  214.     Left = 345
  215.     Top = 106
  216.     Width = 92
  217.     Height = 43
  218.     Caption = '&OK'
  219.     TabOrder = 3
  220.     Kind = bkOK
  221.   end
  222.   object BitBtn2: TBitBtn
  223.     Left = 345
  224.     Top = 155
  225.     Width = 92
  226.     Height = 43
  227.     Caption = '&Cancel'
  228.     TabOrder = 4
  229.     Kind = bkCancel
  230.   end
  231.   object OpenDialog: TOpenDialog
  232.     DefaultExt = 'dp'
  233.     Filter = 'Dev-Pascal Project Files (*.dp)|*.dp'
  234.     Left = 304
  235.     Top = 32
  236.   end
  237.   object MarsCaption1: TMarsCaption
  238.     ActiveBeginColor = clBlack
  239.     ActiveEndColor = clFuchsia
  240.     ActiveFontColor = clWhite
  241.     InactiveBeginColor = clBlack
  242.     InactiveEndColor = clSilver
  243.     InactiveFontColor = clSilver
  244.     ApplicationNameFont.Charset = DEFAULT_CHARSET
  245.     ApplicationNameFont.Color = clWindowText
  246.     ApplicationNameFont.Height = -11
  247.     ApplicationNameFont.Name = 'MS Sans Serif'
  248.     ApplicationNameFont.Style = [fsBold]
  249.     CaptionFont.Charset = DEFAULT_CHARSET
  250.     CaptionFont.Color = clWindowText
  251.     CaptionFont.Height = -11
  252.     CaptionFont.Name = 'MS Sans Serif'
  253.     CaptionFont.Style = [fsBold]
  254.     NumColors = 64
  255.     AutoSize = False
  256.     Left = 280
  257.     Top = 32
  258.   end
  259. end
  260.