UESTUDIO 09 (solucionado)

UESTUDIO 09 (solucionado)

Postby juan_arroyo_t » Tue Apr 26, 2011 1:54 am

Amigos del foro

Estoy tratando de compilar mi aplicacion y me muestra estos mensajes de error

Error MENU.RC 12 32: Expecting BEGIN
Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland
Error: Unable to open file 'MENU.RES'
"Borra.bat" no se reconoce como un comando interno o externo,
programa o archivo por lotes ejecutable.
MENU.EXE - 2 error(es), 0 advertencia(s)


Esto es parte de mi archivo rc
// RESOURCE SCRIPT generated by "Pelles C for Windows, version 6.00".

#include <windows.h>
#include <commctrl.h>
#include <richedit.h>

LANGUAGE LANG_ENGLISH,SUBLANG_ENGLISH_US

MANSOC DIALOGEX DISCARDABLE 6, 15, 508, 234
STYLE WS_POPUP|WS_THICKFRAME|WS_CAPTION|WS_SYSMENU|WS_VISIBLE
CAPTION "Mantenimiento de socios"
FONT 8, "MS Sans Serif", 0, 0, 0
{
CONTROL "", 101, "TWBrowse", WS_TABSTOP|0x00b00000, 35, 42, 438, 168
}

Quiero mencionar que yo tenia un archivo rc generado con workshop (16 bits), lo abrí con pellesC, lo guardé lo volvi a abrir con pellesC y lo salvé como res

Si alguien pudiera ayudarme

Saludos
Last edited by juan_arroyo_t on Sat Aug 24, 2013 11:55 am, edited 1 time in total.
Juan Arroyo
México
FWH 7.12 VERCE 5.3 xHarbour 1.1.0
juan_arroyo_t@hotmail.com
User avatar
juan_arroyo_t
 
Posts: 196
Joined: Fri May 15, 2009 1:25 am
Location: Cuautitlán, Mexico

Re: UESTUDIO 09

Postby Bayron » Tue Apr 26, 2011 3:19 am

Juan,
Primero que nada, en
Code: Select all  Expand view
FONT 8, "MS Sans Serif", 0, 0, 0


cambialo por:
Code: Select all  Expand view
FONT 8, "MS Sans Serif"


Despues, asegurate que la ruta de acceso a BORRA.BAT es correcta
=====>

Bayron Landaverry
(215)2226600 Philadelphia,PA, USA
+(502)46727275 Guatemala
MayaBuilders@gMail.com

FWH12.04||Harbour 3.2.0 (18754)||BCC6.5||UEstudio 10.10||
Windows 7 Ultimate

FiveWin, One line of code and it's done...
User avatar
Bayron
 
Posts: 815
Joined: Thu Dec 24, 2009 12:46 am
Location: Philadelphia, PA

Re: UESTUDIO 09

Postby juan_arroyo_t » Tue Apr 26, 2011 2:26 pm

Bayron

Muchas gracias

Ya logré compilar mi aplicación pero con algunos detalles

Con respecto al rc cada vez que abro mi archivo con el pellesC, me pone las líneas que provocan el error de Begin, esto se debe a que el archivo lo cree inicialmente con el workshop ?; si yo empiezo de cero en el pellesC para crear un archivo rc ya no voy a tener ese problema ?

No se donde deba ir el borra.bat, lo estuve poniendo en la carpeta raiz de mi aplicacion y otras subcarpetas pero me sigue dando el mismo mensaje al compilar de que no se reconoce como un archivo de comando, no se si la ruta la debo indicar en el application que tengo en uestudio\configs\xharbour en la línea : cdm2 = borra.bat

Tengo un archivo wbrowse.lib que coloqué en FWH\LIB y en el application agregué la ruta pero al compilar no lo toma en cuenta, lo que hice fue agregar directamente en mi proyecto wbrowse.prg y tmultisele

Leí en los foros de fivewin que había que agregar una linea para las librerias propias como libreria 4 pero no supe como hacerlo

