Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Sql question
Message
From
30/04/2003 04:27:18
Rene Lovino
Bigfoot Global Solutions, Inc
Cebu, Philippines
 
 
To
30/04/2003 02:41:05
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00783042
Message ID:
00783060
Views:
19
Hi Mike,

May be your there is a type mismatch on your expression.

I assume that you want to filter the records based on the two dates inputted by the user.

example
form1.text1.value = '04/01/2003'
Form1.text2.value = '04/30/2003'

select field1, field2, ... from table1 where between(datefield, form1.text1.value, form1.text2.value)

May be the data type of your text is not in a date format.

Try to change the select statement to
select field1, field2, ... from table1 where between(datefield, form1.text1.value, form1.text2.value)

If this solution does not work please give me your sample coding.
Previous
Reply
Map
View

Click here to load this message in the networking platform