mirror of
https://github.com/fedapo/vb6-parser.git
synced 2025-12-16 16:27:03 +03:00
40 lines
930 B
Plaintext
40 lines
930 B
Plaintext
VERSION 5.00
|
|
Begin VB.Form prova_form
|
|
Caption = "prova_form"
|
|
ClientHeight = 3030
|
|
ClientLeft = 120
|
|
ClientTop = 450
|
|
ClientWidth = 4560
|
|
LinkTopic = "Form1"
|
|
ScaleHeight = 3030
|
|
ScaleWidth = 4560
|
|
StartUpPosition = 3 'Windows Default
|
|
Begin VB.CommandButton Command1
|
|
Caption = "Command1"
|
|
Height = 375
|
|
Index = 0
|
|
Left = 360
|
|
TabIndex = 0
|
|
Top = 240
|
|
Width = 1095
|
|
End
|
|
End
|
|
Attribute VB_Name = "prova_form"
|
|
Attribute VB_GlobalNameSpace = False
|
|
Attribute VB_Creatable = False
|
|
Attribute VB_PredeclaredId = True
|
|
Attribute VB_Exposed = False
|
|
Option Explicit
|
|
|
|
Public id As Integer
|
|
|
|
Private Sub Command1_Click(Index As Integer)
|
|
|
|
End Sub
|
|
|
|
Private Sub Form_Load()
|
|
Debug.Print "== prova_form.Load =="
|
|
|
|
Debug.Print id
|
|
End Sub
|