Tendrás algun ejemplo de algun archivo de proyecto que me pudiera servir de ejemplo, mucho te lo agradecería

Saludos
Juan Arroyo
México
FWH 7.12 VERCE 5.3 xHarbour 1.1.0
juan_arroyo_t@hotmail.com
User avatar
juan_arroyo_t
 
Posts: 196
Joined: Fri May 15, 2009 1:25 am
Location: Cuautitlán, Mexico

Re: UESTUDIO 09

Postby acuellar » Tue Apr 26, 2011 4:01 pm

Juan,

El borra.bat es para eliminar archivos no necesarios, si no queres que se borren quita la linea Cmd2 = Borra.bat
del archivo Application que tenes dentro de config\xharbour

Si lo queres mantenerlo debes colocarlo donde coloca los .OBJ

El contenido de BORRA.BAT es

@echo off
DEL ..\*.TDS
DEL *.TDS
DEL *.MEV
DEL *.MAP
DEL ..\*.MAP
DEL ..\*.UDP
DEL ..\*.PUI
DEL *.LOG
DEL *.EXE

para ayudarte mejor coloca el contenido de tu Application, para direccionar tus librerias

Saludos,

Adhemar
Saludos,

Adhemar C.
User avatar
acuellar
 
Posts: 1594
Joined: Tue Oct 28, 2008 6:26 pm
Location: Santa Cruz-Bolivia

Re: UESTUDIO 09

Postby Bayron » Tue Apr 26, 2011 4:10 pm

Juan,

Con el asunto del archivo .RC, yo ne he encontrado ninguna solucion y siempre tengo que remover esas lineas manualmente...

A continuacion encontraras un ejemplo de archivo de configuracion; presta atencion en

[Variables]
GLIB = {[$(GUI)=][none=gtwin.lib][FWH=TSButton.LIB WBROW32.LIB fivehx.lib fivehc.lib gtgui.lib]}

y en

[Build]

ahi podras ver como insertar BORRAR.BAT

Code: Select all  Expand view
# --------- xHarbour Compiler configuration --------
# --- general --------------------------------------
# $P  - project name
# $Pp - path to project directory
# $Pn - project name
# --- compile --------------------------------------
# $I  - input full name
# $Ip - input path
# $In - input name
# $Ie - input extension
# $O  - output file
# $Op - path to output file
# $On - output filename (without path)
# $Oe - output extension
# $R  - release/debug setting for compiler
# --- build ----------------------------------------
# $T  - target full name
# $Tp - target path
# $Tn - target name
# $O  - output file
# $Op - path to output file
# $On - output filename (without path)
# $Oe - output extension
# $R  - release/debug setting for linker

[Settings]
Target =
Category&01 = DEFAULT RUN CONFIGURATION
Working Directory =.
Command Line Arguments =

Category&02 = xHarbour Options
GUI = none|FWH
3rd Party Rdd = None|RddAds
Automatic Memvar Declaration = no|yes
Variables Are Assumed = no|yes
Generate Preprocessed Output = no|yes
Use MT Library = no|yes
Warning Level = 1|2|3|4|0
Use xHarbour Dll = no|yes
User Include Path =
User Defines =

Compiler Options =
Linker Options =

Excluded Files = Excludes
External Dependencies=yes|no

[SettingsInfo]
Target = Provides a space for you to specify an output file and location of the program that the linker creates.
Working Directory = Provides a space for you to specify the directory in which executing occurs. If you do not specify a directory, executing occurs in the directory where the executable is located.
Command Line Arguments = Provides a space for you to specify command-line arguments you want to pass to the program at startup.
Compiler Options = Provides a space for you to specify an additional compiler options.
User Defines = Shows the switches the tool will use to build. Use ';' as delimiter.
Use MT Library = Set this if you want to use Multi threaded libraries
Linker Options = Provides a space for you to specify an additional linker options.
Excluded Files = This will exclude the file(s) included in this UE project group from the build.
External Dependencies=If you select "yes" option, UE Studio will generate in project group "External Dependencies" from included files.
3rd Party Rdd = You can specify here 3rd party Rdd


