G
Guest
I'm assigning a description to my form title, such as:
strDesc = "This is a test if the description will fit in"
frmTest.Text = "(" & strDesc & ")"
If strDesc doesn't fit in the title, I don't see the closing paranthesis:
("This is a test if the description will fi..."
I would like to be able to determine if strDesc will fit into the space
provided, and if it won't fit, I would like display only as much as would fit:
("This is a test if the description will f...)"
How can I do this? Thank you!
strDesc = "This is a test if the description will fit in"
frmTest.Text = "(" & strDesc & ")"
If strDesc doesn't fit in the title, I don't see the closing paranthesis:
("This is a test if the description will fi..."
I would like to be able to determine if strDesc will fit into the space
provided, and if it won't fit, I would like display only as much as would fit:
("This is a test if the description will f...)"
How can I do this? Thank you!