New to Visual C++ need Help
What I'm trying to do is have a user input several different numbers and then I need them evalutated to meet preset values and then a test message displayed when a button is pushed.
I have the numbers stored as int variables and the text as a CString. I'm having problems getting it to see the variables, compare them and then
return the text message.
I'm trying to use "if" statements for this.
Example: if (m_iRed >= 12 && m_igreen >= 12 && m_iblue >= 12)
m_stranswer = "What text I need it to display";
If anyone has any suggestions or helpful hints, please let me know, I am just learning this.
|