Comment puis-je passer un ou plisieurs paramètres d'un form a l'autre
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
ex:
 
Public Class FrmClients
 
Private Sub BtnViewLan_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnViewLan.Click
dim IdCLient as integer
 
 
IdCLient=  Val(LblIdClient.Text)
 
 
 je veux afficher ce form en lui passant le paramètre IdCLient
 
            FrmViewLanCLient.Show   ???????????????
 
 
      End Sub
 
End Class