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

  1. object DbgForm: TDbgForm
  2.   Left = 176
  3.   Top = 128
  4.   BorderIcons = []
  5.   BorderStyle = bsDialog
  6.   Caption = 'GNU Debugger'
  7.   ClientHeight = 260
  8.   ClientWidth = 570
  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.   OldCreateOrder = True
  16.   OnActivate = FormActivate
  17.   PixelsPerInch = 120
  18.   TextHeight = 16
  19.   object Label1: TLabel
  20.     Left = 10
  21.     Top = 10
  22.     Width = 513
  23.     Height = 48
  24.     Caption = 
  25.       'You are now going to debug your application. Make sure you have ' +
  26.       'already compiled it into an executable file before continuing an' +
  27.       'd that "Generate debugging informations" is checked (Linker shee' +
  28.       't in Compiler Options).'
  29.     WordWrap = True
  30.   end
  31.   object Label2: TLabel
  32.     Left = 10
  33.     Top = 69
  34.     Width = 548
  35.     Height = 48
  36.     Caption = 
  37.       'The GNU Debugger (GDB) works in console mode. Your compiled file' +
  38.       ' to debug will be assigned to it. Then, you will be asked to typ' +
  39.       'e commands into GDB that it can correctly debug your program.'
  40.     WordWrap = True
  41.   end
  42.   object Label3: TLabel
  43.     Left = 10
  44.     Top = 138
  45.     Width = 431
  46.     Height = 32
  47.     Caption = 
  48.       'Click on the Help button to learn all the commands of GDB. Then,' +
  49.       ' click on Continue to debug your program.'
  50.     WordWrap = True
  51.   end
  52.   object Bevel1: TBevel
  53.     Left = 7
  54.     Top = 217
  55.     Width = 553
  56.     Height = 3
  57.     Shape = bsBottomLine
  58.   end
  59.   object ContinueBtn: TBitBtn
  60.     Left = 10
  61.     Top = 226
  62.     Width = 92
  63.     Height = 31
  64.     Caption = '&Continue'
  65.     TabOrder = 0
  66.     OnClick = ContinueBtnClick
  67.     Kind = bkOK
  68.   end
  69.   object Cancel: TBitBtn
  70.     Left = 111
  71.     Top = 226
  72.     Width = 92
  73.     Height = 31
  74.     Caption = 'C&ancel'
  75.     TabOrder = 1
  76.     Kind = bkCancel
  77.   end
  78.   object HelpBtn: TBitBtn
  79.     Left = 463
  80.     Top = 226
  81.     Width = 92
  82.     Height = 31
  83.     TabOrder = 2
  84.     OnClick = HelpBtnClick
  85.     Kind = bkHelp
  86.   end
  87.   object Msg: TCheckBox
  88.     Left = 10
  89.     Top = 187
  90.     Width = 336
  91.     Height = 21
  92.     Caption = '&Never show this message again. (Not recommended)'
  93.     TabOrder = 3
  94.   end
  95. end
  96.