09-26-2005 08:25 AM
09-26-2005 06:14 PM
Hello Venki,
The LabWindows/CVI compiler is case sensitive. From looking at the error message, it seems to be caused by a mispelling of the function call. In particular, the first letter in SetCtrlToolTipAttribute needs to be capitalized. This should resolve your errors. Also a quick tip is that you can type setctrlattribute into your code then press Ctrl-P. CVI then will search for the closest match to that function call and if you mispelled the function, you will be able to see the correct prototype and automatically insert the code from the associated function panel.
Thanks.