I have a form that I have an add new button on it. When I click on the add new, I want to be able to add a new resolution and carry over the CtyBoardMtgID from the last record I was viewing to this new resolution. I've tried and tried, and I can't get it to work. Please help. The last code I have on the OnClick property is:
Dim db As Database
Dim varcb As Integer
Set db = DBEngine.Workspaces(0).Databases(0)
varcb = Me!CtyBoardMtgID
DoCmd.GoToRecord , , acNewRec
DoCmd.RunSQL "UPDATE Resolutions SET CtyBoardMtgID = " & varcb & _
" WHERE CtyBoardMtgID = 0"
[Resolution Number].SetFocus
Thanks for your help!



