i can't seem to find a clear answer on this one. i use the data designer on my program so all i have in my form load is the tableadapter.fi ll statement. now how do i link a progressbar to it?
link tableadapter.fill and progressbar using vb.net
Collapse
X
-
-
Originally posted by kenobewanThis site may help you:
AJAX : The Official Microsoft ASP.NET SiteComment
-
Originally posted by kenobewanThis site may help you:
AJAX : The Official Microsoft ASP.NET SiteComment
-
Use an update panel, and place your grid within that.
Also add a progress cont4rol (not sure what they exactly call it, and link it to that updatepanel) - this control is not like a progress bar, but just a general updating style of icon which would show the user a busy icon until it recieves the data from the serverComment
-
Originally posted by Shashi SadasivanUse an update panel, and place your grid within that.
Also add a progress cont4rol (not sure what they exactly call it, and link it to that updatepanel) - this control is not like a progress bar, but just a general updating style of icon which would show the user a busy icon until it recieves the data from the server
I have used the dataset designer for all my forms. It has generated code in my form load like these...
private sub form_load()
tableadapter.fi ll(dataset.data table)
end sub
Using what I already have, I want to add a progress bar and show progress of that fill code. I have tried searching about this on the internet but no one around the globe can give a clear answer.Comment
-
What do you exactly mean by show the progress of fill ?
Is it showing a percentage of what the fill method has retrieved as yet?
Im not sure if this could be achiveable, because your database backend will send all the records at once together, so you would have no way of finding out how much data has been filled.
However once the data is recieved and is loading you could have the progress bar updating, Not sure of that again, but this thread "data adapter fill method progress status" has answered someone
good luckComment
-
Originally posted by Shashi SadasivanWhat do you exactly mean by show the progress of fill ?
Is it showing a percentage of what the fill method has retrieved as yet?
Im not sure if this could be achiveable, because your database backend will send all the records at once together, so you would have no way of finding out how much data has been filled.
However once the data is recieved and is loading you could have the progress bar updating, Not sure of that again, but this thread "data adapter fill method progress status" has answered someone
good luckComment
Comment