07-09-2012 02:41 AM
Hi all,
I want to display #define value of c header file on textbox control when my application executing,
how do I implement it ? Thanks a lot.
07-10-2012 03:49 AM - edited 07-10-2012 03:49 AM
Say like, you have #define PI 3.1415926, you can use printf("PI=%f", PI) to print out the value of PI.
07-10-2012 06:41 AM
Besides, if you wanna display it on your textbox control, you can use SetCtrlVal to make it appeared on your control object.