FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Some urgent problems in FWH 11.09 and 11.10
Posts: 1467
Joined: Mon Oct 10, 2005 11:26 AM

Some urgent problems in FWH 11.09 and 11.10

Posted: Mon Nov 07, 2011 01:35 PM
Hello,

I installed FWH 11.10. After rebuilding my application, I got the next error :
Unresolved external symbol '_SendInput referenced from Fivehcm.lib (KEYBRD.OBJ)'
I also noticed the problem in FWH 11.09. The function DiskChange() doesn't seem to work anymore. If I rebuild my application in FWH 11.08, everything is working fine.

Anyone any idea about a solution for those problems ?

Thanks a lot in advance.

Regards,

Michel D.
Genk (Belgium)


_____________________________________________________________________________________________

I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773

Posts: 363
Joined: Wed Feb 15, 2006 02:06 PM

Re: Some urgent problems in FWH 11.09 and 11.10

Posted: Mon Nov 07, 2011 02:04 PM

Hi,

See here for the solution:

viewtopic.php?f=3t=22627p=121087#p121128

Best regards,

Pete

&&

Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM

Re: Some urgent problems in FWH 11.09 and 11.10

Posted: Mon Nov 07, 2011 06:23 PM
Michel,

function DiskChange() is just a wrapper to Windows API SetCurrentDirectory(). Nothing has changed there so it should work fine:

Code (fw): Select all Collapse
HB_FUNC( DISKCHANGE ) // ( cDrive ) --> lSuccess
{
   hb_retl( SetCurrentDirectory( ( char * ) hb_parc( 1 ) ) );
}
regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion