home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{9DFCCD4E-CE25-11D5-96B6-C0BBFEF90E16}#1.0#0"; "CRIPTER.OCX"
- Begin VB.Form Form1
- BorderStyle = 5 'Sizable ToolWindow
- Caption = "Esempio sull'utilizzo di Cripter"
- ClientHeight = 3735
- ClientLeft = 60
- ClientTop = 300
- ClientWidth = 6795
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3735
- ScaleWidth = 6795
- ShowInTaskbar = 0 'False
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton Command2
- Caption = "Decripta"
- Height = 255
- Left = 5400
- TabIndex = 7
- Top = 3240
- Width = 975
- End
- Begin VB.Frame Frame2
- Caption = "Frame2"
- Height = 1575
- Left = 120
- TabIndex = 4
- Top = 2040
- Width = 6615
- Begin VB.TextBox Text4
- Height = 375
- Left = 120
- TabIndex = 6
- Top = 720
- Visible = 0 'False
- Width = 6375
- End
- Begin VB.TextBox Text3
- Height = 375
- Left = 120
- TabIndex = 5
- Text = "Inserisci il testo da decriptare"
- Top = 240
- Width = 6375
- End
- End
- Begin VB.Frame Frame1
- Caption = "Cripta testo"
- Height = 1815
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 6615
- Begin VB.CommandButton Command1
- Caption = "Cripta"
- Height = 255
- Left = 5040
- TabIndex = 3
- Top = 1440
- Width = 1095
- End
- Begin VB.TextBox Text2
- Height = 495
- Left = 120
- TabIndex = 2
- Top = 840
- Visible = 0 'False
- Width = 6375
- End
- Begin VB.TextBox Text1
- Height = 495
- Left = 120
- TabIndex = 1
- Text = "Inserisci testo da criptare"
- Top = 240
- Width = 6375
- End
- End
- Begin Cript.Cripter Cripter1
- Left = 1800
- Top = 960
- _ExtentX = 3625
- _ExtentY = 1931
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Text2.Text = Cripter1.codifica(Text1.Text)
- Text2.Visible = True
- End Sub
- Private Sub Command2_Click()
- Text4.Text = Cripter1.Decodifica(Text3.Text)
- Text4.Visible = True
- End Sub
- Private Sub Text1_Click()
- Text1.Text = ""
- End Sub
- Private Sub Text3_Click()
- Text3.Text = ""
- End Sub
-