D
David
I have got the following SQL Statement to populate a record, but it will
only populate 1 box on all off the records in continuios form mode, the rest
of the boxes say "name?"
Is there a way to correct the statement so that it populates the entire
record in each continuios form.
And is there a way to sort this list ascending?
Dim strSQL As String
If Me.Check22 = True Then
strSQL = "SELECT vehinfo.Vehicle FROM vehinfo " & _ "WHERE vehicle Not Like
'old*';"
Else
strSQL = "SELECT vehinfo.vehicle FROM vehinfo;"
End If
With [Forms]![setveh]
.RecordSource = strSQL
.Requery
End With
End Sub
Thanks
David
only populate 1 box on all off the records in continuios form mode, the rest
of the boxes say "name?"
Is there a way to correct the statement so that it populates the entire
record in each continuios form.
And is there a way to sort this list ascending?
Dim strSQL As String
If Me.Check22 = True Then
strSQL = "SELECT vehinfo.Vehicle FROM vehinfo " & _ "WHERE vehicle Not Like
'old*';"
Else
strSQL = "SELECT vehinfo.vehicle FROM vehinfo;"
End If
With [Forms]![setveh]
.RecordSource = strSQL
.Requery
End With
End Sub
Thanks
David