bonjour a tous
alors voila mon probléme :
j'ai un groupe de bouton d'option grace auquel je souhaite faire une "selection" et afficher l'etat selectionné. J'ai donc 3 bouton d'option : Cocher77, Cocher75, Cocher73 et un bouton "ok" Commande38 qui valide la selection et j'ai crée ce code mais sans succes
alors voila si quelqu'un peu m'aider ....
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 Private Sub Commande38_Click() Dim stDocName2005 As String Dim stDocName2003 As String Dim stDocName2004 As String stDocName2003 = "E_Nouveau_Marche 2003 (total)" stDocName2005 = "E_Nouveau_Marche 2005 (total)" stDocName2004 = "E_Nouveau_Marche 2004 (total)" If Cocher73.Value = True Then DoCmd.OpenReport stDocName2003, acViewPreview ElseIf Cocher75.Value = True Then DoCmd.OpenReport stDocName2004, acViewPreview Else DoCmd.OpenReport stDocName2005, acViewPreview End If End Sub
merci d'anvance
Partager