How do I put this "Press CTRL+APOSTROPHE (')" of Repeating the va.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I put this "Press CTRL+APOSTROPHE (')" of Repeating the value from the
Previous Record into the Visual Basic code or Macro?
 
How do I put this "Press CTRL+APOSTROPHE (')" of Repeating the value from the
Previous Record into the Visual Basic code or Macro?

Well... don't. That's the hard way to do it!

Instead, set the Default value of each control in the AfterUpdate
event of the control:

Me!txtMyTextbox.DefaultValue = Chr(34) & Me.txtMyTextbox & Chr(34)


John W. Vinson[MVP]
Join the online Access Chats
Tuesday 11am EDT - Thursday 3:30pm EDT
http://community.compuserve.com/msdevapps
 
Back
Top