home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 121 / Computer Shopper 121 / Computer Shopper 121.iso / Editor.ial / Program / FORM1.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-12-15  |  914 b   |  35 lines

  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.CommandButton Command1 
  13.       Caption         =   "Command1"
  14.       Height          =   975
  15.       Left            =   960
  16.       TabIndex        =   0
  17.       Top             =   600
  18.       Width           =   2055
  19.    End
  20. Attribute VB_Name = "Form1"
  21. Attribute VB_GlobalNameSpace = False
  22. Attribute VB_Creatable = False
  23. Attribute VB_PredeclaredId = True
  24. Attribute VB_Exposed = False
  25. Private Sub Command1_Click()
  26. Dim c As New Crypt
  27. c.PassWord = "Shopper"
  28. Dim test As String
  29. test = "Hello World"
  30. c.encrypt test, True
  31. Print test
  32. c.decrypt test, True
  33. Print test
  34. End Sub
  35.