First read this: Use of Application.DoEvents()
So after reading the above answer you will never using DoEvents ever again, and without the DoEvents (and/or Invalidating the ProgressBar so its Paint event will fire) the "progressbar won't animate since the upgrade process is so intensive"
Hence Cthulhu's comment - "You can make a dialog with a progressbar, make that dialog modal and execute your db-stuff on a backgroundworker." is one of the best ways forward.
I have translated a C# implementation of this that I use, you should be able to drop it straight in.
This is the ProgressBar Form:
Public Partial Class ThinkingProgressBar
Inherits Form
Private startTime As System.DateTime = DateTime.Now
Public Sub New()
InitializeComponent()
End Sub
Private Sub lblClose_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs)
Me.Tag = "Cancelled"
Me.Hide()
End Sub
Public Sub SetThinkingBar([on] As Boolean)
If [on] Then
lblTime.Text = "0:00:00"
startTime = DateTime.Now
timer1.Enabled = True
timer1.Start()
Else
timer1.Enabled = False
timer1.[Stop]()
End If
End Sub
Private Sub timer1_Tick(sender As Object, e As EventArgs)
Dim diff As var = New TimeSpan()
diff = DateTime.Now.Subtract(startTime)
lblTime.Text = diff.Hours + ":" + diff.Minutes.ToString("00") + ":" + diff.Seconds.ToString("00")
lblTime.Invalidate()
End Sub
End Class
Here is how the background worker events:
Friend Sub backgroundWorker1_DoWork(sender As Object, e As DoWorkEventArgs)
e.Result = e.Argument
(DirectCast(e.Result, ThinkingProgressBar)).SetThinkingBar(True)
'DO OPERATION HERE
DAL.YourUpgradeOperation
End Sub
Friend Sub backgroundWorker1_RunWorkerCompleted(sender As Object, e As RunWorkerCompletedEventArgs)
Dim dlg As var = TryCast(e.Result, ThinkingProgressBar)
If dlg <> Nothing Then
(DirectCast(e.Result, ThinkingProgressBar)).SetThinkingBar(False)
dlg.Close()
End If
End Sub
And here is the calling code for when your application starts and does the upgrading:
Dim dlg As var = New ThinkingProgressBar()
dlg.SetThinkingBar(True)
BackgroundWorker1.RunWorkerAsync(dlg)
dlg.ShowDialog()
If dlg.Tag <> Nothing AndAlso dlg.Tag.ToString() = "Cancelled" Then
Return
End If
dlg.SetThinkingBar(False)
A couple of things, you may prevent the user from Cancelling (ie lblClose_LinkClicked) and put in protective/defensive programming to handle cases where the user kills the process or turns off their PC during the upgrade.
And the ProgressBar is actually an animated gif - and this will suit your usage because estimating the time it takes to update a database is very hard to predict:

UpdateToDB()function in the background worker as opposed to on the click of a button or the VB6 progress bar. – Origin Nov 15 '12 at 6:03