Text box to Null

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

I cant get my textbox to show Null if there is nothing entered in it, Went
to tables , Design view, Default Value and entered Null, but it does not
show on my Form


Thanks in advance.........Bob Vance
 
Er, Bob, what do you expect a Null to look like?

What are you really trying to do?

Regards,
Graham R Seach
Microsoft Access MVP
Canberra, Australia
 
Bob,

If Len("" & Me.txtMyTextbox) = 0 Then
Me!txtMyTextbox = "Blah, blah, blah"
End If

Regards,
Graham R Seach
Microsoft Access MVP
Canberra, Australia
---------------------------
 
Graham where do I enter this script....Thanx Bob

Graham R Seach said:
Bob,

If Len("" & Me.txtMyTextbox) = 0 Then
Me!txtMyTextbox = "Blah, blah, blah"
End If

Regards,
Graham R Seach
Microsoft Access MVP
Canberra, Australia
 
Bob,

<<where do I enter this script>>
I don't know. You have to tell me what triggers this to happen.

Regards,
Graham R Seach
Microsoft Access MVP
Canberra, Australia
---------------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Text Box Query! 1
Report showing ZLS as null 2
Script for Text Box 6
Text Box Question 1
Combo Box Dropdown List Query 3
Text Box to show same data on every form 1
TextBox Question! 7
VBA if textbox is null 4

Back
Top