Hi,
I've got a little issue with a progress bar.I have a label and the progress bar on a form.I've some calculation to be performed and then stored to the database.I wanted to show the progress of this process to the user.The calculation process is on another form.when the process starts i displayed the form but it shows the progress after the records are saved to the database.
How can i achieve this along with the calculation?Here are the codes i used.

The code below calls a procedure to read records from an excel file,then calls another procedure to perform the calculation on a row basis:

 Public Sub importToDb(ByVal district As String)
        dt = New DataTable
        Windows.Forms.Cursor.Current = Cursors.WaitCursor
        dt = ReadExcel(district)
        total = dt.Rows.Count

        For i = 0 To dt.Rows.Count - 1
            If Not IsDBNull(dt.Rows(i)(0)) Then
                calculatesave(i, district)
                frmProgress.Timer1.Start()
                frmProgress.Show()
                frmProgress.BringToFront()
            End If
        Next

        dt = Nothing
    End Sub

This is the code related to the progress bar in another form,placed in a timer tick event:

Me.ProgressBar1.Maximum = frmBridge.total

        If Me.ProgressBar1.Value >= Me.ProgressBar1.Maximum Then
            Me.Timer1.Stop()
            MessageBox.Show("Importing Successful")
            Me.Close()
            Me.Timer1.Stop()
        Else
            Me.ProgressBar1.Value = Me.ProgressBar1.Value + 1
            Label1.Text = "Importing " & Me.ProgressBar1.Value & " of " & Me.ProgressBar1.Maximum
        End If

Recommended Answers

All 6 Replies

You don't need to use a timer to update the progress bar. Just increment the progressbar value in the loop you are tracking. As for the cross form update, why not just put the progress bar on the form containing the loop?

I agree with Jim. Incrementing the progress bar value is much easier since you are performing the calculations to determine the progress of your task. To do this, try incrementing like so:

ProgressBar1.Value(+1)

Of course you would not use +1 but change it to cater to your needs.

I just needed to show it separately,just for a design purpose.Of course it works well on the form holding the loop but just for the record,is it possible or not?

Yes. And as I said, you do not need a timer. Just update the value from inside the loop on form2.

Thanks Jim,it worked.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.