Internal flash doesn't open and gives ERR5

My 60D camera flash is not opening , it gives err5 message.
This problem started after I attached the external flash.
How to correct this  problem

Error 5 means that the flash is obstructed. It probably thinks the flash is still on.  Try putting it on and taking it off a few times.  If that doesn't work I (caveat emptor) would grab a small flathead jewlers screwdriver and wiggle those little rails underneath the main rails a few times.  There's a little button underneath it that senses when a flash is on-camera, and it's probably just stuck down. 
If that doesn't fix it, or the probablem keeps returning I (again, at your own risk) would pop that little plate off the top and give it a good clean with some compressed air and anything else that I see fit.
This is what I would do, but I've been pulling apart mechanical equipment since I knew what screwdriver was.  I'm also willing to take the risk.  If you're not mechanically inclined I'd skip the second half.  Canon would recommend you send it in regardless.

Similar Messages

  • Since I installed FF4 each time I start up internet FF doesn't open and gives the report that it cannot find the proxyserver.

    Already I have changed the settings to no proxy, but it doesn't work. Each time I want to open internet again I get the same report and I have to change the setting to no proxy again! Also I noticed that FF has changed the proxy adjustment himself to 'manual proxy configuration' where it has introduced HTTP-proxy 127.0.0.1 and port 63030 himself! How can I change this for good?! So that I don't have to change the setting each time I want to open internet.

    Thank you for this information. I am going to get rid of my  i Phone5c because of this policy of Apple!  Maybe they need sued to stop this policy!

  • HELP!!  ipod updater doesn't open and give me serevice error

    My daughter and me both have new ipods nano that only worked the first day. The second time I tried to update with new songs from itunes my i pod lost all songs. I've tried EVERYTHING ! reset, restart, reinstall, updates, disk management on windows, both on my computer and someone else computer and nothing works. Ipod is missing on windows, on itunes and updater gives me service error. I previously had an ipod shuffle that had the same problem and I discarted thinking it was broken. Now I have 3 useless ipod!!!! HELP!!

    You can get help by calling 1-888 MY APPLE or 1-800 MY APPLE I talk to them yesterday for about 2 hours and we tried everything, nothing seemed to work still have the same problem!
    I think it has to do with an error I get when I run itunes regarding Active X control. ?????
    Try to remove all... itunes, ipod, quick time and re-install everything with the antivirus and firewalls disabled.
    Hope it helps

  • Help my safari doesnt open and gives me a crash report

    help my safari doesn't open and gives me a crash report ever since i downloaded a file from the internet. I have a macbook air (early 2014) with running os x yosemite version 10.10.1

    There is no need to download anything to solve this problem.
    You may have installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • Whenever I try to open Microsoft Word it doesn't open and shows me an error report!

    Whenever I try to open Microsoft Word it doesn't open and shows me an error report! I don't know what to do! Help!!!!
    This is the extra info that comes along with the error report:
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2013-08-30 16:41:14 -0400
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.1.0.110310
    Crashed Module Name: MBURibbon
    Crashed Module Version: 14.3.4.130416
    Crashed Module Offset: 0x000072f0
    Blame Module Name: MBURibbon
    Blame Module Version: 14.3.4.130416
    Blame Module Offset: 0x000072f0
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0
    What should I do??????

    It might be a good idea to also ask here:
    Office for Mac forums

  • My itunes will not open and gives me an error message

    My itunes will not open and give me an error message of 126... PLEASE HELP

    Hello, sarahehines. 
    Thank you for visiting Apple Support Communities.
    Here are the steps I would recommend going through as they should resolve the issue.
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    Jason H.

  • Lightroom 5 will not open and gives me a message saying it encountered an error reading from its preview cache. [was: Lightroom 5 question]

    @Lightroom 5 will not open and gives me a message saying it encountered an error reading from its preview cache.

    This is the Photoshop forum however.
    Close Lightroom and go to your Lightroom catalog folder.
    The default location is usually in Pictures.
    Delete the file in the catalog folder which ends Previews.lrdata
    Do not touch the catalog itself which ends.lrcat
    Then try re-launching Lightroom.

  • After doing a suggested update of itunes on my pc it will not open and gives me a msg saying msvcr80.dll is not on my computer and windows error 126 has occured

    After doing an update of itunes on my pc Itunes will no longer open and gives me a msg about MSVCR80.dll not on my computer and Itunes was installed incorrectly error 7 (windows error 126)

    This happened to me today as well post installing the latest version of itunes.   I did a search on google for the error and came across a recommendation to :
    Note: Start Windows in Safe Mode to complete any of the following steps if you're unable to access Windows normally due to the msvcr80.dll error.
    If, and only if, you're receiving the msvcr80.dll is missing error when you open Apple iTunes, do the following: (skip this step if your msvcr80.dll error is occurring with a different program)
    Uninstall from Windows the following five programs in this order: iTunes, Apple Software Update, Apple Mobile Device Support, Bonjour, and finally Apple Application Support. If you have iCloud, remove it as well.
    Uninstalling these programs in Windows is done from an applet in Control Panel called Programs & Features (in Windows 8, 7, or Vista) or Add or Remove Programs (in Windows XP).
    Note: Songs and playlists in iTunes will not be removed when you uninstall the iTunes program or any of the other, already-mentioned Apple programs. If you'd still like to back them up, they're usually located in the My Music folder in Windows.
    Download the latest version of iTunes from Appleand note the location you're saving it to so you can find it once it's done.
    Run the iTunes installation as an administrator. If you're not sure how to do that, see How Do I Open an Elevated Command Prompt? for help. That procedure shows you how to open the Command Prompt program as an administrator, but the steps are essentially the same for anything, including the iTunes installation package you just downloaded.
    A general overview of removing and reinstalling iTunes can also be found here on Apple's site but the above procedure seems to work better in this particular situation.

  • After Installing Logic Pro X, my Logic Pro 9's 32-bit AUs don't work. The 32-bit bridge doesn't open and run either in my Logic pro 9. My 32-bit AU plugins are crossed out. Help?

    After Installing Logic Pro X, my Logic Pro 9's 32-bit AUs don't work. The 32-bit bridge doesn't open and run either in my Logic pro 9. My 32-bit AU plugins are crossed out. Help?

    michaelvee wrote:
    As an overworked professional, I simply have to consider the very viable options out there. Never thought I'd be seriously considering a Cubase product.
    It's a Steinberg product, not a Cubase product.. in case you haven't been paying attention Steinberg developed the virtual instrument for use in it's programs way back in Cubase 3.55.. the plethora of virtual instruments and the advent of low-latency drivers can be directly traced to Steinberg/Cubase development.. Logic also borrowed Cubase's arrange page format back in the 1980's. Cubase has borrowed from Logic to be sure but Steinberg has long been an innovator for many of the things we take for granted today. It was Logic/Emagic who licensed the VST technology and ASIO low latency format to use in Logic 4.xx. It was Apple who adapted VST to it's own AU format. Also, Cubase and Nuendo have undergone a lot more innovation over the past three years, Yamaha has been good as a parent company. Cubase is not Nuendo's little brother by the way, they are very close, same exact audio engine, same robustness, they can exchange files, the only difference being Cubase doesn't have some of the high end post features that Nuendo has. I use both Cubase and Logic and occasionally Nuendo at the University here.. I know both programs fairly well, believe me, both Cubase 6 and 7 can hold their own with any DAW out there, they just don't come with a bunch of ready made loops and preset instruments.
    LogicX will never be able to use 32-bit instruments without a third party solution, nor will it ever include the Bridge. At least according to the people I know.

  • I have macbook pro 13.3 inch. I am installing window 7 in boot camp manager after copying file of window upto 67% it doesn't response and i had forcely shotdown my macbook. Now my macbook doesn't open and stop in black screen with cursor blinking.

    i have macbook pro 13.3 inch. I am installing window 7 in boot camp manager after copying file of window upto 67% it doesn't response and i had forcely shotdown my macbook. Now my macbook doesn't open and stop in black screen with cursor blinking. Now how could i open my macbook pro.

    At startup hold down the Option/Alt key and from the screen that comes up select your OS X partition to start the computer from. Then use the Boot Camp Assistant app to Remove Windows and the partition you reated for it and it will Automatically place the space you allocated for the Windows install back into the OS X partition.
    NOTE:
    Do NOT use Disk Utility to erase the partition that was created for the Windows install. Use the Boot Camp Assistant app again to do that.

  • Adobe flash doesn't open some videos.  It did work prior to software update.  It has to do with settings - but what?          Has to do with setting.  Set to what?

    Adobe Flash doesn't open some videos.  It did work prior to software update.  It has to do with settings - but I don't know which or what?      

    Start here.
    http://kb2.adobe.com/cps/865/cpsid_86551.html#ostype=m,

  • My safari dont open and give a libroos error how to solve thanks

    My safari dont open and give a error message  "libroosksbas.dylib plug-in."
    what to do to solve
    thanks

    That is Rapport  bank security software.
    Uninstall Trusteer software
    http://www.trusteer.com/support/uninstalling-rapport-mac-os-x

  • Flash doesn't work and work with another browser!!

    ''locking as a duplicate of - https://support.mozilla.com/en-US/questions/900202''
    Flash doesn't work and work with another browser!!.
    The message is " An error occurred, please try again later" just with youtube. Other sites work. Another browser works with youtube!!

    Whay do you mean "difficult with the camer?"
    Two things that might help. Reset all your settings and reset the phone.  Use the Settings app to reset all settings. Settings > General > Reset > Reset All Settings  Then reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that helps.

  • When opening a second window, homepage doesn't open and can't access any other site, stays a blank white screen.

    After updating to Firefox 6, every time I open a second window, all I get is a blank, white page. My homepage doesn't open, either, even when I hit the home button. I have to manually type in my homepage address, and then, it's the only address that will show in the address bar, even after I leave the page or open any other tabs. The same thing happens when I open new tabs in the second window. Also, the back and forward arrows, stop, and refresh buttons do not work in the second window. None of the short-cut keys on the keyboard will work with in the second window, either. Most of the time, any page that I go to, in the second window, continues to load, never fully loading.
    I even went back to Firefox 5 to see if that would solve the problem, but it didn't. I still have the same issues.
    Everything appears to be working fine in the first window.
    How can I clear all this up?
    EDIT: I waited a few days and reinstalled Firefox 6.0 and everything seems to be working okay.

    There's a good chance this is related to a bug that kicks in when you do not have Flash running in any tab and you open a new window to a page that does use Flash. The details are in this recent thread: [https://support.mozilla.org/en-US/questions/955659 Opening New Windows and Shockwave Flash].
    I don't know whether opening a Flash site in a private window makes this problem occur more frequently. Maybe it does because the new window is more isolated from the previous one???

Maybe you are looking for

  • Watching iTunes movie on iPhone.

    I have several movies (mp4) in my iTunes library on my iMac.  Can I select and watch them on my iPhone5 over my home network?

  • Bind Dynamic Table To a Context Node

    Hello, I created an internal dynamic Table. I want to show this table in an ALV-Table. So I want to bind it to a context node. I create the context node attributes by this: lr_node_info ?= lo_nd_template_exp->get_node_info( ). *Type of table type and

  • Obiee Answers XML request

    Anyone can tell me where i can get documentation about the XML on the requests of obiee answers?

  • Form path problum in menu

    hi every body i am using form 6i i have on folder with name (abccompany) and in this folder i have further two folders one is (forms) and second one is (reports) in form folder i place all my forms and menu mudules and in reports folder i place all r

  • How to get correct hour in J2ME?

    Hi everybody, Does anybody can help me with this problem: I need to get date and time in String format in J2ME, I checked it in KToolBar. I do like this:      private Calendar rightNow = Calendar.getInstance();      String sDate = "Time is " + String