G Guest Oct 5, 2004 #1 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?
J John Vinson Oct 5, 2004 #2 How do I put this "Press CTRL+APOSTROPHE (')" of Repeating the value from the Previous Record into the Visual Basic code or Macro? Click to expand... 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
How do I put this "Press CTRL+APOSTROPHE (')" of Repeating the value from the Previous Record into the Visual Basic code or Macro? Click to expand... 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