Also ich habe versucht bei der Definitioin des Recordset als "Source" einen SQL befehl einzubinden der eine Variable enthält.
Das sieht dann so aus:
Quelle ist vom typ String
Datum ist von Typ String
Quelle="Select Umsatz,Datum From Umsatz Where Datum like"+Datum
With RS_Umsatzsql
.ActiveConnection = DB_CarWash
.Source = Quelle
.CursorType = adOpenKeyset
.CursorLocation = adUseClient
.LockType = adLockOptimistic
.Open Options:=adCmdText
End With
wenn ich mir jetzt mit einer MSGBOX "Quelle" ausgaben lasse stimmt alles, aber dann wenn ich ein DataGrid damit füllen will kommt ein fehler.
ich hoffe ihr versteht mein Problem.
danke
mfg
GeCko
Das sieht dann so aus:
Quelle ist vom typ String
Datum ist von Typ String
Quelle="Select Umsatz,Datum From Umsatz Where Datum like"+Datum
With RS_Umsatzsql
.ActiveConnection = DB_CarWash
.Source = Quelle
.CursorType = adOpenKeyset
.CursorLocation = adUseClient
.LockType = adLockOptimistic
.Open Options:=adCmdText
End With
wenn ich mir jetzt mit einer MSGBOX "Quelle" ausgaben lasse stimmt alles, aber dann wenn ich ein DataGrid damit füllen will kommt ein fehler.
ich hoffe ihr versteht mein Problem.
danke
mfg
GeCko