Hi I’m trying to make a function that sees if there is a record in
Adoski Ware The FamilyID = AdoFamily.Recordset(“FamilyID”)
So this is what I’ve tried:

Private Function ITASIF() As Boolean
With AdoSki.Recordset
.MoveFirst
.Find " familyID = " & AdoFamily.Recordset("FamilyID"), 1
If .EOF = True Then ITASIF = False Else ITASIF = True
End With
End Function

and it Gives ITASIF = false the first time it gets run

This is the What the data base Looks like


+Properties
–Family
| |–Fields
| |–FamilyID
| |–Last Name
| |–First Name
| |–Street Address
| |–City
| |–State
| |–Zip
| |–Phone Number
| \–E Mail
|
–Skiers
|–Fields
|–FamilyID
|–First Name
|–Lift
|–Lesson
|–Rentals
|–Price
\–Payed

Thanks a lot.

Please Help.



[This message has been edited by Stepeh (edited 02-20-2000).]