A
Allen Browne
You could assign a default value in the Open event of the form:
Private Sub Form_Open(Cancel As Integer)
Me.Text1.DefaultValue = """Hi Fred"""
End Sub
If the text box is intended to be a number, set its Format property to
General Number, and assign the Default Value like this:
Me.Text1.DefaultValue = "88"
Private Sub Form_Open(Cancel As Integer)
Me.Text1.DefaultValue = """Hi Fred"""
End Sub
If the text box is intended to be a number, set its Format property to
General Number, and assign the Default Value like this:
Me.Text1.DefaultValue = "88"