Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Kodak Controls not working Win2k Pro

Status
Not open for further replies.

pdddms

Programmer
Jul 3, 2004
29
0
0
US
I have the Kodak Controls on my Win2k machine, however when i try and add the components in VB6 or by clicking the toolbox, i get an error loading, cannot find file. I cannot even manually install or uninstall the components. Has anyone come across this issue and how is it solved. My win2k is up on patches and i have the SP5 for VB6.
-stew

LoL Concepts®
 
Use this batch with your original Windows 2K Installation CD

--- batch start here ----------

rem Install Imaging for Windows from Windows 2000 CD
rem change d: on the next line to your CD drive letter
d:
rem change to the compressed-file archive folder
cd \i386
rem expand all compressed Imaging for Windows files to the system32 folder
expand kodakimg.ex_ %windir%\kodakimg.exe
expand kodakprv.ex_ %windir%\kodakprv.exe
expand imgcmn.dl_ %windir%\system32\imgcmn.dll
expand imgshl.dl_ %windir%\system32\imgshl.dll
expand jpeg1x32.dl_ %windir%\system32\jpeg1x32.dll
expand jpeg2x32.dl_ %windir%\system32\jpeg2x32.dll
expand oieng400.dl_ %windir%\system32\oieng400.dll
expand oiprt400.dl_ %windir%\system32\oiprt400.dll
expand oiui400.dl_ %windir%\system32\oiui400.dll
expand oissq400.dl_ %windir%\system32\oissq400.dll
expand oitwa400.dl_ %windir%\system32\oitwa400.dll
expand oislb400.dl_ %windir%\system32\oislb400.dll
expand xiffr3_0.dl_ %windir%\system32\xiffr3_0.dll
expand tifflt.dl_ %windir%\system32\tifflt.dll
expand imgadmin.oc_ %windir%\system32\imgadmin.ocx
expand imgedit.oc_ %windir%\system32\imgedit.ocx
expand imgthumb.oc_ %windir%\system32\imgthumb.ocx
expand imgscan.oc_ %windir%\system32\imgscan.ocx
expand wangimg.ex_ %windir%\system32\dllcache\wangimg.exe
expand imgview.ch_ %windir%\Help\imgview.chm
expand imgtasks.ch_ %windir%\Help\imgtasks.chm
expand imgmgt.ch_ %windir%\Help\imgmgt.chm
expand imgmgt.hl_ %windir%\Help\imgmgt.hlp
expand imghelp.hl_ %windir%\Help\imghelp.hlp
rem register the OCX's
%windir%\system32\regsvr32.exe %windir%\system32\imgadmin.ocx /s
%windir%\system32\regsvr32.exe %windir%\system32\imgedit.ocx /s
%windir%\system32\regsvr32.exe %windir%\system32\imgscan.ocx /s
%windir%\system32\regsvr32.exe %windir%\system32\imgthumb.ocx /s

-------------- batch ends here ----------

remember to rename the file with .bat extension to execute
 
I had this happen to me when we upgraded to WindowsXP. I learned that the Kodak image control was once a part of the Windows operating system and Windows decided not to include it with the Win2000 kernel and instead include their own imaging control.

We ended up doing something similar to what Swartzblitz has prescribed to force the ocx into the kernel. Each subsequent pc build contained this modification.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top