Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Browser Web - Form2.vb

Form2.vb

Caricato da: Progman-92
Scarica il programma completo

  1. Public Class Form2
  2.  
  3.     Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  4.         Me.Text = "Info Su..." & Form1.Text.ToString
  5.         Me.Label6.Text = Form1.Text.ToString
  6.     End Sub
  7.  
  8.    
  9.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  10.         Me.Close()
  11.     End Sub
  12. End Class