Thanks to help of two people, i was able to get this work;
1 2 3 4 5 6 7 8 9 10
TEST = MessageBox(NULL, "Are you sure you want to quit?", " ", MB_ICONQUESTION | MB_YESNO);
switch(TEST)
{
case IDYES:
createbox_COPYRIGHT(); // I used this box just as a test
break;
case IDNO:
createbox_VERSION(); // same as above, for a test.
break;
}
Now if i was to press NO how can i tell the program to resume?