[SettingsReps]
User Defines = @[;|-D%s]
Automatic Memvar Declaration = no=|yes=/a
Variables Are Assumed = no=|yes=/v
Generate Preprocessed Output = no=|yes=/p
User Include Path = ^^@[;|;%s]
User Include Path&1 = ^^@[;| /i%s]
Use Multi Thread Library = no|yes
Warning Level = @/w%s
Use xHarbour Dll = no=|yes=harbour.lib
External Dependencies=yes=1|no=0


[Variables]
FWH = L:\FWH10.2
CPATH = L:\xHarbour1.21
BPATH = L:\BCC582

FWHI = $(FWH)\include
FWHL = $(FWH)\lib

GUII = {[$(GUI)=][none=][FWH=;$(FWHI)]}
GUIL = {[$(GUI)=][none=][FWH=;$(FWHL)]}

GUII&1 = {[$(GUI)=][none=][FWH=/i$(FWHI)]}

BOPT = -c -D__EXPORT__ -I$(CPATH)\INCLUDE;$(BPATH)\INCLUDE$(User Include Path)$(GUII) $(DEFS)
COPT = /n /gc0 /q $(Compiler Options) /i$(CPATH)\INCLUDE $(User Include Path&1) $(GUII&1) $(User Defines) $(Automatic Memvar Declaration) $(Variables Are Assumed) $(Generate Preprocessed Output) $(Warning Level)

LOPT = -L$(BPATH)\LIB\OBJ;$(BPATH)\LIB;$(CPATH)\LIB$(GUIL) -Gn -M -m -s -Tpe -x $(GLnk) $(Linker Options)
LIB1 = lang.lib vm.lib rtl.lib rdd.lib macro.lib pp.lib dbfntx.lib dbfcdx.lib dbffpt.lib common.lib codepage.lib ct.lib pcrepos.lib hbsix.lib HBCC.LIB import32.lib cw32.lib
LIBM = lang.lib vmmt.lib rtlmt.lib rddmt.lib macromt.lib ppmt.lib dbfntxmt.lib dbfcdxmt.lib dbffptmt.lib common.lib codepage.lib ctmt.lib tipmt.lib pcrepos.lib hsxmt.lib hbsixmt.lib import32.lib cw32mt.lib

LIBX = {[$(Use MT Library)=][no=$(LIB1)][yes=$(LIBM)]}
DEFS = {[$(Use MT Library)=][no=][yes=-DHB_THREAD_SUPPORT -D__MT__]}
GLIB = {[$(GUI)=][none=gtwin.lib][FWH=TSButton.LIB WBROW32.LIB fivehx.lib fivehc.lib gtgui.lib]}
LIBS = $(Use xHarbour Dll) {[$(BuildMode)=][Debug=debug.lib]} $(GLIB) $(LIBX) {[$(3rd Party Rdd)=][RddAds=rddads.lib ace32.lib]}

GLnk = {[$(GUI)=][none=-ap][FWH=-aa]}
DCon = {[$(GUI)=][none=1][FWH=0]}

LinkWith = {[$(GUI)=][none=c0x32.obj][FWH=c0w32.obj]}

[Environment]
PATH = $(CPATH)\BIN;$(BPATH)\BIN;%PATH%
INCLUDE = $(CPATH)\INCLUDE;$(BPATH)\INCLUDE$(User Include Path);$(GUII)
LIB = $(CPATH)\LIB;$(BPATH)\LIB;$(GUIL)
OBJ = $(CPATH)\OBJ;
BuildMode = %UESMode%

[General]
TargetExt = .EXE
ReleaseOut = Release
DebugOut = Debug
UseFullPaths = 1
UseDosNames = 1
Excludes = $(Excluded Files)
GenerateEDGroup=$(External Dependencies)
.CPP = .C

[MakeCommands]
run = Execute Application
makef = Show Makefile

