Tested (see previous post in comments section) and there appears to be a problem. Added one button. Here is the bottom section of the #define list.
#define IDC_BTN_CLEAR_CARRY 1027
#define IDC_BUTTON1 1028
#define IDC_BTN_TEST 1028 // New item added here
#define IDC_BTN_CLEAR_A 1029
#define IDC_BTN_TEST_MULTIPLY 1030
#define IDC_BTN_TEST_SUBTRACT 1031
#define IDC_BTN_CLEAR_RESULT 1032
#define IDC_BTN_CLEAR_ALL 1033
The new button is IDC_BTN_TEST
the mentioned item is
#define _APS_NEXT_CONTROL_VALUE 1034
So Visual Studio inserted the new item at location 1028 but should have added a new 1034 item.
From what I see, I will check Resource.h after adding each new control and make the appropriate edits.
This appears to be a problem in Visual Studio.