Aperçu feuil de calcul excel depuis access

Fermé
mohammed - 13 févr. 2005 à 10:20
 mohammed - 14 févr. 2005 à 10:32
Salut,
je voudrais voir un aperçu une feuille de calcule excel depuis access mais mon ord se plante.
pourquoi?
Merci
A voir également:

1 réponse

salut, voici le code que j'ai usé.
Private Sub Commande15_Click()
Dim xl_app As New Excel.Application
Dim objexcel As Object
Dim XL_Feuille As Object
Dim dbs As Database, rst As DAO.Recordset
Dim a As Integer, b As Integer
With xl_app
Set objexcel = Workbooks.Open("C:\atelier\link.xls")
Set XL_Feuille = objexcel.Sheets("feuil1")
End With
b = Me.Modifiable13.Value
Set dbs = CurrentDb
Set rst = dbs.OpenRecordset("admis")
Do While Not rst.EOF
If rst![cclp] = b Then
If rst![trage] = 1 Then
If rst![SEXE] = "HOMME" Then
XL_Feuille.Range("d8").Value = rst![nbre]
Else
XL_Feuille.Range("e8").Value = rst![nbre]
End If
End If
If rst![trage] = 2 Then
…..
If rst![trage] = 7 Then
If rst![SEXE] = "HOMME" Then
XL_Feuille.Range("p8").Value = rst![nbre]
Else
XL_Feuille.Range("q8").Value = rst![nbre]
….
End If
rst.MoveNext
Loop
With xl_app
ActiveWorkbook.Worksheets ("feuil1").Printpreview
ActiveWorkbook.Close False
End With
Set xl_app = Nothing
Set objexcel = Nothing
End Sub
Merci
0