Conditional Printing

saqibawr

Registered User.
Local time
Today, 19:32
Joined
Oct 3, 2008
Messages
27
If my form consist of several text boxes & the value of some text boxes is 0 then what will the the vb command for a button that it prints the text which is > 0. Mean that the text boxes with 0 values should not be displayed in print out??????????????

:confused::confused::confused::confused:

Help Please.....
 
private sub form_load()
if textbox."name".value >0 then textbox."name".visible=true
else
textbox."name".visible=false
end if
end sub
 

Users who are viewing this thread

Back
Top Bottom