|
-
September 19th, 2001, 11:07 PM
#1
urgent help
i'll make a comparison between two fields in database(comparison in string) what must I do?
-
September 19th, 2001, 11:18 PM
#2
Re: urgent help
strings may be compared directly (alphabetical ordering)
If rs!field1 > rs!field2 Then
if you have some other comparison in mind please specify
-
September 19th, 2001, 11:28 PM
#3
Re: urgent help
how can I compare the first string in record 1 with the first string in record 2. Example. record 1 have 011000 and record 2 have 102100. so, how can we compare the first string (0) with the first string in record 2(1).
-
September 20th, 2001, 01:11 AM
#4
Re: urgent help
Dim str1 as string, str2 as string
str1 = rst("SomeField")
rst.movenext
str2 = rst("SomeField")
Tom Cannaerts
[email protected]
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|