I have been making efforts to create a calculator using C++. However with every project I make I hit a dead end somewhere often because I flat out do not understand the problem.
\Form1.h(375): error C3861: 'setMathBox': identifier not found
\Form1.h(429): error C3861: 'setText': identifier not found
These are the errors that I got from the output box I do not really get why this is happening. When the functions are prototyped above under public. Any help with this issue would be much appreciated.
1) This is not C++. This is C++/CLI which is another language.
2) Your setMathBox and setText functions are not declared before use, so compiler does not know they exist.