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);
int i = 0; foreach (Control c in numericEditArray1)
{
toolTip1.SetToolTip(c,
"hello " + i.ToString());i++;
}
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.