02-12-2007 01:40 AM
double[] data = new double[40];
string[] tooltips = new string[40];
for (int i = 0; i < data.Length; i++)
tooltip[i] = "chan " + i.ToString();
this.txtChannelsArray.SetValues(data);
this.txtChannelsArray.SetTooltips(tooltips);
02-13-2007 02:02 PM
int i = 0; foreach (Control c in numericEditArray1)
{
toolTip1.SetToolTip(c,
"hello " + i.ToString());i++;
}
02-13-2007 07:58 PM
02-15-2007 08:03 AM
03-05-2007 12:35 PM
Hi Grant,
Thanks for taking the time to post this code! Do we have permission to make an example out of this, and post it to our Dev Zone site? Or, if you prefer, you can post the code.
03-05-2007 01:28 PM
03-05-2007 01:44 PM