Antonio: MouseWheel funciona errático en TXBrowse FWH-908

Antonio: MouseWheel funciona errático en TXBrowse FWH-908

Postby Cgallegoa » Fri Sep 11, 2009 9: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-24.07, xHarbour 1.3.1 Build 20240624, Borland C++7.70, PellesC ***
Cgallegoa
 
Posts: 473
Joined: Sun Oct 16, 2005 3:32 am
Location: Quito - Ecuador

Re: Antonio: MouseWheel funciona errático en TXBrowse FWH-908

Postby Antonio Linares » Fri Sep 11, 2009 11:06 pm

regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41911
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Antonio: MouseWheel funciona errático en TXBrowse FWH-908

Postby Cgallegoa » Sat Sep 12, 2009 12:09 am

Antonio,

Cómo compilo Clt2Scr.c para generar el OBJ ?

Hago lo siguiente:
Code: Select all  Expand view
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: Select all  Expand view

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-24.07, xHarbour 1.3.1 Build 20240624, Borland C++7.70, PellesC ***
Cgallegoa
 
Posts: 473
Joined: Sun Oct 16, 2005 3:32 am
Location: Quito - Ecuador

Re: Antonio: MouseWheel funciona errático en TXBrowse FWH-908

Postby Cgallegoa » 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-24.07, xHarbour 1.3.1 Build 20240624, Borland C++7.70, PellesC ***
Cgallegoa
 
Posts: 473
Joined: Sun Oct 16, 2005 3:32 am
Location: Quito - Ecuador

Re: Antonio: MouseWheel funciona errático en TXBrowse FWH-908

Postby Daniel Garcia-Gil » Sat Sep 12, 2009 1:12 am

Saludos Carlos.

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

Code: Select all  Expand view
#ifdef __XHARBOUR__
long hb_parvnl( int iParam, int iIndex );
void hb_storvl( BOOL bValue, int iParam, int iIndex );
#endif
 
User avatar
Daniel Garcia-Gil
 
Posts: 2365
Joined: Wed Nov 02, 2005 11:46 pm
Location: Isla de Margarita

Re: Antonio: MouseWheel funciona errático en TXBrowse FWH-908

Postby Cgallegoa » Sat Sep 12, 2009 2:30 pm

Daniel,

Funcionó perfecto. Muchas gracias. :D

Saludos,

Carlos Gallego
Saludos,

Carlos Gallego

*** FWH-24.07, xHarbour 1.3.1 Build 20240624, Borland C++7.70, PellesC ***
Cgallegoa
 
Posts: 473
Joined: Sun Oct 16, 2005 3:32 am
Location: Quito - Ecuador


Return to FiveWin para Harbour/xHarbour

Who is online

Users browsing this forum: Google [Bot] and 51 guests