NO

Author Topic: Resource accelerators change from named contstants to negative numbers on save  (Read 2067 times)

severach

  • Guest
Code: [Select]
#define IDC_TEST 40000
100 ACCELERATORS DISCARDABLE
    VK_F1,          IDC_TEST ,        VIRTKEY, NOINVERT
The IDE interprets this fine but when it saves a negative number shows up in place of IDC_TEST.
Code: [Select]
    VK_F1,          -25536 ,        VIRTKEY, NOINVERT
It still works everywhere but losing the named constant makes code changes unsafe.