TabCtrl_Hittest( oFlg:hWnd ), Is working with FW 16bit?

TabCtrl_Hittest( oFlg:hWnd ), Is working with FW 16bit?

Postby dutch » Fri Sep 05, 2008 7:42 pm

Dear Antonio,

I try to use Tabctrl_hittest( ::hWnd ) in FW16bit but it show unknow function Tabctrl_hi(). Is it support 16bit? If it supports, How can I use it with more than 10 char function?

Regards,
Dutch
User avatar
dutch
 
Posts: 1535
Joined: Fri Oct 07, 2005 5:56 pm
Location: Thailand

Postby Antonio Linares » Tue Sep 09, 2008 9:00 am

Dutch,

You can't use more than 10 chars functions names with Clipper, so you have to modify the C source code so its name has 10 chars only.
regards, saludos

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

Postby dutch » Tue Sep 09, 2008 6:06 pm

Dear Antonio,

I found it in TABCTRL.C. How can I use it? I try to change the function in my program to TABCTRL_HI() but it shows error "unresolved external".

Code: Select all  Expand view
#ifdef __HARBOUR__
   CLIPPER TABCTRL_HITTEST( PARAMS ) // ( hWnd ) --> nTabItemIndex
#else
   CLIPPER TABCTRL_HI( PARAMS ) // TTEST( hWnd ) --> nTabItemIndex
#endif
{
   TC_HITTESTINFO hti;
   POINT p;
   HWND hCtrl = ( HWND ) _parnl( 1 );

   GetCursorPos( &p );
   ScreenToClient( hCtrl, &p );

   hti.pt.x  = p.x;
   hti.pt.y  = p.y;
   hti.flags = TCHT_ONITEM | TCHT_ONITEMICON | TCHT_ONITEMLABEL;

   _retnl( TabCtrl_HitTest( hCtrl, &hti ) );
}


Thanks&regards,
Dutch
User avatar
dutch
 
Posts: 1535
Joined: Fri Oct 07, 2005 5:56 pm
Location: Thailand


Return to FiveWin for CA-Clipper

Who is online

Users browsing this forum: No registered users and 6 guests