home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Utilitare / xvi / XVI32.exe / 0 / RCDATA / TFORMSCRIPT / TFORMSCRIPT.txt
Text File  |  2003-08-02  |  7KB  |  269 lines

  1. object FormScript: TFormScript
  2.   Left = 207
  3.   Top = 168
  4.   AutoScroll = False
  5.   Caption = 'XVIscript interpreter'
  6.   ClientHeight = 277
  7.   ClientWidth = 427
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Menu = MainMenu1
  15.   OldCreateOrder = True
  16.   OnCloseQuery = FormCloseQuery
  17.   OnCreate = FormCreate
  18.   OnDestroy = FormDestroy
  19.   OnShow = FormShow
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object PanelBottom: TPanel
  23.     Left = 0
  24.     Top = 242
  25.     Width = 427
  26.     Height = 35
  27.     Align = alBottom
  28.     BevelOuter = bvNone
  29.     TabOrder = 2
  30.     object ButtonExecute: TButton
  31.       Left = 115
  32.       Top = 6
  33.       Width = 85
  34.       Height = 25
  35.       HelpContext = 75
  36.       Caption = 'Execute'
  37.       TabOrder = 1
  38.       OnClick = ButtonExecuteClick
  39.     end
  40.     object ButtonClose: TButton
  41.       Left = 227
  42.       Top = 6
  43.       Width = 85
  44.       Height = 25
  45.       HelpContext = 71
  46.       Cancel = True
  47.       Caption = 'Close'
  48.       ModalResult = 1
  49.       TabOrder = 2
  50.     end
  51.     object ButtonHelp: TButton
  52.       Left = 331
  53.       Top = 6
  54.       Width = 85
  55.       Height = 25
  56.       HelpContext = 71
  57.       Caption = '&Help'
  58.       TabOrder = 3
  59.       OnClick = ButtonHelpClick
  60.     end
  61.     object ButtonSyntax: TButton
  62.       Left = 7
  63.       Top = 6
  64.       Width = 85
  65.       Height = 25
  66.       HelpContext = 75
  67.       Caption = 'Syntax Check'
  68.       TabOrder = 0
  69.       OnClick = ButtonSyntaxClick
  70.     end
  71.   end
  72.   object PanelTop: TPanel
  73.     Left = 0
  74.     Top = 0
  75.     Width = 427
  76.     Height = 25
  77.     Align = alTop
  78.     BevelOuter = bvNone
  79.     TabOrder = 0
  80.     object CMBtnOpen: TCMBtn
  81.       Left = 7
  82.       Top = 0
  83.       Width = 25
  84.       Height = 25
  85.       Enabled = True
  86.       PopupMark = True
  87.       onClick = Open1Click
  88.     end
  89.     object CMBtnSave: TCMBtn
  90.       Left = 32
  91.       Top = 0
  92.       Width = 25
  93.       Height = 25
  94.       PopupMark = True
  95.       onClick = Save1Click
  96.     end
  97.   end
  98.   object MemoScript: TMemo
  99.     Left = 0
  100.     Top = 25
  101.     Width = 427
  102.     Height = 217
  103.     HelpContext = 71
  104.     Align = alClient
  105.     Font.Charset = DEFAULT_CHARSET
  106.     Font.Color = clBlack
  107.     Font.Height = -13
  108.     Font.Name = 'Courier New'
  109.     Font.Style = []
  110.     HideSelection = False
  111.     ParentFont = False
  112.     ScrollBars = ssBoth
  113.     TabOrder = 1
  114.     WordWrap = False
  115.   end
  116.   object MainMenu1: TMainMenu
  117.     Left = 204
  118.     object Script1: TMenuItem
  119.       Caption = '&Script'
  120.       HelpContext = 71
  121.       object Open1: TMenuItem
  122.         Caption = '&Open...'
  123.         ShortCut = 16463
  124.         OnClick = Open1Click
  125.       end
  126.       object Save1: TMenuItem
  127.         Caption = '&Save'
  128.         Enabled = False
  129.         ShortCut = 16467
  130.         OnClick = Save1Click
  131.       end
  132.       object Saveas1: TMenuItem
  133.         Caption = 'Save &as'
  134.         OnClick = Saveas1Click
  135.       end
  136.       object N1: TMenuItem
  137.         Caption = '-'
  138.       end
  139.       object Exit1: TMenuItem
  140.         Caption = 'E&xit'
  141.         OnClick = Exit1Click
  142.       end
  143.     end
  144.     object Insertcommand1: TMenuItem
  145.       Caption = '&Insert command'
  146.       HelpContext = 77
  147.       object Address1: TMenuItem
  148.         Caption = '&Address'
  149.         object ADR2: TMenuItem
  150.           Caption = '&ADR <dec. or $hex address>'
  151.           OnClick = InsertCommandClick
  152.         end
  153.         object ADR3: TMenuItem
  154.           Caption = 'ADR&+ <dec. or $hex count>'
  155.           OnClick = InsertCommandClick
  156.         end
  157.         object ADR1: TMenuItem
  158.           Caption = 'ADR&- <dec. or $hex count>'
  159.           OnClick = InsertCommandClick
  160.         end
  161.         object ADREOFgotoendoffile1: TMenuItem
  162.           Caption = 'ADR&EOF (go to end of file)'
  163.           OnClick = InsertCommandClick
  164.         end
  165.       end
  166.       object Bitwiseoperations1: TMenuItem
  167.         Caption = '&Bitwise operations'
  168.         object BITANDhexbyte1: TMenuItem
  169.           Caption = 'BIT&AND <hex byte> [byte count]'
  170.           OnClick = InsertCommandClick
  171.         end
  172.         object BITNOT1: TMenuItem
  173.           Caption = 'BIT&NOT [byte count]'
  174.           OnClick = InsertCommandClick
  175.         end
  176.         object BITORhexbyte1: TMenuItem
  177.           Caption = 'BIT&OR <hex byte> [byte count]'
  178.           OnClick = InsertCommandClick
  179.         end
  180.         object BITSHLbitcount1: TMenuItem
  181.           Caption = 'BITSH&L <bit count> [byte count]'
  182.           OnClick = InsertCommandClick
  183.         end
  184.         object BITSHRbitcount1: TMenuItem
  185.           Caption = 'BITSH&R <bit count> [byte count]'
  186.           OnClick = InsertCommandClick
  187.         end
  188.         object BITXORhexbyte1: TMenuItem
  189.           Caption = 'BIT&XOR <hex byte> [byte count]'
  190.           OnClick = InsertCommandClick
  191.         end
  192.       end
  193.       object CHARCONxctfilename1: TMenuItem
  194.         Caption = '&CHARCON <XCT file name>'
  195.         OnClick = InsertCommandClick
  196.       end
  197.       object DELADRdecorhexcount1: TMenuItem
  198.         Caption = '&DEL <dec. or $hex count>'
  199.         OnClick = InsertCommandClick
  200.       end
  201.       object QUIT1: TMenuItem
  202.         Caption = '&EXIT (terminate script execution)'
  203.         OnClick = InsertCommandClick
  204.       end
  205.       object Find1: TMenuItem
  206.         Caption = '&Find'
  207.         object FINDhexstring1: TMenuItem
  208.           Caption = '&FIND <hex string>'
  209.           OnClick = InsertCommandClick
  210.         end
  211.         object FINDASCstring1: TMenuItem
  212.           Caption = 'FIND&ASC <string>'
  213.           OnClick = InsertCommandClick
  214.         end
  215.       end
  216.       object INSERThexstring1: TMenuItem
  217.         Caption = '&INSERT <hex string>'
  218.         OnClick = InsertCommandClick
  219.       end
  220.       object Joker1: TMenuItem
  221.         Caption = '&Joker'
  222.         object JOKERONhexchar1: TMenuItem
  223.           Caption = '&JOKERON <hex char> (for FIND, REPLACE; e.g. 2E)'
  224.           OnClick = InsertCommandClick
  225.         end
  226.         object JOKEROFF1: TMenuItem
  227.           Caption = 'JOKER&OFF (turn joker char off for FIND, REPLACE)'
  228.           OnClick = InsertCommandClick
  229.         end
  230.       end
  231.       object MSGmessage1: TMenuItem
  232.         Caption = '&MSG <message> (display message)'
  233.         OnClick = InsertCommandClick
  234.       end
  235.       object OVERWRITEhexstring1: TMenuItem
  236.         Caption = '&OVERWRITE <hex string>'
  237.         OnClick = InsertCommandClick
  238.       end
  239.       object REM2: TMenuItem
  240.         Caption = 'R&EM <remark>'
  241.         OnClick = InsertCommandClick
  242.       end
  243.       object Replace1: TMenuItem
  244.         Caption = '&Replace'
  245.         object REPLhexstringBYhexstring1: TMenuItem
  246.           Caption = '&REPLACE <hex string> BY <hex string>'
  247.           OnClick = InsertCommandClick
  248.         end
  249.         object REPLACEASCstringBYstring1: TMenuItem
  250.           Caption = 'REPLACE&ASC <string> BY <string>'
  251.           OnClick = InsertCommandClick
  252.         end
  253.         object REPLACEALLhexstringBYhexstring1: TMenuItem
  254.           Caption = 'REPLACEA&LL <hex string> BY <hex string>'
  255.           OnClick = InsertCommandClick
  256.         end
  257.         object REPLACEALLASCstringBYstring1: TMenuItem
  258.           Caption = 'REPLACEALLAS&C <string> BY <string>'
  259.           OnClick = InsertCommandClick
  260.         end
  261.       end
  262.       object VERIFYhexstring1: TMenuItem
  263.         Caption = '&VERIFY <hex string> [OR <hex string>...] (joker: ??)'
  264.         OnClick = InsertCommandClick
  265.       end
  266.     end
  267.   end
  268. end
  269.