In the script I Have
////////////////////////////////////////////////////////////////////////////
////////
function MoveFileData()
NUMBER nResult, nDisk;
begin
// CM 01 Nov 2000 - Set Destination Directory for DAO Components
szdaoLocation = "C:\Program Files\Common Files\Microsoft Shared\DAO";
ComponentSetTarget ( MEDIA , "<DAO>" , szdaoLocation );
nDisk = 1;
SetStatusWindow( 0, "" );
Disable( DIALOGCACHE );
Enable( STATUS );
StatusUpdate( ON, 100 );
nResult = ComponentMoveData( MEDIA, nDisk, 0 );
HandleMoveDataError( nResult );
Disable( STATUS );
return nResult;
end;
////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////
The result I get is that the DAO360.dll is installed in the Windows System
directory. Problem is that the compiled application uses the DAO360.dll that
is in the C:\Program Files\Common Files\Microsoft Shared\DAO directory.
Any hints on how do to install and register this file in the C:\Program
Files\Common Files\Microsoft Shared\DAO directory.
Thanx
Colin