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