B
Balmora via AccessMonster.com
Ok thanks for all your help in advance, i have found with some help that if
you right
Private Sub datatotal_AfterUpdate()
With Me.datatotal
.DefaultValue = .Value
End With
End Sub
in vb, it will send the number to the next record in datatotal that is good
and i have also found that if you right
Private Sub datatotal_AfterUpdate()
If Not IsNull(Me.datatotal) Then
Me.data1.DefaultValue = Me.datatotal.Value
End If
End Sub
in vb, it will send the number to the next reccord but to a difrent field in
this case datatotal would be send to data1 in the next record that is cool
but the problem is that the moment i use a value with decimals like 21.50 it
wont transfer in the field i will find #Name? , what can i do with all the
rest of my code all is fine
you right
Private Sub datatotal_AfterUpdate()
With Me.datatotal
.DefaultValue = .Value
End With
End Sub
in vb, it will send the number to the next record in datatotal that is good
and i have also found that if you right
Private Sub datatotal_AfterUpdate()
If Not IsNull(Me.datatotal) Then
Me.data1.DefaultValue = Me.datatotal.Value
End If
End Sub
in vb, it will send the number to the next reccord but to a difrent field in
this case datatotal would be send to data1 in the next record that is cool
but the problem is that the moment i use a value with decimals like 21.50 it
wont transfer in the field i will find #Name? , what can i do with all the
rest of my code all is fine