[Execute Application]
Title = Execute $T
Cmd0 = $(Command Line Arguments)
Depends = $T
ShowWindow = 1
DisplayConsole = $(DCon)

[Show Makefile]
Title=Show makefile
Cmd0=uestudio $(UESMAKEFILE)
ShowWindow=1
DisplayConsole=0

[InsertFiles]

[FileGroups]
FGO = .obj;
FGR = .res;
FGL = .lib;
FGD = .def;

[GroupFormats]
FGO = %s
FGR = %s
FGL = %s

[Build]
Out = $T
Depends = $FGO $FGR
DebugFlag =
ReleaseFlag =
Cmd0 = ILINK32 $(LOPT) $R $(LinkWith) $FGO,$On,,$(LIBS) $FGL,$FGD,$FGR
Cmd1 = echo.
Cmd2 = echo.
Cmd3 = COPY /Y L:\MAYAPOS\PROJECT\RELEASE\$T L:\MAYAPOS
Cmd4 = L:\MAYAPOS\$T

[.PRG]
Out = $In.c
DebugFlag = /b
ReleaseFlag = /l
Cmd0 = harbour $I $(COPT) $R /o$O

IncFiles = 1
CaseSensitive = 0
IncDirs = .;$(INCLUDE);
IncKeyWords = #include;
Comments = /*.*/.//.eol.

[.C]
Out = $In.obj
Cmd0 = bcc32 $(BOPT) -o$O $I

[.RC]
Out = $In.res
Cmd0 = brcc32 -r -32 -fo$O $I

IncFiles = 1
CaseSensitive = 0
IncDirs = .;$(INCLUDE);
IncKeyWords = #include;
Comments = /*.*/.//.eol.
 
=====>

Bayron Landaverry
(215)2226600 Philadelphia,PA, USA
+(502)46727275 Guatemala
MayaBuilders@gMail.com

FWH12.04||Harbour 3.2.0 (18754)||BCC6.5||UEstudio 10.10||
Windows 7 Ultimate

FiveWin, One line of code and it's done...
User avatar
Bayron
 
Posts: 815
Joined: Thu Dec 24, 2009 12:46 am
Location: Philadelphia, PA

Re: UESTUDIO 09

Postby juan_arroyo_t » Wed Apr 27, 2011 2:10 am

Bayron, Adhemar

Bayron, con toda franqueza se me hizo muy complejo el archivo de configuracion

Estoy anexando mis archivos

Proyecto

