B
bw
The following SQL comes from my cboFromAirport control.
SELECT qryAirports.AirportID, qryAirports.AC, qryAirports.Airport,
qryAirports.AirportCode, qryAirports.TimeZone
FROM qryAirports
ORDER BY qryAirports.AC;
The value of qryAirports.TimeZone comes from a Lookup Table.
In my form, I have the following code:
If Forms!MakeTravelRequest!cboFromAirport.Column(4) = "Pacific" Then
DTimeFactor = 1
' This works okay, but doesn't seem right to me, as I'd prefer to see the
numerice value instead of a literal.
How do I refer to the numeric value of Column(4)...(the TimeZone).
Thanks,
Bernie
SELECT qryAirports.AirportID, qryAirports.AC, qryAirports.Airport,
qryAirports.AirportCode, qryAirports.TimeZone
FROM qryAirports
ORDER BY qryAirports.AC;
The value of qryAirports.TimeZone comes from a Lookup Table.
In my form, I have the following code:
If Forms!MakeTravelRequest!cboFromAirport.Column(4) = "Pacific" Then
DTimeFactor = 1
' This works okay, but doesn't seem right to me, as I'd prefer to see the
numerice value instead of a literal.
How do I refer to the numeric value of Column(4)...(the TimeZone).
Thanks,
Bernie