Page 1 of 1

erro xhb fwh23-10 e 23-07

Posted: Mon Sep 23, 2024 7:02 pm
by jair
¡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: Select all | Expand

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]

Re: erro xhb fwh23-10

Posted: Tue Sep 24, 2024 6:08 am
by Antonio Linares
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

Re: erro xhb fwh23-10 e 23-07

Posted: Tue Sep 24, 2024 11:07 am
by jair
Con la inclusión de este código ahora hay 2 errores más

Code: Select all | Expand

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)'.