|
-
May 17th, 2000, 04:14 AM
#2
Don' use databinding...and use a combo box
Dim db as database
Dim rs as recordset
'
' Set to whatever
'
If not rs.EOF and not rs.BOF Then
rs.MoveFirst
cboText.Clear
Do
cboText.AddItem rs!Whateverfield
rs.Movenext
if rs.EOF Then Exit Do
Loop
cboText.ListIndex = 0
Else
' Whatever error or Message
End If
Hope it helps...am using vb5 sp 3
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
|