Hey guys, here's my problem, i have a form to input data into tabe, and i want the form to display a blank textbox which we put the input data in there... i've tried
Private Sub Form_Load()
inputname.text = " "
End Sub
and
Private Sub Form_Load()
inputname.text = null
End Sub
the inputname textbox is related to field name in my table, could you guys tell me what's my mistake and tell me the right script?
thx...
Private Sub Form_Load()
inputname.text = " "
End Sub
and
Private Sub Form_Load()
inputname.text = null
End Sub
the inputname textbox is related to field name in my table, could you guys tell me what's my mistake and tell me the right script?
thx...