FWH 11.09 + BCC582 + UEStudio 11.20 problem compilation

Post Reply
servulo
Posts: 9
Joined: Tue Dec 16, 2008 12:42 pm
Location: São Paulo

FWH 11.09 + BCC582 + UEStudio 11.20 problem compilation

Post by servulo »

Code: Select all

 
--------------------Configuration: TesteUES - Release--------------------
xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6741)
Copyright 1999-2010, http://www.xharbour.org http://www.harbour-project.org/
Borland C++ 5.82 for Win32 Copyright (c) 1993, 2005 Borland
TesteUES.c:
Borland Resource Compiler  Version 5.40
Copyright (c) 1990, 1999 Inprise Corporation.  All rights reserved.

Error TesteUES.rc 13 21: Expecting signed short integer
Turbo Incremental Link 5.69 Copyright (c) 1997-2005 Borland
Error: Unable to open file 'TESTEUES.RES'
TesteUES.EXE - 2 error(s), 0 warning(s)

===================
This is TesteUES.rc
===================
#include <winapi.ch>

//////////////////////////////////////////////////////////////////////////////
//
// Dialog
//

IDD_DIALOG1 DIALOG 0, 0, 551, 270
STYLE DS_MODALFRAME | WS_BORDER | WS_DLGFRAME | WS_POPUP | WS_SYSMENU
FONT 8, "MS Sans Serif"
CAPTION "Dialog"
BEGIN
    LISTBOX         IDC_LIST1, 19, 10, 322, 129, LBS_NOINTEGRALHEIGHT | LBS_SORT | WS_TABSTOP | WS_VSCROLL
END

 

Good afternoon, I'm trying to compile a test application using:

a) FWH 11:09
b) Borland Bcc582
c) xHarbour 1:21 Rev 6741

create your own feature in UEStudio, very good but the build of the above error

Luiz Servulo
xHarbour 1.21
FWH 11.09
UEStudio 11.20
Diadema/SP
Luiz Servulo
ADutheil
Posts: 352
Joined: Sun May 31, 2009 6:25 pm
Location: Salvador - Bahia - Brazil

Re: FWH 11.09 + BCC582 + UEStudio 11.20 problem compilation

Post by ADutheil »

I think the definition of IDC_LIST1 is missing. Change it to 101 in your .RC file and it should work.
Regards,

André Dutheil
FWH 13.04 HB 3.2 BCC 5.82 MinGW 4.5.2 MSVS 10
servulo
Posts: 9
Joined: Tue Dec 16, 2008 12:42 pm
Location: São Paulo

Re: FWH 11.09 + BCC582 + UEStudio 11.20 problem compilation

Post by servulo »

ADutheil wrote:I think the definition of IDC_LIST1 is missing. Change it to 101 in your .RC file and it should work.

André,

direct hit, replacing the reference "IDC_LIST1" with 101 and it's all perfect, excellent suggestion ... grateful friend


I had tried several times to use UEStudio to FWH and had given up, thank you

Puxa nem tinha visto que estas na Bahia de Todos os Santos ;-)
Luiz Servulo
Post Reply