Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - Invalid use of NOT keyword
/* ares.rc file */ #pragma res32 #include <windows.h> #define ADIALOG 100 #define IDC_EDIT 1000 ADIALOG DIALOGEX 58, 28, 247, 189 STYLE DS_CENTER | DS_3DLOOK | WS_POPUP | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_STATICEDGE CAPTION "ACAPTION" FONT 8, "MS Sans Serif" BEGIN EDITTEXT IDC_EDIT, 55, 37, 89, 12, ES_AUTOHSCROLL | NOT WS_BORDER, WS_EX_STATICEDGE END /* EOF */ rcc ares.rc Error : Invalid use of NOT keyword Works fine with MSVC++, Whats wrong ? Jul 02 2003
You could try rc.exe. -Walter "john" <john_member pathlink.com> wrote in message news:bdvl56$nvm$1 digitaldaemon.com.../* ares.rc file */ #pragma res32 #include <windows.h> #define ADIALOG 100 #define IDC_EDIT 1000 ADIALOG DIALOGEX 58, 28, 247, 189 STYLE DS_CENTER | DS_3DLOOK | WS_POPUP | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_STATICEDGE CAPTION "ACAPTION" FONT 8, "MS Sans Serif" BEGIN EDITTEXT IDC_EDIT, 55, 37, 89, 12, ES_AUTOHSCROLL | NOT WS_BORDER, WS_EX_STATICEDGE END /* EOF */ rcc ares.rc Error : Invalid use of NOT keyword Works fine with MSVC++, Whats wrong ? Jul 02 2003
|