chris-uk-lad
Registered User.
- Local time
- Today, 07:15
- Joined
- Jul 8, 2008
- Messages
- 271
Hi,
I have a listbox in a form that displays some info in columns (lstNotes). The fourth column contains text that is too large for the listbox so im making it display the full text in a seperate form in a textbox once clicked. I however cant seem to get this to work.
frmNote is the new form, with a textbox called txtNote. lstNotes contains PAGE, DATE, NAME, TEXT columns retrieved from a table.
Any other info needed please ask
I have a listbox in a form that displays some info in columns (lstNotes). The fourth column contains text that is too large for the listbox so im making it display the full text in a seperate form in a textbox once clicked. I however cant seem to get this to work.
Code:
Private Sub lstNotes_DblClick(Cancel As Integer)
DoCmd.OpenForm "frmNote", acNormal, "", "[TEXT] = " & Me!lstNotes, acFormEdit, acNormal
End Sub
frmNote is the new form, with a textbox called txtNote. lstNotes contains PAGE, DATE, NAME, TEXT columns retrieved from a table.
Any other info needed please ask