Code: Select all  Expand view
[Project ID]
Signature=UE Proj: v.1
[Project Information]
Use Relative Directory=1
Relative to Project File=1
Compilable=1
Project Directory=C:\CAJAFW
Include Sub Directories=0
Project Tagfile=
Project Wordfile=
Filter=
Using VCS=0
Save Account=0
Create Tagfile=0
CTags Legacy Support=0
[uemakeXp]
Compiler=Configs\xHarbour Compiler\Application
ReleaseMode=1
Files=36049951
[Debug Settings]
Program Arguments=
Symbol Paths=
Working Directory=
Selected Debugger=0
Source Paths=
[Configs\Harbour\Application]
OutputDirectory_ReleaseMode=Release
OutputDirectory_DebugMode=Debug
Target=MENU.EXE
Working Directory=.
Command Line Arguments=MENU.EXE
Automatic Memvar Declaration=no
Variables Are Assumed=no
Generate Preprocessed Output=no
Warning Level=1
User Include Path=
User Defines=
Compiler Options=
Linker Options=
Excluded Files=Excludes
[Configs\xHarbour Compiler\Application]
OutputDirectory_ReleaseMode=Release
OutputDirectory_DebugMode=Debug
Target=MENU.EXE
Working Directory=.
Command Line Arguments=MENU.EXE
GUI=none
3rd Party Rdd=None
Automatic Memvar Declaration=no
Variables Are Assumed=no
Generate Preprocessed Output=no
Use MT Library=no
Warning Level=1
Use xHarbour Dll=no
User Include Path=
User Defines=
Compiler Options=
Linker Options=
Excluded Files=Excludes
External Dependencies=yes
[Group]
0=External Dependencies
[Configs\xHarbour\Application]
OutputDirectory_ReleaseMode=OBJ
OutputDirectory_DebugMode=.
Target=MENU.EXE
Working Directory=.
Command Line Arguments=MENU.EXE
Automatic Memvar Declaration=no
Variables Are Assumed=no
Generate Preprocessed Output=no
Warning Level=0
User Include Path=
User Defines=
Compiler Options=
Linker Options=
Excluded Files=Excludes
[Files]
0=Prgs\Menu.prg
1=Prgs\CapApo.prg
2=Prgs\CapPag.prg
3=Prgs\CapPre.prg
4=Prgs\CorDes.prg
5=Prgs\GenDes.prg
6=Prgs\IncDes.prg
7=Prgs\Indexa.prg
8=Prgs\ManSoc.prg
9=Prgs\MovBan.prg
10=Prgs\RepApo.prg
11=Prgs\RepBal.prg
12=Prgs\RepDes.prg
13=Prgs\RepInt.prg
14=Prgs\RepPag1.prg
15=Prgs\RepPag2.prg
16=Prgs\RepPre1.prg
17=Prgs\RepPre2.prg
18=Prgs\RepSta.prg
19=Prgs\TGET.PRG
20=Rcs\MENU.RC
21=..\FWH\lib\WBROWSE.LIB
[Files - External Dependencies]
0=C:\xHarbour\INCLUDE\Set.ch
1=C:\BORLAND\BCC55\INCLUDE\windows.h
2=C:\BORLAND\BCC55\INCLUDE\winresrc.h
3=C:\BORLAND\BCC55\INCLUDE\winuser.rh
4=C:\BORLAND\BCC55\INCLUDE\commctrl.rh
5=C:\BORLAND\BCC55\INCLUDE\dde.rh
6=C:\BORLAND\BCC55\INCLUDE\winnt.rh
7=C:\BORLAND\BCC55\INCLUDE\dlgs.h
8=C:\BORLAND\BCC55\INCLUDE\winver.h
9=C:\BORLAND\BCC55\INCLUDE\excpt.h
10=C:\BORLAND\BCC55\INCLUDE\stdarg.h
11=C:\BORLAND\BCC55\INCLUDE\windef.h
12=C:\BORLAND\BCC55\INCLUDE\winnt.h
13=C:\BORLAND\BCC55\INCLUDE\ctype.h
14=C:\BORLAND\BCC55\INCLUDE\basetsd.h
15=C:\BORLAND\BCC55\INCLUDE\guiddef.h
16=C:\BORLAND\BCC55\INCLUDE\pshpack4.h
17=C:\BORLAND\BCC55\INCLUDE\poppack.h
18=C:\BORLAND\BCC55\INCLUDE\pshpack2.h
19=C:\BORLAND\BCC55\INCLUDE\pshpack1.h
20=C:\BORLAND\BCC55\INCLUDE\pshpack8.h
21=C:\BORLAND\BCC55\INCLUDE\string.h
22=C:\BORLAND\BCC55\INCLUDE\winbase.h
23=C:\BORLAND\BCC55\INCLUDE\winerror.h
24=C:\BORLAND\BCC55\INCLUDE\wingdi.h
25=C:\BORLAND\BCC55\INCLUDE\winuser.h
26=C:\BORLAND\BCC55\INCLUDE\tvout.h
27=C:\BORLAND\BCC55\INCLUDE\winnls.h
28=C:\BORLAND\BCC55\INCLUDE\wincon.h
29=C:\BORLAND\BCC55\INCLUDE\winreg.h
30=C:\BORLAND\BCC55\INCLUDE\winnetwk.h
31=C:\BORLAND\BCC55\INCLUDE\cderr.h
32=C:\BORLAND\BCC55\INCLUDE\dde.h
33=C:\BORLAND\BCC55\INCLUDE\ddeml.h
34=C:\BORLAND\BCC55\INCLUDE\lzexpand.h
35=C:\BORLAND\BCC55\INCLUDE\mmsystem.h
36=C:\BORLAND\BCC55\INCLUDE\nb30.h
37=C:\BORLAND\BCC55\INCLUDE\rpc.h
38=C:\BORLAND\BCC55\INCLUDE\setjmp.h
39=C:\BORLAND\BCC55\INCLUDE\_defs.h
40=C:\BORLAND\BCC55\INCLUDE\rpcdce.h
41=C:\BORLAND\BCC55\INCLUDE\rpcdcep.h
42=C:\BORLAND\BCC55\INCLUDE\rpcnsi.h
43=C:\BORLAND\BCC55\INCLUDE\rpcnterr.h
44=C:\BORLAND\BCC55\INCLUDE\rpcasync.h
45=C:\BORLAND\BCC55\INCLUDE\shellapi.h
46=C:\BORLAND\BCC55\INCLUDE\winperf.h
47=C:\BORLAND\BCC55\INCLUDE\winsock2.h
48=C:\BORLAND\BCC55\INCLUDE\qos.h
49=C:\BORLAND\BCC55\INCLUDE\mswsock.h
50=C:\BORLAND\BCC55\INCLUDE\winsock.h
51=C:\BORLAND\BCC55\INCLUDE\wincrypt.h
52=C:\BORLAND\BCC55\INCLUDE\winefs.h
53=C:\BORLAND\BCC55\INCLUDE\winscard.h
54=C:\BORLAND\BCC55\INCLUDE\wtypes.h
55=C:\BORLAND\BCC55\INCLUDE\rpcndr.h
56=C:\BORLAND\BCC55\INCLUDE\winioctl.h
57=C:\BORLAND\BCC55\INCLUDE\winsmcrd.h
58=C:\BORLAND\BCC55\INCLUDE\SCardErr.h
59=C:\BORLAND\BCC55\INCLUDE\winspool.h
60=C:\BORLAND\BCC55\INCLUDE\prsht.h
61=C:\BORLAND\BCC55\INCLUDE\ole2.h
62=C:\BORLAND\BCC55\INCLUDE\objbase.h
63=C:\BORLAND\BCC55\INCLUDE\stdlib.h
64=C:\BORLAND\BCC55\INCLUDE\unknwn.h
65=C:\BORLAND\BCC55\INCLUDE\objidl.h
66=C:\BORLAND\BCC55\INCLUDE\cguid.h
67=C:\BORLAND\BCC55\INCLUDE\urlmon.h
68=C:\BORLAND\BCC55\INCLUDE\propidl.h
69=C:\BORLAND\BCC55\INCLUDE\oleauto.h
70=C:\BORLAND\BCC55\INCLUDE\oaidl.h
71=C:\BORLAND\BCC55\INCLUDE\oleidl.h
72=C:\BORLAND\BCC55\INCLUDE\commdlg.h
73=C:\BORLAND\BCC55\INCLUDE\winsvc.h
74=C:\BORLAND\BCC55\INCLUDE\mcx.h
75=C:\BORLAND\BCC55\INCLUDE\imm.h
76=C:\BORLAND\BCC55\INCLUDE\commctrl.h
77=C:\BORLAND\BCC55\INCLUDE\richedit.h
 


