GuessPw.dfm
上传用户:hbtcygglw
上传日期:2007-01-07
资源大小:281k
文件大小:4k
源码类别:

其他

开发平台:

Delphi

  1. object GuessPassDlg: TGuessPassDlg
  2.   Left = 208
  3.   Top = 107
  4.   BorderStyle = bsDialog
  5.   Caption = 'OICQ密码暴力猜解'
  6.   ClientHeight = 144
  7.   ClientWidth = 392
  8.   Color = clBtnFace
  9.   Font.Charset = ANSI_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -12
  12.   Font.Name = '宋体'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poDesktopCenter
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 12
  19.   object Label1: TLabel
  20.     Left = 20
  21.     Top = 8
  22.     Width = 36
  23.     Height = 12
  24.     Caption = '猜解ID'
  25.   end
  26.   object Label2: TLabel
  27.     Left = 20
  28.     Top = 36
  29.     Width = 36
  30.     Height = 12
  31.     Caption = '线程数'
  32.   end
  33.   object Label3: TLabel
  34.     Left = 208
  35.     Top = 36
  36.     Width = 48
  37.     Height = 12
  38.     Caption = '超时(ms)'
  39.   end
  40.   object Label4: TLabel
  41.     Left = 8
  42.     Top = 64
  43.     Width = 48
  44.     Height = 12
  45.     Caption = '开始长度'
  46.   end
  47.   object Label5: TLabel
  48.     Left = 208
  49.     Top = 64
  50.     Width = 48
  51.     Height = 12
  52.     Caption = '结束长度'
  53.   end
  54.   object Label6: TLabel
  55.     Left = 16
  56.     Top = 96
  57.     Width = 72
  58.     Height = 12
  59.     Caption = '已经猜解个数'
  60.     Font.Charset = ANSI_CHARSET
  61.     Font.Color = clPurple
  62.     Font.Height = -12
  63.     Font.Name = '宋体'
  64.     Font.Style = []
  65.     ParentFont = False
  66.   end
  67.   object lbCounter: TLabel
  68.     Left = 100
  69.     Top = 96
  70.     Width = 6
  71.     Height = 12
  72.     Caption = '0'
  73.     Font.Charset = ANSI_CHARSET
  74.     Font.Color = clPurple
  75.     Font.Height = -12
  76.     Font.Name = '宋体'
  77.     Font.Style = []
  78.     ParentFont = False
  79.   end
  80.   object Label7: TLabel
  81.     Left = 208
  82.     Top = 8
  83.     Width = 48
  84.     Height = 12
  85.     Caption = '目标密码'
  86.   end
  87.   object Label8: TLabel
  88.     Left = 16
  89.     Top = 120
  90.     Width = 72
  91.     Height = 12
  92.     Caption = '剩余密码个数'
  93.     Font.Charset = ANSI_CHARSET
  94.     Font.Color = clPurple
  95.     Font.Height = -12
  96.     Font.Name = '宋体'
  97.     Font.Style = []
  98.     ParentFont = False
  99.   end
  100.   object lbLeftCounter: TLabel
  101.     Left = 100
  102.     Top = 120
  103.     Width = 6
  104.     Height = 12
  105.     Caption = '0'
  106.     Font.Charset = ANSI_CHARSET
  107.     Font.Color = clPurple
  108.     Font.Height = -12
  109.     Font.Name = '宋体'
  110.     Font.Style = []
  111.     ParentFont = False
  112.   end
  113.   object edTargetID: TEdit
  114.     Left = 60
  115.     Top = 4
  116.     Width = 121
  117.     Height = 20
  118.     TabOrder = 0
  119.   end
  120.   object edThreadNum: TSpinEdit
  121.     Left = 60
  122.     Top = 32
  123.     Width = 121
  124.     Height = 21
  125.     MaxValue = 100
  126.     MinValue = 1
  127.     TabOrder = 1
  128.     Value = 10
  129.   end
  130.   object edStartLen: TSpinEdit
  131.     Left = 60
  132.     Top = 60
  133.     Width = 121
  134.     Height = 21
  135.     MaxValue = 50
  136.     MinValue = 1
  137.     TabOrder = 2
  138.     Value = 1
  139.   end
  140.   object edStopLen: TSpinEdit
  141.     Left = 260
  142.     Top = 60
  143.     Width = 121
  144.     Height = 21
  145.     MaxValue = 50
  146.     MinValue = 1
  147.     TabOrder = 3
  148.     Value = 5
  149.   end
  150.   object edTimeOut: TSpinEdit
  151.     Left = 260
  152.     Top = 32
  153.     Width = 121
  154.     Height = 21
  155.     MaxValue = 5000
  156.     MinValue = 100
  157.     TabOrder = 4
  158.     Value = 500
  159.   end
  160.   object edPassword: TEdit
  161.     Left = 260
  162.     Top = 4
  163.     Width = 121
  164.     Height = 20
  165.     Color = clScrollBar
  166.     ReadOnly = True
  167.     TabOrder = 5
  168.   end
  169.   object btnStart: TButton
  170.     Left = 232
  171.     Top = 88
  172.     Width = 75
  173.     Height = 25
  174.     Caption = '开始'
  175.     TabOrder = 6
  176.     OnClick = btnStartClick
  177.   end
  178.   object btnStop: TButton
  179.     Left = 308
  180.     Top = 88
  181.     Width = 75
  182.     Height = 25
  183.     Caption = '停止'
  184.     TabOrder = 7
  185.     OnClick = btnStopClick
  186.   end
  187.   object btnSave: TButton
  188.     Left = 232
  189.     Top = 116
  190.     Width = 75
  191.     Height = 25
  192.     Caption = '保存'
  193.     Enabled = False
  194.     TabOrder = 8
  195.   end
  196.   object btnLoad: TButton
  197.     Left = 308
  198.     Top = 116
  199.     Width = 75
  200.     Height = 25
  201.     Caption = '读盘'
  202.     Enabled = False
  203.     TabOrder = 9
  204.   end
  205. end