oodListViews.rex in ooRexx\samples\oodialog works fine.
 
But when I try to open the .rc file ( rc\oodListViews.rc) with ResEdit
(v1.5.7), it says there's an error:

-------------------------------------------
Error in file: D:\...\oodListViews.rc
Line 76: Character string expected.

... 
IDD_LISTVIEWS DIALOG 0, 0, 400, 219
STYLE DS_3DLOOK | DS_CENTER | DS_MODALFRAME | DS_SHELLFONT | WS_CAPTION |
WS_VISIBLE | WS_POPUP | WS_SYSMENU
CAPTION "List Views"
FONT 8, "Ms Shell Dlg"
{
    CONTROL         "", IDC_TAB, WC_TABCONTROL, WS_TABSTOP, 10, 10, 380, 175
    PUSHBUTTON      "Backward", IDC_PB_BACKWARD, 10, 195, 62, 14
    PUSHBUTTON      "Forward", IDC_PB_FORWARD, 77, 195, 62, 14
    PUSHBUTTON      "Add Record", IDC_PB_ADDRECORD, 167, 195, 62, 14
    DEFPUSHBUTTON   "OK", IDOK, 261, 195, 62, 14
    PUSHBUTTON      "Cancel", IDCANCEL, 328, 195, 62, 14
}
...
--------------------------------------------
 
Line 76 is the line:
    CONTROL         "", IDC_TAB, WC_TABCONTROL, WS_TABSTOP, 10, 10, 380, 175

I tried changing this to:
    CONTROL         "xxx", IDC_TAB, WC_TABCONTROL, WS_TABSTOP, 10, 10, 380,
175 

But it still reported the same error. 

I commented out the line, and it then reported the same error for line 91:
    CONTROL         "", IDC_LISTVIEW, WC_LISTVIEW, WS_TABSTOP | WS_BORDER |
LVS_EDITLABELS | LVS_LIST, 3, 3, 368, 154 

Any thoughts? Maybe a problem with ResEdit 1.5.7?

Thx,
Oliver
 



------------------------------------------------------------------------------
uberSVN's rich system and user administration capabilities and model 
configuration take the hassle out of deploying and managing Subversion and 
the tools developers use with it. Learn more about uberSVN and get a free 
download at:  http://p.sf.net/sfu/wandisco-dev2dev
_______________________________________________
Oorexx-users mailing list
Oorexx-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-users

Reply via email to