Put Notes on Any Form in your Access Database
In this video, I'm going to teach you how to put notes on any form in your Microsoft Access database using a little bit of VBA and SQL. Handy for notes on your menu forms, list forms, or anywhere else you want.
Links
Members
Suggested Course
Instructions
- Step 1: Create your NoteT (NoteID, NoteText)
- Step 2: Create your Notes textbox control
- Step 3: Set the Tag property of your Notes textbox to the NoteID you want to use
- Step 4: Form Load event:
Notes = Nz(DLookup("NoteText", "NoteT", "NoteID=" & Notes.Tag), "")
- Step 5: Notes After Update event:
CurrentDb.Execute "UPDATE NoteT SET NoteText=""" & Notes & """ WHERE NoteID=" & Notes.Tag
Keywords
access 2016, access 2019, access 2021, access 365, microsoft access, ms access, ms access tutorial, #msaccess, #microsoftaccess, #help, #howto, #tutorial, #learn, #lesson, #training, #database, #fasttips, notes on any form, sticky notes, pop up notes, notepad, sql, vba, update query, long text, memo