FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin para Harbour/xHarbour Antonio: MouseWheel funciona errĂ¡tico en TXBrowse FWH-908
Posts: 514
Joined: Sun Oct 16, 2005 03:32 AM
Antonio: MouseWheel funciona errĂ¡tico en TXBrowse FWH-908
Posted: Fri Sep 11, 2009 09:17 PM

Antonio,

Definitivamente MouseWheel funciona errĂ¡tico en la clase TXBrowse FWH-908. En algunos casos sĂ­, en otros nĂ³. :(

Creo que es algo que se cruza con la nueva funcionalidad "Kinetic". :?

Hay como desactivarla, o corregir lo del MouseWheel ? :cry:

Probado en XP S3
FWH-908, xHarbour 1.2.1, Borland C++5.51

Gracias por tu ayuda y saludos,

Carlos Gallego

Saludos,



Carlos Gallego



*** FWH-25.12, xHarbour 1.3.1 Build 20241008, Borland C++7.70, PellesC, ADS 11.1***

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Antonio: MouseWheel funciona errĂ¡tico en TXBrowse FWH-908
Posted: Fri Sep 11, 2009 11:06 PM
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 514
Joined: Sun Oct 16, 2005 03:32 AM
Re: Antonio: MouseWheel funciona errĂ¡tico en TXBrowse FWH-908
Posted: Sat Sep 12, 2009 12:09 AM
Antonio,

CĂ³mo compilo Clt2Scr.c para generar el OBJ ?

Hago lo siguiente:
Code (fw): Select all Collapse
c:\Xharbour-908\bin\harbour ctl2scr /n  /ic:\Fwh-908\include;c:\Xharbour-908\include > comp.log
c:\borland\bin\bcc32 -D__HARBOUR__;HB_API_MACROS -O2 -c -Ic:\Xharbour-908\include;c:\fwh-908\include ctl2scr.c >> comp.log

Pero me genera este error y no compila:
Code (fw): Select all Collapse
Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
clt2scr.c:
Warning W8065 clt2scr.c 29: Call to function 'hb_parvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 30: Call to function 'hb_parvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 35: Call to function 'hb_storvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 36: Call to function 'hb_storvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 37: Call to function 'hb_storvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 38: Call to function 'hb_storvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Error E2238 clt2scr.c 45: Multiple declaration for 'HB_FUN_SCREENTOCLIENT'
Error E2344 clt2scr.c 24: Earlier declaration of 'HB_FUN_SCREENTOCLIENT'
Warning W8065 clt2scr.c 49: Call to function 'hb_parvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 50: Call to function 'hb_parvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 55: Call to function 'hb_storvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 56: Call to function 'hb_storvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
*** 2 errors in Compile ***

Qué estoy haciendo mal ?

Gracias por tu ayuda.

Saludos,

Carlos Gallego

Saludos,



Carlos Gallego



*** FWH-25.12, xHarbour 1.3.1 Build 20241008, Borland C++7.70, PellesC, ADS 11.1***

Posts: 514
Joined: Sun Oct 16, 2005 03:32 AM
Re: Antonio: MouseWheel funciona errĂ¡tico en TXBrowse FWH-908
Posted: Sat Sep 12, 2009 12:31 AM
Ya pude compilar "clt2scr.c" pero ahora obtengo estos warnings:


Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
clt2scr.c:
Warning W8065 clt2scr.c 30: Call to function 'hb_parvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 31: Call to function 'hb_parvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 36: Call to function 'hb_storvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 37: Call to function 'hb_storvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 38: Call to function 'hb_storvnl' with no prototype in function HB_FUN_SCREENTOCLIENT
Warning W8065 clt2scr.c 39: Call to function 'hb_storvnl' with no prototype in function HB_FUN_SCREENTOCLIENT


Me preocupo por estos warnings o no les paro bolas ?

Gracias y saludos,

Carlos Gallego

Saludos,



Carlos Gallego



*** FWH-25.12, xHarbour 1.3.1 Build 20241008, Borland C++7.70, PellesC, ADS 11.1***

Posts: 2365
Joined: Wed Nov 02, 2005 11:46 PM
Re: Antonio: MouseWheel funciona errĂ¡tico en TXBrowse FWH-908
Posted: Sat Sep 12, 2009 01:12 AM
Saludos Carlos.

no lo he probado pero intenta añadiendo esto al principio

Code (fw): Select all Collapse
#ifdef __XHARBOUR__
long hb_parvnl( int iParam, int iIndex );
void hb_storvl( BOOL bValue, int iParam, int iIndex );
#endif
Posts: 514
Joined: Sun Oct 16, 2005 03:32 AM
Re: Antonio: MouseWheel funciona errĂ¡tico en TXBrowse FWH-908
Posted: Sat Sep 12, 2009 02:30 PM

Daniel,

FuncionĂ³ perfecto. Muchas gracias. :D

Saludos,

Carlos Gallego

Saludos,



Carlos Gallego



*** FWH-25.12, xHarbour 1.3.1 Build 20241008, Borland C++7.70, PellesC, ADS 11.1***

Continue the discussion