G
Greg
How do I display multiple lines of text on a button?
I want my button to read:
I want my button to read:
Greg said:Anyway I want my button to read:
Yes
(option will
recalculate)
-----Original Message-----
Not too bad; just go into the form code, find the line where it sets
Button.Text, and change it to something like (in VB):
Button1.Text = "Yes" & Environment.NewLine & "(option will recalculate)"
The Text value will look funny in the form designer's PropertyGrid, but
it'll work and look fine.
Jeremy
.