Application

Code: Select all  Expand view
# --------- xHarbour y FWH configuration --------
# --- general --------------------------------------
# $P  - project name
# $Pp - path to project directory
# $Pn - project name
# --- compile --------------------------------------
# $I  - input full name
# $Ip - input path
# $In - input name
# $Ie - input extension
# $O  - output file
# $Op - path to output file
# $On - output filename (without path)
# $Oe - output extension
# $R  - release/debug setting for compiler
# --- build ----------------------------------------
# $T  - target full name
# $Tp - target path
# $Tn - target name
# $O  - output file
# $Op - path to output file
# $On - output filename (without path)
# $Oe - output extension
# $R  - release/debug setting for linker

[Settings]
Target =
Category&01 = DEFAULT RUN CONFIGURATION
Working Directory =.
Command Line Arguments =

Category&02 = Harbour Options
Automatic Memvar Declaration = no|yes
Variables Are Assumed = no|yes
Generate Preprocessed Output = no|yes
Warning Level = 1|2|3|4|0
User Include Path =
User Defines =

Compiler Options =
Linker Options =

Excluded Files = Excludes

[SettingsInfo]
Target = Provides a space for you to specify an output file and location of the program that the linker creates.
Working Directory = Provides a space for you to specify the directory in which executing occurs. If you do not specify a directory, executing occurs in the directory where the executable is located.
Command Line Arguments = Provides a space for you to specify command-line arguments you want to pass to the program at startup.
Compiler Options = Provides a space for you to specify an additional compiler options.
User Defines = Shows the switches the tool will use to build. Use ';' as delimiter.
Linker Options = Provides a space for you to specify an additional linker options.
Excluded Files = This will exclude the file(s) included in this UE project group from the build.

