Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

radio button

Status
Not open for further replies.

hawley

Programmer
Dec 16, 2002
37
US
I am creating three radio buttons. "Submitted", "Not Submitted", and "Submitted & Not Submitted".

I have two problems. The first is that "Submitted & Not Submitted" come out like "Submitted _Not Submitted". How do I make the "&" appear and not the "_"?

Second is I want "Submitted & Not Submitted" to look like
"Submitted & Not
Submitted"
How do I get the hard return?

Thanks in advance!!!
 
Hi,

You have to use && to make & appear. e.g. "Submitted && Not Submitted".

Regards,
Abhijit.
 
That worked. Thank you very much. Any ideas on a hard return? I want "Submitted & Not Submitted" to look like
"Submitted & Not
Submitted"
 
Hi Hawley,

radio button Text = "Submitted && Not~r~n Submitted"

~r~n will insert a line feed.

Regards,
Abhijit.
 
Thanks Abhijit but that did not work. It works if I am inserting a text box and put that in the edit section on the general tab but does not work for a radio button on the edit tab in the code table section. Any other ideas?
 
Create your radio button with no text and use a text box as a label for it (showing that the rb has focus will be tricky in this case however).
 
Thanks mbalent.
What I did was just put a text box over one of the radio button texts and bring that text box to front. Work arounds are fun.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top