ultimatewilliam
Programmer
hi, i'm actually populating a data control with certain records from a table by this code:
With adodc1
.RecordSource = "Select * from MyTable"
.Refresh
End With
when the process is too long, i have to display a progress bar so the user would know that the retreival is being done, at the same time the user may cancel the operation if he wants to. hope you could help me with this. thanks!
With adodc1
.RecordSource = "Select * from MyTable"
.Refresh
End With
when the process is too long, i have to display a progress bar so the user would know that the retreival is being done, at the same time the user may cancel the operation if he wants to. hope you could help me with this. thanks!