Hi
I just added a currency field to a table 2 decimal places default value 0.
I am displaying that value on a form as a bound field. I am calculating a value in a currency type field in my code and moving that value to the bound database field. I don't get an error but I know that system does not like the value I am moving to the bound field as it takes 2 presses on the navigation bar to move to the previous / next record.
I know this field is the problem as if I unbind it I can move around the table without problems. Also if I don't move a value to the field I can move around the table OK.
This is driving me crazy. If there is a problem why can't access display a message and tell me what it is - access is so pants.
Please tell me what I'm doing wrong.
thanks
Pete
Here is the code:
Private Sub calcTotals()
Dim intControlIndex As Integer
Dim dQuoteTotal As Currency
On Error GoTo Err_calcTotals
dQuoteTotal = 0
For intControlIndex = 1 To 23
If Not IsNull(Me.Controls("unitprice" & intControlIndex)) And Not IsNull(Me.Controls("Quantity" & intControlIndex)) Then
If IsNumeric(Me.Controls("unitprice" & intControlIndex)) And IsNumeric(Me.Controls("Quantity" & intControlIndex)) Then
dQuoteTotal = dQuoteTotal + Val(Me.Controls("unitprice" & intControlIndex)) * Val(Me.Controls("Quantity" & intControlIndex))
End If
End If
Next
Me!QuoteTotal.Value = dQuoteTotal
Exit_calcTotals:
Exit Sub
Err_calcTotals:
MsgBox Err.Description
Resume Exit_calcTotals
End Sub
I just added a currency field to a table 2 decimal places default value 0.
I am displaying that value on a form as a bound field. I am calculating a value in a currency type field in my code and moving that value to the bound database field. I don't get an error but I know that system does not like the value I am moving to the bound field as it takes 2 presses on the navigation bar to move to the previous / next record.
I know this field is the problem as if I unbind it I can move around the table without problems. Also if I don't move a value to the field I can move around the table OK.
This is driving me crazy. If there is a problem why can't access display a message and tell me what it is - access is so pants.
Please tell me what I'm doing wrong.
thanks
Pete
Here is the code:
Private Sub calcTotals()
Dim intControlIndex As Integer
Dim dQuoteTotal As Currency
On Error GoTo Err_calcTotals
dQuoteTotal = 0
For intControlIndex = 1 To 23
If Not IsNull(Me.Controls("unitprice" & intControlIndex)) And Not IsNull(Me.Controls("Quantity" & intControlIndex)) Then
If IsNumeric(Me.Controls("unitprice" & intControlIndex)) And IsNumeric(Me.Controls("Quantity" & intControlIndex)) Then
dQuoteTotal = dQuoteTotal + Val(Me.Controls("unitprice" & intControlIndex)) * Val(Me.Controls("Quantity" & intControlIndex))
End If
End If
Next
Me!QuoteTotal.Value = dQuoteTotal
Exit_calcTotals:
Exit Sub
Err_calcTotals:
MsgBox Err.Description
Resume Exit_calcTotals
End Sub