I've supplied the 'Crviewer.dll' / 'Craxdrt.dll' to users in the past for the registration of the CRviewer for use in my Borland Delphi application that makes use of the Crystal Reports Viewer component.
It has been suggested to me that the version(s) supplied of these files is are only up to NT - are there Windows XP versions of these files available somewhere ?
Or can someone suggest what versions should / will work on Windows XP ?
The versions are :
'Crviewer.dll' : 8.0.0.371 (dated 28/01/2000 09:19)
'Craxdrt.dll' : 8.0.0.371 (dated 28/01/2000 16:16)
The batch file I make use of reads as follows :
"@ECHO OFF
REM Batch file to register 'CRaxdrt.dll' and 'CRViewer.dll'
ECHO.
ECHO Checking for Operating System
IF EXIST C:\Windows\System\RegSvr32.exe GOTO 9X
IF EXIST C:\Winnt\System32\RegSvr32.exe GOTO NT
IF EXIST c:\WINDOWS\system32\RegSvr32.exe GOTO XP
REM If we have got here then we are unable to find either.
ECHO Unable to determine Operating System. Please register the dll's maunally.
PAUSE
:9X
REM Windows 9X Operating System
ECHO About to register Dll's for Windows 9X
PAUSE
C:\Windows\System\RegSvr32 Craxdrt.dll
C:\Windows\System\RegSvr32 CRViewer.dll
GOTO END
:NT
REM Windows NT Operating System
ECHO About to register Dll's for Windows NT
PAUSE
C:\Winnt\System32\RegSvr32 Craxdrt.dll
C:\Winnt\System32\RegSvr32 CRViewer.dll
GOTO END
:XP
REM Windows XP Operating System
ECHO About to register Dll's for Windows XP
PAUSE
C:\Windows\System32\RegSvr32 Craxdrt.dll
C:\Windows\System32\RegSvr32 CRViewer.dll
GOTO END
:END
ECHO End of batch program.
PAUSE
"
This seems to work OK on previous platforms (namely Windows 95, NT, 2000, etc.)
Can anyone suggest what versions I should be using on Windows XP for a clean run at it ?
Thanks in advance
Steve
It has been suggested to me that the version(s) supplied of these files is are only up to NT - are there Windows XP versions of these files available somewhere ?
Or can someone suggest what versions should / will work on Windows XP ?
The versions are :
'Crviewer.dll' : 8.0.0.371 (dated 28/01/2000 09:19)
'Craxdrt.dll' : 8.0.0.371 (dated 28/01/2000 16:16)
The batch file I make use of reads as follows :
"@ECHO OFF
REM Batch file to register 'CRaxdrt.dll' and 'CRViewer.dll'
ECHO.
ECHO Checking for Operating System
IF EXIST C:\Windows\System\RegSvr32.exe GOTO 9X
IF EXIST C:\Winnt\System32\RegSvr32.exe GOTO NT
IF EXIST c:\WINDOWS\system32\RegSvr32.exe GOTO XP
REM If we have got here then we are unable to find either.
ECHO Unable to determine Operating System. Please register the dll's maunally.
PAUSE
:9X
REM Windows 9X Operating System
ECHO About to register Dll's for Windows 9X
PAUSE
C:\Windows\System\RegSvr32 Craxdrt.dll
C:\Windows\System\RegSvr32 CRViewer.dll
GOTO END
:NT
REM Windows NT Operating System
ECHO About to register Dll's for Windows NT
PAUSE
C:\Winnt\System32\RegSvr32 Craxdrt.dll
C:\Winnt\System32\RegSvr32 CRViewer.dll
GOTO END
:XP
REM Windows XP Operating System
ECHO About to register Dll's for Windows XP
PAUSE
C:\Windows\System32\RegSvr32 Craxdrt.dll
C:\Windows\System32\RegSvr32 CRViewer.dll
GOTO END
:END
ECHO End of batch program.
PAUSE
"
This seems to work OK on previous platforms (namely Windows 95, NT, 2000, etc.)
Can anyone suggest what versions I should be using on Windows XP for a clean run at it ?
Thanks in advance
Steve