Hi all-
Using VS2003
Have code set to add new record to my sql table
Record position does advance
All text boxes ReadOnly property set to False
However all text boxes showing values from previous record rather than clearing for new entries
Any ideas what I'm doing wrong?
I use very similar code in another project and it works exactly as expected
Thanks
-xl
Using VS2003
Have code set to add new record to my sql table
Record position does advance
All text boxes ReadOnly property set to False
However all text boxes showing values from previous record rather than clearing for new entries
Any ideas what I'm doing wrong?
I use very similar code in another project and it works exactly as expected
Thanks
-xl
Code:
Private Sub btnAddRec_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles btnAddRec.Click
'Begin an add operation
UnLockCustomerTextBoxes()
UnLockBalanceInformation()
UnLockPaymentInformation()
UnLockInterestCharges()
DisableNavigation()
SetButtonsForEdit()
bmCreditCard.AddNew()
txtCustomerNumber.Focus()
End Sub