home *** CD-ROM | disk | FTP | other *** search
/ Freesoft 1997 May / Freesoft_1997-05_cd.bin / nerecenz / programers / CRYPT / Form1.frm next >
Text File  |  1997-04-02  |  1KB  |  49 lines

  1. VERSION 4.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   1980
  5.    ClientLeft      =   3330
  6.    ClientTop       =   2475
  7.    ClientWidth     =   2895
  8.    Height          =   2385
  9.    Left            =   3270
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   1980
  12.    ScaleWidth      =   2895
  13.    Top             =   2130
  14.    Width           =   3015
  15.    Begin VB.TextBox Text2 
  16.       Height          =   375
  17.       Left            =   360
  18.       TabIndex        =   2
  19.       Text            =   "Text2"
  20.       Top             =   1440
  21.       Width           =   2415
  22.    End
  23.    Begin VB.CommandButton Command1 
  24.       Caption         =   "Command1"
  25.       Height          =   375
  26.       Left            =   600
  27.       TabIndex        =   1
  28.       Top             =   720
  29.       Width           =   1815
  30.    End
  31.    Begin VB.TextBox Text1 
  32.       Height          =   375
  33.       Left            =   360
  34.       TabIndex        =   0
  35.       Text            =   "Text1"
  36.       Top             =   120
  37.       Width           =   2415
  38.    End
  39. End
  40. Attribute VB_Name = "Form1"
  41. Attribute VB_Creatable = False
  42. Attribute VB_Exposed = False
  43. Private Declare Function xcrypt Lib "xcrypt.dll" (Str As String) As String
  44.  
  45. Private Sub Command1_Click()
  46.     Text2.Text = xcrypt(Text1.Text)
  47. End Sub
  48.  
  49.