Kodak imaging doesn't work on Windows 7 using compatibility mode

Hi,
I want to run Kodak imaging on windows 7, I have register the OCX files correctly  but when click on kodakimg.exe nothing happening.
i try to change the compatibility mode to windows 7 but nothing happen too.
Please help me.
Regards

Hi,
The Kodak Imaging for Windows program and the related controls are not included with Microsoft Windows XP and higher.
Imaging for Windows XP Professional Edition and higher is now provided by Global 360.
For more information. Please see:
Kodak imaging for Windows is not included with Windows XP
http://support.microsoft.com/kb/308979
If you are using Windows 7 Professional, Windows 7 Ultimate and Windows 7 Enterprise, you may have a try to run this software in Windows XP Mode.
More information about Windows XP Mode, please see:
Windows XP Mode
http://windows.microsoft.com/en-us/windows7/products/features/windows-xp-mode
Hope this helps,
Ada Liu

Similar Messages

  • Keyboard doesn't work in windows using bootcamp

    Hi exerybody!
    I'm running Win XP SP2 on my iMac, using Bootcamp. I have just recently installed 10.4.11 and some Security updates. Beside this, I've installed the new apple alu keyboard, using AppleKeyboardSoftware (Apple download page). The windows installation has not been changed for about 2 mounths now.
    MAC OS just works perfectly well.
    The problem occurs after I have selected the windows partition for booting. At first everything seems to be normal, but when windows shows the login screen nothing works anymore. Neither the keyboard, nor the mouse shows any reaction. I have tried several other keyboards and mice but just the same result. Interestingly yesterday everything just worked normally.
    I really hope somebody can help me with this problem!
    Thanks in advance!!

    The Boot Camp discussions would be a better place to post your question:
    http://discussions.apple.com/category.jspa?categoryID=237

  • AddOn Image doesn't work on Windows 7

    Hello NG
    I installed Window 7 Multilanguage. I extracted the unattend.xml file as
    Additional Image file.
    Then I created a NWClient.zcm Add-on Image, with all the needet
    configurations...
    I restored the Win7 Image, then I restored the NWclient.zcm and at last the
    sysprep.zmg. Then i restarted the workstation. The NWCLient weren't
    installed but sysprep was running.
    So i suppose that there is a problem in the nwclient.zcm package. Does
    someboda have an idea how i can solve this?
    Thanks in advance for your help
    Ramon

    I did create an Add-on Image manually.....
    "adrockk" schrieb im Newsbeitrag
    news:[email protected]..
    Ramon Lustrati;2072043 Wrote:
    >
    > Then I created a NWClient.zcm Add-on Image, with all the needet
    > configurations...
    Did you create an add-on from a bundle, or manually?
    adrockk
    adrockk's Profile: http://forums.novell.com/member.php?userid=1638
    View this thread: http://forums.novell.com/showthread.php?t=431679

  • TS3704 How are you supposed to fix "The feature you are trying to use is on a network resource that is unavailable" alert appears when you remove Apple software in Windows if it doesn't work on Windows 8 or 8.1???

    How are you supposed to fix "The feature you are trying to use is on a network resource that is unavailable" alert appears when you remove Apple software in Windows if it doesn't work on Windows 8 or 8.1???

    See Troubleshooting issues with iTunes for Windows updates. You may have to uninstall what you can, reboot and delete the named folders, then reinstall.
    tt2

  • My i pod nano first generation doesn't work with windows 8

    My i pod nano first generation doesn't work with windows 8

    Howdy yvesmd,
    Thanks for using the Apple Support Communities.
    If your iPod nano is not being recognized in iTunes on your Windows computer, then I'd like you to please follow the directions in the link below.
    Apple - Support - iPod - iPod nano Troubleshooting
    Cheers,
    Alex H.

  • "Email me" doesn't work in Windows

    Has anyone found that the "Email me" button doesn't work on Windows machines? I have just been told by one or two visitors to my website (www.aroundthebusch.com) who use Windows that the buttons didn't work.

    It may be a Flash Security issue... upload SWF to server, open it to browser from there and try your links again...
    Here´s one SWF exported from indesign (links to email at page 3):
    http://www.edocker.com/_demo/edocker-online-demo/index.html

  • AT-AO-10 doesn´t work with Windows 2000

    I have an AT-AO-10 board that doesn’t work with Windows 2000. I have reserved two IRQs for legacy devices (non plug and play) in BIOS. The AT-AO-10 has got assigned these IRQs, a DMA and a base address that are free, and there aren’t any hardware conflicts, but the board doesn't pass the MAX's text.
    In Windows 'Information System', the board is shown in 'Forced hardware', but I don’t know that is a problem.
    If the board is unplugged, error messages are the same.

    Hello;
    You didn't mention what version of the NI-DAQ driver you are using over there. Anyway, my suggestion to you is to uninstall the NI-DAQ driver you have installed, remove the board, reboot the machine, download and install the latest NI-DAQ version (6.9.3) from NI web site.
    Try the installation with the new driver, and if that is still not working, the best bet is to try the same installation on a different machine to double check if the hardware is not defective.
    Regards
    Filipe A.
    Applications Engineer
    National Instruments

  • Application Restart and Recovery APIs doesn't work for windows services

    I am using the Application Restart and Recovery mechanism (provided in Windows API Code Pack for Microsoft.NET Framework) to collect some information (i.e. stack information when there's an unhandledexception)  before my windows service crash down.
    It works well for windows form applications, but the callback method wouldn't be called if the host is a windows service. 
    I have checked the article: https://msdn.microsoft.com/zh-cn/subscriptions/downloads/cc303708
    But it doesn't specify clearly whether it works for a windows service. It seems that the recovery will only be activated when the user interacts with the error dialog of Windows Error Reporting (clicking "close" on the dialog, for example).
    So I am wondering is my guess right that the Application Restart and Recovery mechanism doesn't work for windows services. Or is there a better way to meet my requirement? 

    I would suggest trying ARR if that's what you want to use.  The restart portion won't work, but it doesn't need to as if you fail out of your service, the Windows service controller will handle recovery (up to and including restarting your service).
     You configure those recovery actions either through code or one of the built in administrative tools for services such as services.msc.  
    DebugDiag/ADplus and similar tools ultimately do use built-in APIs; you don't need to add anything external to collect debugging information.  You do however have to write a good deal of code to do somethings.  It's pretty simple to use the unmanaged
    function that I pointed out before and
    MiniDumpWriteDump to write a minidump when you hit an unexpected error(the dbghelp.dll that comes installed with Windows has it so you don't need anything additional installed).  You can even write a basic debugger that literally debugs a process using
    only kernel32 functions (see
    https://msdn.microsoft.com/en-us/library/windows/desktop/ms679301(v=vs.85).aspx if you're interested).  
    WinSDK Support Team Blog: http://blogs.msdn.com/b/winsdk/

  • My touchpad doesn't work on windows system after I upgrade the OS from window 8.0 to 8.1, can someone help me how to settle it, thanks,

    My touchpad doesn't work on windows system after I upgrade the OS from window 8.0 to 8.1, can someone help me how to settle it, thanks,

    Hi candy, glad that you found that Shockwave Flash Object, it works with the Flash files and is very important
    The NPSWF files that you said are not there, those are for the Firefox browser or Chrome or some other browser. If you use Firefox and want the Flash Player for that, then close all of your browsers so you are only looking at your Desktop.
    Click on this Flash Player Installer for Firefox and SAVE it to your Desktop. Then RUN it from your Desktop, and after it is finished Installing, Restart your computer.
    Then Using Firefox go to the plug-ins and find a SWF vs 10.0.45.2 and make sure it is Enabled. This is just like the Shockwave Flash Object for Internet Explorer, but it is the one that works with Firefox.
    Let me know if that is what you wanted to do. If you don't use Firefox, but Chrome or another browser, then this will work for that one also.
    If you don't use another browser, then don't do any of this. I just thot maybe you did and that is why you were concerned that the NPSWF files were not there.
    Thanks,
    eidnolb

  • Satellite A210 (PSAEG) - Microphone doesn't work on Windows 7 64bit

    Hello, the micro doesn't work under windows 7 64 bit, the driver I'm using is Windows Vsta 64 bit. The volume is set up maximun and so is the amplification but no way to make it work with skype or toshiba camera assistant software.
    Can anyone help me?
    thank you

    Hi Largo09,
    Usually you have to install the webcam and sound driver to get the microphone working. The microphone is a part of webcam
    As you wrote, Satellite A210 is not Windows 7 64bit supported so the only option you have are Vista 64bit drivers
    In my opinion you should check if Microphone is enabled in Windows sound settings. There you can also enable Microphone boost, that can increase the microphone volume.

  • Tap-to-Click doesn't work on Windows 8

    Hi all. I'm using bootcamp for two weeks, and Trackpad's tap-to-click feature doesn't work on Windows 8 x64. Can you help me please? Thanks a lot.

    Aah, thanks a lot. That's so easy.

  • HT1589 This doesn't work in Windows 8. Anybody know how to get this dialog box in Windows 8?

    This doesn't work in Windows 8. Anybody know how to get this dialog box in Windows 8?

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • My apple magic mouse doesn't work in windows 7 after installing maverick os x

    My apple magic mouse doesn't work in windows 7 after installing the maverick operating system on my mackbook pro.  How do I fix this problem?

    Hi bsruff,
    If you are having issues with your Magic Mouse in Windows 7 via Boot Camp after upgrading to Mavericks, you may find the following article helpful:
    Apple Support: Resolving issues with Windows when using Apple Magic Mouse or Apple Wireless Keyboard
    http://support.apple.com/kb/TS3092
    Regards,
    - Brenden

  • Rich Textbox example doesn't work in Windows 7

    In the past I use the Rich Textbox example (\samples\userint\activex\richTextxbox.prj) in Windows XP (CVI 2010 SP1).
    Now I noticed that this example doesn't work in Windows 7 64-bit because the ActiveX is not registered on the system (see attached error.jpg).
    Isn't this control installed by CVI IDE itself?
    How can I get this example working on my Win 7 64-bit machine?
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded
    Solved!
    Go to Solution.
    Attachments:
    error.JPG ‏29 KB

    Hi Vix
    It looks like the Rich Textbox control component provided by one of the VB runtimes is no longer included by default with Windows 7.
    I have been able to manually register the ActiveX control using Regsvr32 as described in the following Microsoft KB.
    I was able to download the needed ActiveX control from here and from there you need to copy the .ocx ActiveX control to your C:\Windows\SysWOW64 directory. Open up a command prompt as administrator and run 'REGSVR32 RICHTX32.OCX'.
    SysWOW64 is the 'Windows On Windows' emulation directory which is used for running 32 bit controls in a 64 bit environment.
    I realise this isn't the best solution as it will make application deployment a little more complicated, another solution may be to use another RTF ActiveX control such as the one here: http://www.lebans.com/richtext.htm.
    Thanks
    Chris | Applications Engineer NIUK

  • Backlight doesn`t work on Windows Seven~ Please help!!

    I have Macbook Pro Z0G5 model
    My backlight doesn`t work on Windows Seven!
    Does anyone know how to turn it on??

    It is working properly now. it was a problem with classpath
    settings. Ensured that the classpath is according to what is
    there in the install docs + sp11 readme. It is all fine.
    Regards,
    Bala
    "Suresh" <[email protected]> wrote in message news:<3cc54106$[email protected]>...
    Make sure that u have the latest service pack jar file ( for example weblogic510sp11.jar
    for service pack 11 - use service pack 8 or later for better NTREALM configuration
    ) ahead of the weblogicaux.jar in your classpath. This should solve the problem.
    Suresh.
    "YP Wang" <[email protected]> wrote:
    OS: Windows 2000
    WLS: 5.1 with sp 7
    I run java weblogic.security.ntrealm.NTRealm username password and I got
    exception
    like:
    ----->NTDelegate.useAltDomain is NULL!
    Exception in thread "main" java.lang.NoSuchFieldError: useAltDomain
    at weblogic.security.ntrealm.NTDelegate.initFields(Native Method)
    at weblogic.security.ntrealm.NTDelegate.loadlib(NTDelegate.java:132)
    at weblogic.security.ntrealm.NTDelegate.<init>(NTDelegate.java:56)
    at weblogic.security.ntrealm.NTRealm.<init>(NTRealm.java:39)
    at weblogic.security.ntrealm.NTRealm.main(NTRealm.java, Compiled
    Code)
    Does any one know what's wrong with it? Thanks.
    YP

Maybe you are looking for

  • [SOLVED] Pulse Audio / ALSA audio sharing.

    SOLUTION AT POST # 4 My computer has integrated audio and HDMI.  From my understanding, to be able to switch between these two types of audio hardware I require a sound server.  If this is not correct, please let me know so that I can uninstall Pulse

  • Can I use Mavericks on an external drive?

    I need to keep 10.6.8 on my iMac to use AppleWorks, but I'd like some of the features of Mavericks denied me such as compatibility with OS7 on my iPad. Is it feasible to clone my hard disk to an external drive and upgrade that to Mavericks and switch

  • Switching Subscription from PC to Mac

    I'm a student looking to sign up for Adobe Creative Cloud/Photography. I currently have a PC, and would be installing the software on this computer. I may upgrade my computer choice to a Mac within the next year. Would I be able to maintain my subscr

  • How to Digital Signature Payload not SOAP header

    Hi Gurus, How to Digital Signature Payload not SOAP header. Thanks, imommam

  • Sharing a calendar of a shared mailbox

    Hello We have a group of people that need a common calendar so that sounds simple enough, right?  I created a shared mailbox and set the permissions on the calendar for everyone that requires access to Owner.  I thought that would be it but nobody ca