| 1 |
VERSION 5.00 |
| 2 |
Begin VB.Form Form1 |
| 3 |
Caption = "Form1" |
| 4 |
ClientHeight = 3195 |
| 5 |
ClientLeft = 60 |
| 6 |
ClientTop = 345 |
| 7 |
ClientWidth = 4680 |
| 8 |
LinkTopic = "Form1" |
| 9 |
ScaleHeight = 3195 |
| 10 |
ScaleWidth = 4680 |
| 11 |
StartUpPosition = 3 'Windows Default |
| 12 |
Begin VB.TextBox Text_Output |
| 13 |
Height = 285 |
| 14 |
Left = 360 |
| 15 |
TabIndex = 2 |
| 16 |
Top = 930 |
| 17 |
Width = 3975 |
| 18 |
End |
| 19 |
Begin VB.TextBox Text_Input |
| 20 |
Height = 285 |
| 21 |
Left = 360 |
| 22 |
TabIndex = 1 |
| 23 |
Top = 600 |
| 24 |
Width = 3975 |
| 25 |
End |
| 26 |
Begin VB.CommandButton Command_Go |
| 27 |
Caption = "&Go" |
| 28 |
Height = 435 |
| 29 |
Left = 1410 |
| 30 |
TabIndex = 0 |
| 31 |
Top = 1920 |
| 32 |
Width = 1635 |
| 33 |
End |
| 34 |
End |
| 35 |
Attribute VB_Name = "Form1" |
| 36 |
Attribute VB_GlobalNameSpace = False |
| 37 |
Attribute VB_Creatable = False |
| 38 |
Attribute VB_PredeclaredId = True |
| 39 |
Attribute VB_Exposed = False |
| 40 |
Private Sub Command_Go_Click() |
| 41 |
Text_Output.Text = MD5String(Text_Input.Text) |
| 42 |
End Sub |