1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
Public Class Form1
Property Matricule() As String
Get
Return Me.TxtMatricule.Text
End Get
Set(ByVal Value As String)
Me.TxtMatricule.Text = Value
End Set
End Property
Property Nom() As String
Get
Return Me.TxtNom.Text
End Get
Set(ByVal Value As String)
Me.TxtNom.Text = Value
End Set
End Property
Property Prenom() As String
Get
Return Me.TxtPrenom.Text
End Get
Set(ByVal Value As String)
Me.TxtPrenom.Text = Value
End Set
End Property
Public Sub New()
' Cet appel est requis par le concepteur.
InitializeComponent()
' Ajoutez une initialisation quelconque après l'appel InitializeComponent().
Matricule = "375605"
Nom = "tracoma"
Prenom = "l'invincible"
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Me.TxtMatricule.Text = Matricule
Me.TxtNom.Text = Nom
Me.TxtPrenom.Text = Prenom
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If My.Forms.Form2.ShowDialog = DialogResult.OK Then
Matricule = My.Forms.Form2.Matricule
Nom = My.Forms.Form2.Nom
Prenom = My.Forms.Form2.Prenom
End If
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
If My.Forms.Form3.ShowDialog = DialogResult.OK Then
Matricule = My.Forms.Form3.Matricule
Nom = My.Forms.Form3.Nom
Prenom = My.Forms.Form3.Prenom
End If
End Sub
End Class |
Partager