I have a textbox with a default value of Path where I write files.
from time to time the default path needs to be changed. so I set up button to set the
default value to whatever the current content of the textbox is, eg, the user can change it.
but can't seem to save the new default value
what I have tried
Private Sub Command29_Click()
Dim newText As String
Text27.SetFocus
newText = Text27.Text
Text27.DefaultValue = Chr$(34) & newText & Chr$(34)
DoCmd.Save
MsgBox "Default Folder for reports has been changed to: " & newText
posts that show changing hard copy text have default = """new value""" indicating you need to supply the quotes