Débutant
j'ai un formulaire aec un bouton pour détruire les tables si elles existent, sinon j'ouvre l'importation. Pb : lorsque que l'utilisateur importe pas de pb en revanche s'il renonce à l'importation, ce n'est pas considéré come une erreur. Commet faire ? Merci
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 Commande21_Click() On Error GoTo Err_Commande21_Click If ExistTable("TABLEA") Then DoCmd.DeleteObject acTable, "TABLEA" DoCmd.DeleteObject acTable, "TABLEB" DoCmd.RunCommand acCmdImport MsgBox "Les fichiers ont été importés", vbInformation Else [color=red]DoCmd.RunCommand acCmdImport MsgBox "Les fichiers ont été importés", vbInformation[/color] End If Exit_Commande21_Click: Exit Sub Err_Commande21_Click: MsgBox "L'importation a été abandonnée", vbInformation End Sub
Partager