[SettingsReps]
User Defines = @[;|-D%s]
Automatic Memvar Declaration = no=|yes=/a
Variables Are Assumed = no=|yes=/v
Generate Preprocessed Output = no=|yes=/p
User Include Path = ^^@[;|;%s]
User Include Path&1 = ^^@[;| /i%s]
Use Multi Thread Library = no|yes
Warning Level = @/w%s

[Variables]
FWH = C:\FWH
HPATH = C:\xHarbour
CPATH = C:\Borland\bcc55

HPATHL = $(HPATH)\LIB
CPATHL = $(CPATH)\LIB

HOPT = /n /gc1 /q $(Compiler Options) /i$(HPATH)\INCLUDE $(User Include Path&1) $(User Defines) $(Automatic Memvar Declaration) $(Variables Are Assumed) $(Generate Preprocessed Output) $(Warning Level)
COPT = -O2 -M -c -v -I$(HPATH)\INCLUDE

LOPT = -Gn -aa -Tpe -s -v
LIBS1 = $(FWH)\LIB\FiveHX.lib $(FWH)\LIB\FiveHC.lib $(FWH)\LIB\wBrowse.lib $(HPATHL)\HBZIP.lib $(HPATHL)\rddads.lib
LIBS2 =  $(HPATHL)\rtl.lib $(HPATHL)\vm.lib $(HPATHL)\gtgui.lib $(HPATHL)\lang.lib $(HPATHL)\macro.lib $(HPATHL)\rdd.lib $(HPATHL)\dbfcdx.lib $(HPATHL)\dbfntx.lib $(HPATHL)\dbffpt.lib $(HPATHL)\hbsix.lib $(HPATHL)\debug.lib $(HPATHL)\common.lib $(HPATHL)\pp.lib $(HPATHL)\codepage.lib $(HPATHL)\pcrepos.lib $(HPATHL)\ct.lib
LIBS3 = $(CPATHL)\cw32.lib $(CPATHL)\import32.lib $(CPATHL)\psdk\odbc32.lib $(CPATHL)\psdk\msimg32.lib $(CPATHL)\psdk\nddeapi.lib $(CPATHL)\psdk\iphlpapi.lib  $(CPATHL)\psdk\rasapi32.lib
LIBS = $(LIBS1) $(LIBS2) $(LIBS3)

[Environment]
PATH = $(HPATH)\BIN;$(CPATH)\BIN;%PATH%
INCLUDE = $(HPATH)\INCLUDE;$(CPATH)\INCLUDE;$(FWH)\INCLUDE
LIB = $(HPATH)\LIB;$(CPATH)\LIB
BuildMode = %UESMode%

[General]
TargetExt = .EXE
ReleaseOut = Release
DebugOut = Debug
UseFullPaths = 1
UseDosNames = 1
Excludes = $(Excluded Files)
GenerateEDGroup=$(External Dependencies)
.CPP = .C

[MakeCommands]
run = Execute Application
makef = Show Makefile

