i am trying to select 92000 records from the database. obivously, it will be a while
but instead of displaying each bar every second or seomthing, the radprogressbar just wait until everything is finished and then display it in full bar. how can i stop that how can i make it the progress bar fill up slower?
but instead of displaying each bar every second or seomthing, the radprogressbar just wait until everything is finished and then display it in full bar. how can i stop that how can i make it the progress bar fill up slower?
While rs.Read
RadProgressBar2.Value1 = i
RadProgressBar2.Text =
"Record " & i
i = i + 1
End While
please help thank you