J
JoeA2006
Is there a way to modify this code to create a progress bar based on the
number of records loaded into the new table from a make table query or a
spreadsheet. The only code I have for a progress bar is
Private Sub cmdGo_Click()
Dim inti As Double
Dim dblpct As Double
Do Until inti > Me.txtNumIterations
dblpct = inti / Me.txtNumIterations
Me.txtPctComplete = dblpct
Me.boxPct.Width = Me.boxWhole.Width * dblpct
Me.txtI = inti
If Me.txtI Mod 100 = 0 Then
DoEvents
End If
inti = inti + 1
Loop
This table loads quite a large number of records and I would rather have
something besides the access progress bar
End Sub
number of records loaded into the new table from a make table query or a
spreadsheet. The only code I have for a progress bar is
Private Sub cmdGo_Click()
Dim inti As Double
Dim dblpct As Double
Do Until inti > Me.txtNumIterations
dblpct = inti / Me.txtNumIterations
Me.txtPctComplete = dblpct
Me.boxPct.Width = Me.boxWhole.Width * dblpct
Me.txtI = inti
If Me.txtI Mod 100 = 0 Then
DoEvents
End If
inti = inti + 1
Loop
This table loads quite a large number of records and I would rather have
something besides the access progress bar
End Sub