Passer une variable d'un userform à un autre [VBA] - VB/VBA/VBS - Programmation
Marsh Posté le 08-02-2006 à 10:53:59
Voila je voudrai savoir comment on fait pour récupérer une variable d'un autre userform exempble tout bete: userform1 Private Sub CommandButton1_Click() Dim book book = ActiveWorkbook.Name MsgBox (book) UserForm1.Hide Load UserForm2 UserForm2.Show End Sub userform2 Private Sub CommandButton2_Click() MsgBox (book) End Sub Si il faut utiliser public variable as string. je sais pas ou la placer
Marsh Posté le 08-02-2006 à 11:15:45
Pour ta question initiale : on ne peut pas. Ta variable publique doit être déclarée dans un module.
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 08-02-2006 à 10:53:59
Voila je voudrai savoir comment on fait pour récupérer une variable d'un autre userform exempble tout bete:
userform1
Private Sub CommandButton1_Click()
Dim book
book = ActiveWorkbook.Name
MsgBox (book)
UserForm1.Hide
Load UserForm2
UserForm2.Show
End Sub
userform2
Private Sub CommandButton2_Click()
MsgBox (book)
End Sub
Si il faut utiliser public variable as string. je sais pas ou la placer