Safari Member Local time Today, 08:52 Joined Jun 14, 2021 Messages 95 Jun 19, 2021 #1 HI ALL I HAVE A COMMAND I WANT WHEN I CLICK IT MAKE TEXT VALUE CONTAINS AS DEFAULT AND NOT TO CHANGE WHEN I CLOSE AND OPEN FORM AGAIN THANKS
HI ALL I HAVE A COMMAND I WANT WHEN I CLICK IT MAKE TEXT VALUE CONTAINS AS DEFAULT AND NOT TO CHANGE WHEN I CLOSE AND OPEN FORM AGAIN THANKS
Uncle Gizmo Nifty Access Guy Staff member Local time Today, 07:52 Joined Jul 9, 2003 Messages 17,544 Jun 19, 2021 #2 You will need to store the default value in a table.
Safari Member Local time Today, 08:52 Joined Jun 14, 2021 Messages 95 Jun 19, 2021 #3 Uncle Gizmo said: You will need to store the default value in a table. Click to expand... i want to store the new default value from text contain
Uncle Gizmo said: You will need to store the default value in a table. Click to expand... i want to store the new default value from text contain
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 14:52 Joined May 7, 2009 Messages 20,413 Jun 19, 2021 #4 is the Textbox a String? on click event of your button, add this code: private sub button1_click() me!txtBoxName.DefaultValue = "'" & me!txtBoxName & "'" end sub
is the Textbox a String? on click event of your button, add this code: private sub button1_click() me!txtBoxName.DefaultValue = "'" & me!txtBoxName & "'" end sub
Safari Member Local time Today, 08:52 Joined Jun 14, 2021 Messages 95 Jun 19, 2021 #5 arnelgp said: is the Textbox a String? on click event of your button, add this code: private sub button1_click() me!txtBoxName.DefaultValue = "'" & me!txtBoxName & "'" end sub Click to expand... many thanks ..
arnelgp said: is the Textbox a String? on click event of your button, add this code: private sub button1_click() me!txtBoxName.DefaultValue = "'" & me!txtBoxName & "'" end sub Click to expand... many thanks ..