FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour erro xhb fwh23-10 e 23-07
Posts: 74
Joined: Sun Aug 27, 2017 07:18 PM
erro xhb fwh23-10 e 23-07
Posted: Mon Sep 23, 2024 07:02 PM
隆Buenas tardes!


Me gustar铆a ver aqu铆 en este foro si alguien tuviera alguna sugerencia sobre c贸mo resolver estos errores o si realmente la 煤nica soluci贸n ser铆a volver a la versi贸n xhb 1.2.2 y fwh 10-26 y descartar esta nueva versi贸n fwh 2405. !
隆Estar铆a agradecido de recibir sugerencias de colegas!


Lo peor es que en fwh versi贸n 24-07 con xharbour 1.3.1 el n煤mero de errores es mucho mayor, es decir, 隆varios errores de error!
Code (fw): Select all Collapse
biblioteca:
[code]
xHarbour 1.3.0 Intl. (SimpLex) (Build 20230826)
Copyright 1999-2023, http://www.xharbour.org http://www.harbour-project.org/

xLINK: error: Unresolved external symbol '_MonthCal_SetCurrentView referenced from FiveHCM.lib(CALENDAR.obj)'.
xLINK: error: Unresolved external symbol '_MonthCal_GetCurrentView referenced from FiveHCM.lib(CALENDAR.obj)'.
xLINK: error: Unresolved external symbol '_MonthCal_SizeRectToMin referenced from FiveHCM.lib(CALENDAR.obj)'.
x[/code]
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: erro xhb fwh23-10
Posted: Tue Sep 24, 2024 06:08 AM

A帽ade este c贸digo al final de tu PRG principal y por favor conf铆rmame si desaparece una de las referencias no encontradas:

pragma BEGINDUMP

include <windows.h>

define MCM_FIRST 0x1000

define MCM_SETCURRENTVIEW (MCM_FIRST + 32)

BOOL MonthCal_SetCurrentView( void * hmc, DWORD dwNewView )

{

return ( BOOL ) SendMessage( hmc, MCM_SETCURRENTVIEW, 0, (LPARAM) ( dwNewView ) );

}

pragma ENDDUMP

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 74
Joined: Sun Aug 27, 2017 07:18 PM
Re: erro xhb fwh23-10 e 23-07
Posted: Tue Sep 24, 2024 11:07 AM
Con la inclusi贸n de este c贸digo ahora hay 2 errores m谩s
Code (fw): Select all Collapse
xLINK: error: Unresolved external symbol '_MonthCal_GetCurrentView referenced from FiveHCM.lib(CALENDAR.obj)'.
xLINK: error: Unresolved external symbol '_MonthCal_SizeRectToMin referenced from FiveHCM.lib(CALENDAR.obj)'.

Continue the discussion