S
Slickuser
Hi,
I have tried these methods but I never get a new line to show on check
box tool tip?
Any idea how to fix this? Thanks.
string strFin = string.Empty;
string str = "a b c d e f g";
string[] strArray = str.Split(' ');
for (int i = 0; i < strArray.Length; i++)
{
//strFin = strFin + "\r\n" + strArray;
strFin = strFin + Environment.NewLine + strArray;
}
checkBox1.ToolTip = strFin;
I have tried these methods but I never get a new line to show on check
box tool tip?
Any idea how to fix this? Thanks.
string strFin = string.Empty;
string str = "a b c d e f g";
string[] strArray = str.Split(' ');
for (int i = 0; i < strArray.Length; i++)
{
//strFin = strFin + "\r\n" + strArray;
strFin = strFin + Environment.NewLine + strArray;
}
checkBox1.ToolTip = strFin;