progressbar

  1. Z

    Sync progressbar with cmd output

    Hi everyone I just wanna put new feature in my personal tool Can you give me idea how I can sync progressbar to cmd output while still downloading This is the code I'm using for cmd output Private Sub CMDOutput(StartFileName As String, StartFileArg As String) Dim process As...
  2. C

    Cannot get Progress Bar to Update while running tasks in WPF

    Not sure what I am doing wrong, but I can't get it to work. I am doing a CPU intensive task where I am creating a large number of players for a football game I am making, and I am using the Task.Factory.StartNew method to run it on. I then create a separate task for the Progress updater but I...
  3. M

    Question Progressbar help

    Hi, for my school project I have to make a ordering form similar to that of McDonalds using visual basic. I have just added a progress bar and programmed it to start when I click the checkout button after choosing everything you would like to order and am just wondering how i could possible add...
  4. C

    Question ProgressBar Problem

    Hi, I want to make a ProgressBar with text inside it and I want to make the ProgressBar not using bars. Sample in the picture : I can make the text inside the ProgressBar with CreateGraphics and DrawString, but I still can't make the progressbar not using bars. Please help me. Thanks in...
  5. C

    Question Text inside ProgressBar's Problem.

    Hi, This is my code : Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim Gr As Graphics = ProgressBar1.CreateGraphics Dim Percent As String = "" For I As Integer = 0 To 100 Percent = I & "%"...
  6. ghassan_aljabiri

    Question using progressbar

    hello i build a form to do a search in a database this form contains a progressbar with visible=false if the user clicks the search button : 1- the progressbar should be visible 2- do the search 3- put the results counter in a label 4- the progressbar should be inVegetable (invisible) I use...
  7. S

    Question ffmpeg progress

    I am using a backgroundworker to start ffmpeg and trying to use a progressbar. ProgressBar1.Value = e.ProgressPercentage does not seem to work probably because the way ffmpeg uses standard error to report progress. I think i could use the output text to do the trick. the output Seems stream 0...
Back
Top