Hi
i m using this code for claculating total expenses of month, in timer.
Text3.Text = Val(Text3.Text) + Val(Text2.Text)
If ADATA.Recordset .EOF Then
lblTotal.Captio n = Text3.Text
timCalc.Enabled = False
ADATA1.Refresh
Text3.Text = 0
timcalc1.Enable d = True
Else
ADATA.Recordset .MoveNext
End If
if there is any convenient and quick way to find sum of all expense then plz tell me.
i m using this code for claculating total expenses of month, in timer.
Text3.Text = Val(Text3.Text) + Val(Text2.Text)
If ADATA.Recordset .EOF Then
lblTotal.Captio n = Text3.Text
timCalc.Enabled = False
ADATA1.Refresh
Text3.Text = 0
timcalc1.Enable d = True
Else
ADATA.Recordset .MoveNext
End If
if there is any convenient and quick way to find sum of all expense then plz tell me.
Comment