Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Refresh DataCombo

Status
Not open for further replies.

wrchto

IS-IT--Management
Jan 3, 2001
14
AT
I have a DataCombo which is filled with data from an access 97 database. I also have a Delete-Button to delete the record wich is shown in the text-field of the box.
The problem is, that the DataCombo isn't refreshed automatically. I can see an empty line in the data-field for the deleted record. But I want to refresh the whole Combo. I tried DataCombo.Refresh or DataCombo.Refill. But senseless!
Please help!!!

 
Try putting a loop in before you refresh the control.

Dim lngLoop As Long
For lngLoop = 1 To 10000000
Next lngLoop
adoVendors.Refresh

David Paulson


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top