Kelly said:
Is there anyway to have a user input a default value in a form?
Do you mean, have the user specify what is to be the default value for a
control, for the remainder of the editing session? Sure; you can use
code to set the control's DefaultValue property at run time, and that
will persist until you change it or the form is closed. You'd have to
provide the user a means to do this, though. The only case I've seen,
though it's quite common, is to have the control automatically default
to the last value entered. You can do this with code in the form's
AfterUpdate event or the control's AfterUpdate event. Code looks
something like this:
Private Sub Form_AfterUpdate()
With Me![YourControlNameHere]
.DefaultValue = """" & .Value & """"
End With
End Sub
Just insert the name of the control in place of "YourControlNameHere".