
03-09-2004, 05:19 PM
|
|
Contributor
|
|
Join Date: Feb 2004
Location: Arkansas
Posts: 402
|
|
RichTxtBox and Data Form Wizard
|
I can't seam to figure out how to get my rchtxtbox to work with the data form wizard. If I use the txt boxes that it sets up for me everything works great, I can connect to mysql on my web host, I can add, delete, modify and everyhing else but what I need to do is be able to use a rchtxtbox so I can use bold, fonts and stuff. I have set the data source and the data field for the rchtxtbox and I can view the information in it from my web server but when I click on the modify button nothing happens. here is the code on the modify button:
Private Sub cmdUpdate_Click()
On Error GoTo UpdateErr
datPrimaryRS.Recordset.UpdateBatch adAffectAll
Exit Sub
UpdateErr:
MsgBox Err.Description
End Sub
I'm thinking it has something to do with the Recordset part of the script. And of course I know nothing about how to set up a record set.
Thanks in advance for any help anyone can give me on this.
|
|