[Execute Application]
Title = Execute $T
Cmd0 = $(Command Line Arguments)
Depends = $T
ShowWindow = 1
DisplayConsole = $(DCon)

[Show Makefile]
Title=Show makefile
Cmd0=uestudio makefile
ShowWindow=1
DisplayConsole=0

[InsertFiles]

[FileGroups]
FGO = .obj;
FGR = .res;
FGL = .lib;
FGD = .def;

[GroupFormats]
FGO = %s
FGR = %s
FGL = %s

[Build]
Out = $T
Depends = $FGO $FGR
DebugFlag =
ReleaseFlag =
Cmd0 = ilink32 $(LOPT) c0w32.obj $FGO, $Pp\$T,, $(LIBS),, $FGR
Cmd1 = $Pp\$T
Cmd2 = Borra.bat

[.PRG]
Out = $In.c
DebugFlag = /b
ReleaseFlag = /l
Cmd0 = harbour $I $(HOPT) $R /o$O

IncFiles = 1
CaseSensitive = 0
IncDirs = .;$(INCLUDE);
IncKeyWords = #include;
Comments = /*.*/.//.eol.

[.C]
Out = $In.obj
Cmd0 = bcc32 $(COPT) -o$O $I

[.RC]
Out = $In.res
Cmd0 = brc32 -r -fo$O $I

IncFiles = 1
CaseSensitive = 0
IncDirs = .;$(INCLUDE);
IncKeyWords = #include;
Comments = /*.*/.//.eol.
 


Imagenes
[img][IMG]http://img810.imageshack.us/img810/7909/carpeta.th.jpg[/img]

Uploaded with ImageShack.us[/img]

[img][IMG]http://img541.imageshack.us/img541/3217/proyecto.th.jpg[/img]

Uploaded with ImageShack.us[/img]


Les hago el comentario que agregando el wbrowse.prg al proyecto no tuve problemas pero yo quiero utilizar mi wbrowse.lib; esta ya la tengo en la carpeta fwh\lib

Por favor echenme la mano

De antemano muchas gracias

Saludos
Juan Arroyo
México
FWH 7.12 VERCE 5.3 xHarbour 1.1.0
juan_arroyo_t@hotmail.com
User avatar
juan_arroyo_t
 
Posts: 196
Joined: Fri May 15, 2009 1:25 am
Location: Cuautitlán, Mexico

Re: UESTUDIO 09

Postby Bayron » Wed Apr 27, 2011 2:59 am

Juan,
En el Archivo de Proyecto:
[Files]
Elimina la linea 21 que accede a wbrowse.lib

En el Archivo de Application:
El WBrowse.lib debe ser incluido antes de las librerias de Fivewin...

Y deberias incluir la ruta de acceso a BORRA.BAT a menos que tengas definido el PATH para accesarlo...
=====>

Bayron Landaverry
(215)2226600 Philadelphia,PA, USA
+(502)46727275 Guatemala
MayaBuilders@gMail.com

FWH12.04||Harbour 3.2.0 (18754)||BCC6.5||UEstudio 10.10||
Windows 7 Ultimate

FiveWin, One line of code and it's done...
User avatar
Bayron
 
Posts: 815
Joined: Thu Dec 24, 2009 12:46 am
Location: Philadelphia, PA

Re: UESTUDIO 09 (Solucionado)

Postby juan_arroyo_t » Wed Apr 27, 2011 5:11 pm

Bayron

Al fin pude compilar mi proyecto

Tenías razón con colocar la libreria wbrowse antes que las propias de fivewin

Muchas gracias a ti y a Adhemar por desprenderse de su tiempo y que han hecho posible que yo pudiera arrancar con uestudio

Saludos
Juan Arroyo
México
FWH 7.12 VERCE 5.3 xHarbour 1.1.0
juan_arroyo_t@hotmail.com
User avatar
juan_arroyo_t
 
Posts: 196
Joined: Fri May 15, 2009 1:25 am
Location: Cuautitlán, Mexico


Return to FiveWin para Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 30 guests