OK this is about my 200th post in the last two days so I'm about ready to jump off a cliff. I'm pulling data from a Lotus Notes database(Domino Server). I have some dummy code that imitates exactly what I'm trying to do at work. The problem is the progress bar doesn't update and the label doesn't update when I do the repaint. Sometimes the program locks up and I have to close Access but it has worked. Am I trying to do too much ? Is the program too busy ? Here is the code I just wrote to imitate what I had at work.
Private Sub cmdGoingCrazy_Click()
'*****Variables**********************************
Dim cnt As New ADODB.Connection
Dim rst As New ADODB.Recordset
Dim strConn As String
Dim lngnumrecords As Long
Dim i As Integer
Dim dblpercdone As Double
Dim n As Long
Dim r As Long
srtconn = "MyODBCConnection" 'This is my ODBC connection for a Lotus Notes DB
strSQL '=This is my SQL statement retrieving around 200 to 1500 records x 32 fields" _
depedinging on what choices the user selects"
cnt.Open strConn
DoCmd.OpenForm "FrmProgress" 'Progress Bar resides here
Form_FrmProgress.lblstatus = "Connecting to Lotus Notes DB..."
Form_FrmProgress.Repaint
Set rst = cnt.Execute(strSQL)
'Now I want to get how many records are being Queried.
rst.MoveFirst
Do Until rst.EOF
dummyvar = rst(0)
r = r + 1
rst.MoveNext
Loop
Form_FrmProgress.lblstatus = r & " records have been retrieved and will be loaded to Table X."
Form_FrmProgress.Repaint
rst.MoveFirst
Do While Not rst.EOF
i = 0
variable1 = rst(i).Value
variable2 = rst(i + 1).Value
'Etc... I have a total of 32 variables.
'Now I want to put into the table
strSQL = "INSERT INTO tblxxx([field],[field])"
strSQL = strSQL & " VALUES('" & variable1 & "','" & variable2 & "');"
DoCmd.SetWarnings False
DoCmd.RunSQL (strSQL)
n = n + 1 'Counts how many records have been sent to the table.
dblpercdone = n / r * 100
Form_FrmProgress.progressbar.Value = dblpercdone
Form_FrmProgress.Repaint
rst.MoveNext
Loop
rst.Close
cnt.Close
Set rst = Nothing
Set cnt = Nothing
Form_FrmProgress.lblstatus = "Process is complete."
Form_FrmProgress.Repaint
DoCmd.Close acForm, "FrmProgress"
End Sub
Please Bash Away I just want to know the best way to do this. Thanks in advance!!
Private Sub cmdGoingCrazy_Click()
'*****Variables**********************************
Dim cnt As New ADODB.Connection
Dim rst As New ADODB.Recordset
Dim strConn As String
Dim lngnumrecords As Long
Dim i As Integer
Dim dblpercdone As Double
Dim n As Long
Dim r As Long
srtconn = "MyODBCConnection" 'This is my ODBC connection for a Lotus Notes DB
strSQL '=This is my SQL statement retrieving around 200 to 1500 records x 32 fields" _
depedinging on what choices the user selects"
cnt.Open strConn
DoCmd.OpenForm "FrmProgress" 'Progress Bar resides here
Form_FrmProgress.lblstatus = "Connecting to Lotus Notes DB..."
Form_FrmProgress.Repaint
Set rst = cnt.Execute(strSQL)
'Now I want to get how many records are being Queried.
rst.MoveFirst
Do Until rst.EOF
dummyvar = rst(0)
r = r + 1
rst.MoveNext
Loop
Form_FrmProgress.lblstatus = r & " records have been retrieved and will be loaded to Table X."
Form_FrmProgress.Repaint
rst.MoveFirst
Do While Not rst.EOF
i = 0
variable1 = rst(i).Value
variable2 = rst(i + 1).Value
'Etc... I have a total of 32 variables.
'Now I want to put into the table
strSQL = "INSERT INTO tblxxx([field],[field])"
strSQL = strSQL & " VALUES('" & variable1 & "','" & variable2 & "');"
DoCmd.SetWarnings False
DoCmd.RunSQL (strSQL)
n = n + 1 'Counts how many records have been sent to the table.
dblpercdone = n / r * 100
Form_FrmProgress.progressbar.Value = dblpercdone
Form_FrmProgress.Repaint
rst.MoveNext
Loop
rst.Close
cnt.Close
Set rst = Nothing
Set cnt = Nothing
Form_FrmProgress.lblstatus = "Process is complete."
Form_FrmProgress.Repaint
DoCmd.Close acForm, "FrmProgress"
End Sub
Please Bash Away I just want to know the best way to do this. Thanks in advance!!