May 13, 2003
Hi,

I have noticed that RCC resource compiler does not accepts splitted lines while very outdated resource compiler from free Borland does. For example when I use Borland's BRC32.EXE I can have line following line in RC file:

PUSHBUTTON  "&Remove File",IDC_DELETEFILE,298,68,48,14,0,
            WS_EX_CLIENTEDGE

but in RCC in Digital Mars I need all in one line:

PUSHBUTTON  "&Remove File",IDC_DELETEFILE,298,68,48,14,0, WS_EX_CLIENTEDGE

But for some strange reason it does not happen in every case. For example following line works fine:

CONTROL     "Reload on &startup",IDC_RELOADQUEUE,"Button",
            BS_AUTOCHECKBOX | WS_TABSTOP,14,179,80,10

Any help ?

Wlodzimierz Skiba