Hi
I have two lines:
DRPUBLICVIEW.Item("OccupiedAF") = Me.OccupiedAf.Text
DRPUBLICVIEW.Item("unOccupiedAF") = Me.UnoccupiedAF.Text
which both fields in my DrPublicView are Decimal.
In the both textbox I have the value 8.
on the second line it prompt me this error message: "There is no row at position 1".
I tried to inverse the line :
DRPUBLICVIEW.Item("unOccupiedAF") = Me.UnoccupiedAF.Text
DRPUBLICVIEW.Item("OccupiedAF") = Me.OccupiedAf.Text
Then error occured at the second line again. Same value in the textboxes.
Does somebody have an idea why it does this?
Thanks in advance
I have two lines:
DRPUBLICVIEW.Item("OccupiedAF") = Me.OccupiedAf.Text
DRPUBLICVIEW.Item("unOccupiedAF") = Me.UnoccupiedAF.Text
which both fields in my DrPublicView are Decimal.
In the both textbox I have the value 8.
on the second line it prompt me this error message: "There is no row at position 1".
I tried to inverse the line :
DRPUBLICVIEW.Item("unOccupiedAF") = Me.UnoccupiedAF.Text
DRPUBLICVIEW.Item("OccupiedAF") = Me.OccupiedAf.Text
Then error occured at the second line again. Same value in the textboxes.
Does somebody have an idea why it does this?
Thanks in advance