Private Sub Komut8_Click()
Dim xl As Excel.Application
Dim xlwkbk As Excel.Workbook
Dim xlsheet As Excel.Worksheet
If Me.Dirty Then
DoCmd.RunCommand acCmdSaveRecord
End If
Set xl = New Excel.Application
Set xlwkbk = xl.Workbooks.Open(CurrentProject.Path & "\Ornek.xlsx")
xl.Sheets("Sayfa1").Select
With xlsheet
xl.Range("B13") = Dlookup ("[adi]", "Tablo1", "[Kimlik]=" & Me.Id)
xl.Range("B14") = Dlookup ("[soyada]", "Tablo1", "[Kimlik]=" & Me.Id)
End With
xl.Visible = True
Set MyRecordset = Nothing
Set xl = Nothing
Set xlwkbk = Nothing
Set xlsheet = Nothing
End Sub
kullanmış olduğum kod tek sayfaya kayıt yapıyor ama ben sayfa2 sayfa3 sayfa4.... vs kayıt yapmak istersem nasıl bir düzenleme yapmam lazım?
Son Düzenleme: 25/12/2019, 01:46, Düzenleyen: maras321.