Blank Text Box!

B

Bob

--
After searching Google.groups.com and finding no answer, Bob Vance asked:

I have a text box that you enter in payments, is it possible for this text
box to be blank, at the moment it shows $0.00 can I make it blank so if I
enter 123.23 it will show $123.23


Thanks in advance.........Bob Vance
 
G

Guest

You should be able to set it to null and get nothing. For example, default
value "Null."

The $ is a currency format.
 
K

Ken Snell [MVP]

You can use the Format property of the textbox to change the display:

$#,##0.00;-$#,##0.00;"";""

In this case, if a zero is in the textbox, the display when the textbox
doesn't have the focus will be "empty".
 
B

Bob

BRILLIANT Thanx I changed it slightly to this , is that OK?
$#,##0.00;($#,##0.00);"";""
TIA Bob
 
K

Ken Snell [MVP]

That's fine!

--

Ken Snell
<MS ACCESS MVP>

Bob said:
BRILLIANT Thanx I changed it slightly to this , is that OK?
$#,##0.00;($#,##0.00);"";""
TIA Bob
 

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


Top