Private Sub Berichtskopf_Format (Cancel As Integer, FormatCount As Integer)
Dim sqlindex
Dim ctl As Control
Dim n, a, b As String
For Each ctl In Me.Controls
If ctl.ControlType = acTextBox Then
a = ctl.Name
n = Mid(a, 1, 3)
If n = "Kat" Then
b = ctl.Value
sqlindex = "INSERT INTO tblInhalt (Marker,Seite) SELECT " _
& Chr(34) & a & Chr(34) & "," & Chr(34) & b & Chr(34) & ";"
CurrentDb.Execute sqlindex, dbfailonerror
End If
End If
Next ctl
End Sub
Access Bericht mit mehreren Abfragen
golo108 19.01.2007 - 295 Hits - 7 Antworten
mehrseitigen Bericht mit Access versenden
Sandy12 08.03.2007 - 140 Hits -
Berichte mit access
Rolly 16.07.2007 - 137 Hits - 1 Antwort
Access 2007: Abstürze bei Berichtanzeige im Seitenvoransichtsmodus
Exl 09.10.2007 - 102 Hits - 1 Antwort
Access: mehrere Abfragen in einen Bericht integrieren
Tumulus 05.04.2008 - 163 Hits - 3 Antworten