|
-
May 2nd, 2000, 06:49 PM
#1
Thread Starter
Member
I have a textbox and ado data control on a form
The textbox is using the ado control and its datafield
is HireDate, which is datetime field on the sql table.
when I try to delete the date shown in the textbox, then click the ado data control's movenext button.
the ado control give me error message:
"change is canceled during notification, no column are changed"
after the massage, the date I try to wipe out come back to the textbox again.
Anybody know how to delete the date? Please kindly tell me.
Thank you very much for your time.
The AllowNull is checked on the field
-
May 3rd, 2000, 12:59 AM
#2
Lively Member
You have to trigger the Update Event. Something like:
Public Sub cmdUpdate_Click()
adodc.update
End Sub
Also, be certain that you are not connecting to your database as "Read-Only".
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|