Problem of lens date code

Hi all! I hope someone could help me in the determination of the date of that my kit lens was manufactured. I "googled" all morning & searched these forums & others, without success. I bought my kit of 6 d 24-105 mm Canon last March 2014 & saved the boxes and all the paperwork, but see only a serial number of 8 digits on the lens & paperwork. The white box, it came in had the same numbers but this > (21) at the front of it. It makes me crazy! Am I missing something?

It took some time for Canon to 'understand', but some photographers obsess how old or new is a lens. Some will measure where they won't buy a used is more than a couple of years. Thus, they abolished put on their lenses date codes maybe 2 years ago or not.

Unless it has access to internal files canons that show serial number for each lens ranges as well as the dates they are made, there is no way to determine when a "new" lens was manufactured.

And, for what it's worth, when I got to the EF-S-objectives, I remember seeing a code on any of them. Only Ls had codes of date as far as I know. My EF 85 F1, 8 2 years ago have a date code, either.

And I don't like not my 80-200 f2.8L "magic drain" had been built in 93 rather 94 or when? Not a bit! It produces great images for a fraction of what a new 70-200 f2.8L brand I would have cost 3 years ago...

Tags: Canon Camera

Similar Questions

  • What is the problem with my http code?

    I have a problem with the following code on the Bold 9700.  The code works on the Simulator and other devices, but some users have problems.  It seems that nothing is returned when getting the html page.

        static String get_page(String url)
        {
    
            StreamConnection s = null;
            InputStream input = null;
    
            try
            {
    
                s = (StreamConnection)Connector.open(url);
    
                input = s.openInputStream();
                byte[] data = new byte[4096];
                int len;
                StringBuffer raw = new StringBuffer();
                long startTime = System.currentTimeMillis();
    
                while ( -1 != (len = input.read(data)) )
                {
    
                    if (len > 0) {
                        raw.append(new String(data, 0, len));
                    }
    
                    // check for timeout waiting for server; or
                    // what if page never closes...
                    if (System.currentTimeMillis() - startTime >  30000)
                    {
                        s.close();
                        return("ERR2");
                    }
                }
                s.close();
    
                return(raw.toString());
            }
            catch (Exception e)
            {
                return("ERR3");
            }
    
            finally
            {
                try
                {
                    if (input != null)
                        input.close();
                }
                catch (Exception e)
                {
                }
            }
        }
    

    Y does it have that none of the Options application settings must be defined? for example: TCP/IP

    The Thread I pointed you to and the various "required reading" material, describes how the different network paths are selected by changing the suffix of the URL used connection.  The standard demo does not add a suffix, by default, choose BES connection, so will be.  Unless of course, the carrier has provided a different default value for a feature not BIS, for example, I understand that Vodafone UK will send it via WAP.

    According to the treatment of suffix / default connection, the request will be routed through a number of "gateways" like BES/MDS or the carrier's WAP gateway.  If any of them could give the 500.

    Assuming that it makes actually to your server (I assume this is a URL that you control), then the 500 from the treatment of your Web.  For example, this could be because your processing wait some headers in the http request which are not provided.  Or, that demand has been sent by a gateway changing the headers in a way that is not pregnant with your web server.

    With same URL work on the browser is unfortunately not much of a test as it can be routed through a method of communication that you do not use (for example, on Vodafone BIS devices I think the default browser will use BIS - B) and, in addition, it could provide some headers for the http connection that you do not provide.

    The point really is that there are many places that could break this code.  And there are number of variables, including what method of connection is used (and in the case of Vodafone, effectively forced to use), which carrier is used and which headers were provided.

    But I think the first thing we do is to know who is giving you the 500.  If you can follow the application to your own server, so much the better.  If you can not, in the headers that come back with 500, you should some server information.  The dump out., empty the suffix of connection you use and if possible, get the log records from at the time this was done (which confirms the method of connection actually used).

    I also search this forum for more information on issues people have had with the carriers.  I know that there is some information on Vodafone UK.  According to me, that there is still something at least another carrier.

    Sorry, comms on the BB is not as simple as that...

  • I get this error with my login form, I did, but I'm not sure if this is a problem with my php code or

    I get this error with my login form when I try to log in, but I'm not sure if this is a problem with my php code or my flex code!

    ReferenceError: Error #1069: loginsuccess property not found on string and there is no default value.
    CBC::main/checkLogin()
    CBC::main/__login_user_result()
    to flash. events::EventDispatcher / dispatchEv...
    to flash. events::EventDispatcher / dispatchEv...
    to HTTPOperation / http://www.Adobe.com/2006/Flex/MX/internal:dispatchRpcEvent ()
    to mx.rpc::AbstractInvoker / http://www.Adobe.com/2006/Flex/MX/internal:resultHandler ()
    at mx.rpc::Responder/result()
    at mx.rpc::AsyncRequest/acknowledge()
    to the DirectHTTPMessageResponder/completeHandl...
    to flash. events::EventDispatcher / dispatchEv...
    to flash. events::EventDispatcher / dispatchEv...
    at flash.net::URLLoader/onComplete()


    my php code is:


    [php] <? PHP

    define ("DATABASE_SERVER", "localhost");

    define ('DATABASE_USERNAME","f4r");

    define ('DATABASE_PASSWORD', 'cool23');

    define ('database_name', 'bignixs1');

    connect to the database

    $mysql = mysql_connect (DATABASE_SERVER, DATABASE_USERNAME, DATABASE_PASSWORD) or die (mysql_error ());

    Select the database

    @mysql_select_db (DATABASE_NAME);

    re-branded the data passed from Flex to variables

    $username = mysql_real_escape_string ($_POST ["usernam...)

    $password = mysql_real_escape_string ($_POST ["passwor...)

    Ask the database to see if the combination of username/password given name is valid.

    $query = "SELECT * from users WHERE username = 'username' AND password = 'password" ";

    $result = mysql_fetch_array (mysql_query ($query));

    start generating XML

    $output = "< loginsuccess > ';

    If the query returned true, exit < loginsuccess > Yes < / loginsuccess > other output < loginsuccess > not < / loginsuccess >

    if(!$result)

    {

    $output. = « no » ;

    } else {}

    $output. = "yes";

    }

    $output. = "< / loginsuccess > ';

    all the XML for output

    print ($output);

    ? > [/php]

    $query = "SELECT * from users WHERE username = 'username' AND password = 'password" ";

    should be

    $query = "SELECT * FROM users WHERE username = '$username' AND password =  '$password'";
    

    example of a system of working with the correct connection code flex & php to ensure:

    http://www.mattlefevre.com/viewExample.php?tut=flexPHP&proj=simple%20Login%20Application

  • Data code

    Hello

    Just signed up and I hope I post this question in the right place.

    I just got a HDR-CX300. Of course, I'll want to transfer the video files on my computer. I need to have the date/time on the video code after I write it on a disk. My question is, will do PMB for me or I'll lose the data code during the transfer?
    I heard that PMB does not transfer them with video, only with pictures.

    If it isn't, recommendations on other software that will give me the time code on the video?

    Thanks in advance

    Jack

    ETA: not sure if it's important, but I am running WinXP SP3.

    Visit this link

    https://us.en.KB.Sony.com/app/answers/detail/A_ID/39790

    .

  • Problems with the date and time - have to reset the date & time on reboot

    original title: problems with the date and time

    Whenever I turn on my computer (Windows XP 2002) I click on F2.  Then I re - set the date and time it occurred in January 2006 1 h every time I have turn off the computer.  Can someone tell me what I need to do?

    You need to replace the battery in time clock (RTC) real of your computer.  It can also be called the CMOS or BIOS battery.

    Many computers, this battery is an inexpensive CR2032 button available in almost every pharmacy corner.  There are, however, some computers (especially laptops) that require a different (and probably more expensive) battery.

    Whatever the expense, almost all of these batteries are easy to replace.

    To get help, post back with the brand and model of your computer.

  • connection via bluetooth to the laptop problems for laptop.error code 0 x 80070057

    connection via bluetooth to the laptop problems for laptop.error code 0 x 80070057

    Best regards: John

    Hello

    -Do you have Bluetooth devices internal or external connected to the laptop?
    -Have you checked if all the Bluetooth drivers on two laptops are very well installed?
    -This work was fine before? If so, what are the hardware/software changes made on the computer before this problem started?
    -Is a problem only when these 2 laptops connecting or is that when you try to connect these 2 laptops at any other laptop too?

    I suggest you to go through these below items that could help you to fix this problem.

    The problems with Bluetooth devices
    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-with-Bluetooth-enabled-devices
    Set up a Bluetooth compatible device
    http://Windows.Microsoft.com/en-us/Windows-Vista/set-up-a-Bluetooth-enabled-device

    Hardware devices not detected or does not
    http://support.Microsoft.com/GP/hardware_device_problems

    I hope this information helps you!

  • Problems with the data connection

    Hello
    I bought a Z3 Compact Xperia on December 10, 2014. I live in Italy and I use Vodafone as my everyday.
    I got a SIM card replacement nano with LtE capabilities just to get the phone in the new fast network. The problem I encounter is that, since on January 13, 2015, I had some problems with the data in mode 3 G connection.
    So far, I used my phone normally, then I tried to send a text message with WhatsApp and phone stuck with the clock icon in the lower corner of the bubble of the message. I thought it was a temporary network problem but I'm not sure about this.
    I live in a small town where the coverage is really good, either in 3G and LTE. I tend to use the 3G because it uses less battery and it does not affect my 4G data plan.
    Th issue, it's that if I do a speedtest when I feel that network glitch I have a ping, but with very good download speeds up to 2000ms.
    The problem is that I believe that this is not a network problem because my mother has a phone HtC One S and runs vodafone without problem even when I'm having the glitch.
    I tried to reset the phone to factory settings, but it did not help.
    In LTE / 4G I do not experience this issue. In fact, I think if there is problem need a phone related software because the antenna works very well.
    If it doesn't I'll try to contact ad Vodsfone then I'll send my phone for the helpdesk if Vodafone tell me that the question is not on their network.

    Thanks in advance for your help.
    Simone

    It's pretty strange, double check the APN settings and contact EE in this regard.

  • Update Windows encountered a problem or an error code C 8024401

    Update Windows encountered a problem or an error code C 8024401

    Please help me I have the error I received from new major update code is 8024401 C always failed.

    See also:
    http://Windows.Microsoft.com/en-AU/Windows-8/how-solve-connection-problems-Windows-Update
    How to solve the problems of connection with Windows Update

  • 'problem by analyzing data jpeg '.

    Hello

    I have a selection of jpeg files, I have to open in Photoshop CS5. Larger files (between 42MB and MB 123,9) will be open, although children will be. The error message: "could not complete your request because of a problem with JPEG data analysis." I would have thought that Photoshop could easily deal with these file sizes. I opened the 1.5 GB without problem psd files. Is there something particularly difficult on the opening of the large JPEG files?

    Thank you very much

    Mark @

    Hi Marc, I don't think it's a problem with the weight, but with the file itself. You can open in other programs? Have you tried to save them in TIFF from another program, check if Photoshop works?

  • Problem with Capture Date &amp; time change

    I just became aware of a problem with the Date of Capture use to is very strange. Initially, a brief explanation of the import workflow I'm used with jpeg image 6 iPhone since Lightroom Mobile was presented. The images appear in the section of times iPhone app Photo, and from there I transfer to a collection in Lightroom Mobile. Once the collection syncs to Lightroom on my Mac (running latest El Capitan), they sort by capture time and I make choices and rename images. I have a naming preset that adds automatically the date to all the images. Recently, I noticed that some of these images, but not all, have been appointed with the wrong date. I had traveled without my computer - only my iPad, and it was a month before the images have been synced on my Mac it was very obvious that the dates were incorrect. The problem may have expressed earlier, but if the date was off by a day or two he would not have been as sensitive.

    The problem occurs when I take pictures with the app in time of MomentLens company. I use the application because it is designed to work with instant attachment lenses and the case of the Moment (which makes no difference in time to capture problem).


    Once that the images are added to LR Mobile news for images show good capture date and time. That's when they images sync for LR (latest version) that the problem occurs. And this is not a problem of LR Mobile, such as changes of date and hour occur if images of the iPad are added to LR without using mobile LR (from the iPad to Mac with AirDrop). Looking at the EXIF metadata Panel in LR, images taken with the iPhone camera app show three dates: Date time Original Date time digitized and Date time - all the which three are the same. Show only pictures taken with the application of the time Date time, but it's the same as in the iPhone Photo app and in LR Mobile capture time. However, when I show info on imagine in Lightroom, the time that appears to capture the time is the time that the image has been synchronized (if it came at LR Mobile) or the time that the image has been added to the iPad over wifi. It is also the time that is added to the preselection of naming. Note that if I send a picture directly from the iPhone to the Mac with AirDrop the date and time is correct.

    For the life of me, I can't understand this anomaly. I did thorough Imaging tests, and it happens only with the application of the time - other camera apps do not exhibit this problem. Interestingly, LR recognizes both the time Soft, which is reported under EXIF on the range of software and the lenses of the Moment when it is used with the iPhone the Moment case.

    If anyone has any ideas I'd be pleased to entrance. Thank you

    The link to the file is Dropbox - Photo of the Moment

    I have just confirmed with Exiftool that the sample file does not EXIF:DateTimeOriginal, although it does not contain EXIF:DateTime.

    You can send the following to the current time, the EXIF 2.3 specification:

  • I'm having a problem with my redemption code.  It says product not activated.  I ordered 12 online adobe photoshop/first elements.  Contact seller.  They said contact adobe chat. I was wondering if anyone can help? Thank you

    I'm having a problem with my redemption code.  It says product not activated.  I ordered 12 online adobe photoshop/first elements.  Contact seller.  They said contact adobe chat. Chat is now closed.  I was wondering if anyone can help? Thank you

    Using redemption code

    http://helpx.Adobe.com/x-productkb/global/redemption-code-help.html

    If you have purchased the software and reimbursement codes are coming as invalid then the seller needs to address that.  If you were able to acquire the serial number by exchanging the redemption code, then follow the advice of the seller and you contact Adobe support via chat (when available).

    Chat support - the link below click the still need help? the option in the blue box below and choose the option to chat...
    Make sure that you are logged on the Adobe site, having cookies enabled, clearing your cookie cache.  If it fails to connect, try to use another browser.

    Serial number and activation support (non - CC) chat
    http://helpx.Adobe.com/x-productkb/global/Service1.html ( http://adobe.ly/1aYjbSC )

  • Problem reinstalling Creative - try to uninstall and reinstall creative cloud bc of problems. meet the error Code: 86 - "another version of creative cloud office is running. To continue, pls leave this instance, click try again. "NO.

    try to uninstall and reinstall cloud creative bc of problems. meet the error Code: 86 - "another version of creative cloud office is running. To continue, pls leave this instance, click try again. "No other CC no longer exists on my computer. Advice?

    If you are on MAC Activity Monitor Open and looking for creative cloud, he he race it Quit
    / Applications/Utilities/Activity HD MAC monitor

    If you are in control of Windows in the Task Manager

    CTRL + Shift + Esc keys

  • Problem with the Data Source

    Hello

    JDeveloper 11.1.1.6

    I am facing some problems associated with data controls. Here's my number; I'm trying to pass a parameter to a taskflow appearing as a region on the my home page. Once I click on an image in my taskflow, I want to pass the id of the image to my main page using contextual events (it worth?). However, I need to create a my bean datacontrol to expose a method in the link which is triggered once I click it. But I can't create my datacontrol because I get this error:

    Error: Multiple versions of com/DataControls.dcx appear in your managed project classpath. Check dependencies associated with project: .../model/classes/ and .../Portal/classes/

    Any other approach would be nice to hear.

    Concerning

    Several versions of com/DataControls.dcx appear in your managed project classpath. Check dependencies associated with project: .../model/classes/ and .../Portal/classes/

    You are actually looking for the project for the DataControls.dcx in the paths specified? Ideally, there should not be a DataControls.dcx in your template project.

  • Problem with field date

    Hello
    I have problems with the dates. I have a datagid which fills the XML values. Some examples of dates in the xml document.
    (1) 2008-08 - 05T 00: 00:00Z
    2) 2008 - 07-22 T 00: 00:00Z
    (3) 2008-08 - 04T 23: 00:00Z
    4) 2008 - 07-11 T 11: 18:20Z

    I have the function that is called when an element is clicked on the data grid. This function is supposed to take the above date and the date of the datefield in a summary Panel. I continued to get xmllist@23232 to date conversion error if I tried to bind the property of selectDate datefield in dataGrid value.

    I've seen examples of datefield defined using a date object. So I stored the date above in a string. Screens of the string data fine only thing is a the componenet (T) of time as well. So I split the string using the string to split the function and the use of "T" as a separator. The problem is the 2nd and 4th dates in the above examples worked well and display perfectly in the datefield.

    The 1st and 3rd dates however wrongly displayed. I've posted the table stored items from split, which found that the date of the first one 2008-08 - 05T 00: 00:00Z rose in 2008-08-06 instead of on 2008-08-05
    and for 2008-08 - 04T 23: 00:00Z rode in on 2008-08-05 instead of 2008-08-04. I checked the string that was storing the data grid data and who has been properly storing the value.

    any suggestions?

    see you soon
    Aerts

    sorted,
    lacked a bit of caffeine. I had another string of storing a value different date and because of my stupidity, I tried to parse this string and get the two different dates.

    see you soon
    Aerts

  • Problem with the DATA types, in a UNION

    Hello
    I m trying to disply a custom message when no data found using the structure below. Unfortunately I ve you have a problem with the data types I im trying to union
    I tried different types of data in the 2nd SELECTION tool but the rest of the problem. Help, please.

    SELECT HOSP_NAME 'HOSPITAL' DOC_SUR 'NAME', 'NAME' DOC_NAME, d.DOC_ID ID, diagnosis
    H., DOCTOR d, (SELECT d.DOC_ID, COUNT (d.DIAGN_ID) diagnosis
    OF PATIENT_DIAGNOSIS d
    GROUP BY d.DOC_ID)
    WHERE diagnosis > 1

    UNION ALL

    SELECT TO_CHAR ('test'), TO_CHAR ('test'), TO_CHAR ('test'), TO_CHAR ('test'), 0
    OF THE DOUBLE
    If NOT EXISTS (HOSP_NAME 'HOSPITAL' 'NAME' 'NAME' DOC_NAME DOC_SUR, d.DOC_ID ID, diagnosis
    OF ΝΟΣΟΚΟΜΕΙΟ h, ΙΑΤΡΟΣ d, (SELECT d.DOC_ID, COUNT (d.DIAGN_ID) diagnosis
    OF PATIENT_DIAGNOSIS d
    GROUP BY d.DOC_ID)
    WHERE diagnosis > 1);


    ORA-01790: expression must have same type of data, matching expression
    01790 00000 - "expression must have the same type of data, matching expression.

    DOC_SUR 'NAME' DOC_NAME 'NAME', ID d.DOC_ID, HOSP_NAME "HOSPITAL", diagnosis

    What is the data type for these columns

    To_char('test'), to_char ('test'), to_char ('test'), to_char ('test'), 0

    What you're doing here 'test' is already a character. Why do you use TO_CHAR?

Maybe you are looking for

  • Wifi registration form keeps popping up

    When I implemented the new Mac Mini, I accidentally chose Xfinity that my network wifi instead of border, I have actually. Since I chose Frontier in the popup to wifi in the menu bar and entered my password, he agreed. However, whenever I restart, or

  • Satellite Pro L20: Adapter WLan has stopped working and will not allow

    Hello I have a L20 Pro Satalite, which works very well. However, just before Christmas 2006, the adapter wireless (Atheros AR5005G) has stopped working. Windows XP Pro SP2 can see the adapter and network connections shows as being activated, but he s

  • Media player 11 on xp foundation will not play avi video

    Remember - this is a public forum so never post private information such as numbers of mail or telephone! Ideas: I need to know how to solve this problem, it plays the audio, but will not play the video, my vista machine plays the same film in the sa

  • V715w printer printing problems

    I have exactly the same problem and my computer is also like the specifications of your Windows 7 Home Premium 64-bit. Hi, I would like to jump on this thread, because I have similar problems. I have read your other useful messages and tried to follo

  • WiFi Direct | Bluetooth THE | NFC - Questions

    does not do anything with WiFi Direct even as a developer - only as a user for Miracast. have tested the sample application now have a few questions before I decide to use it Maybe someone can share some details --- WIFI DIRECT Is it possible after t