I don't want to take up a lot of room on a customer order form, so I plan to create a "pop-up" text box for free-form notes. This way, a user can add notes/comments to an order if necessary but the large text box won't be in the way if not needed.
When clicked, a cmd button will make the text box visible so the user can enter comments and notes. After the comments are entered, the user can then click a cmd button to hide the note box.
The question I have is this: Is there a way to create a command button and actually place it on the text box itself? Or should I simply "unhide" the text box and the second cmd button (which could be placed within the text box boundaries) at the same time with the cmdOpenText and then hide them at the same time with the cmdCloseText?
cmdOpenNote = unhide txtNote & cmdCloseNote
cmdCloseNote = hide txtNotes & cmdCloseNote
Also, what would be the best or easiest way to signal to a user (who may review the order) that the hidden text box contains comments? Should I change the label on the cmdOpenNote from "Enter Note" to "Edit Note"? Or add a check box?
Your thoughts will be appreciated. Thank you.
kerryl
When clicked, a cmd button will make the text box visible so the user can enter comments and notes. After the comments are entered, the user can then click a cmd button to hide the note box.
The question I have is this: Is there a way to create a command button and actually place it on the text box itself? Or should I simply "unhide" the text box and the second cmd button (which could be placed within the text box boundaries) at the same time with the cmdOpenText and then hide them at the same time with the cmdCloseText?
cmdOpenNote = unhide txtNote & cmdCloseNote
cmdCloseNote = hide txtNotes & cmdCloseNote
Also, what would be the best or easiest way to signal to a user (who may review the order) that the hidden text box contains comments? Should I change the label on the cmdOpenNote from "Enter Note" to "Edit Note"? Or add a check box?
Your thoughts will be appreciated. Thank you.
kerryl