Tutorial events handler in firefox differences with chrome and IE

I have this code:
var inp1 = document.createElement("input");
inp1.type = "button";
inp1.value = " Delete ";
var bott = "boton" + i.toString();
inp1.id = "prueba" + i;
inp1.className = "boton";
inp1.onclick = function() {deleteItem(event)};
function deleteItem(event) {
var tname = event.srcElement || event.target;
var tname1 = tname.id;
works for chrome but not firefox

What kind of tutorial are you writing?
Generally speaking, you should never recommend detecting browser capabilities by strings in the navigator properties. It is always better to use object/property/method detection if possible. Otherwise, you may miss crucial changes made in more recent versions of a browser, such as IE9 and later. Also, you should consider using the standardized approach to defining event handlers, which is addEventListener().
Here is an alternative example:
var inp1 = document.createElement("input");
inp1.type = "button";
inp1.value = " Delete ";
inp1.id = "prueba" + i;
// For best results, add element to the document before
// setting event listeners
if (inp1.addEventListener)
inp1.addEventListener("click", deleteItem, false);
else
inp1.onclick = deleteItem;
function deleteItem(evt){
if (!evt) evt = window.event; // old IE
var tgt = evt.target || evt.srcElement;
alert(tgt.id); //for debug/test only
return false; //for debug/test only
...

Similar Messages

  • SSL certificate not valid in Safari, but webservice  works with Chrome and Firefox

    As a MD, I'm used to check blood results online on the service
    https://inet.zentral-labor.ch/c16/kunweb.dll - this is the online-portal of my laboratory medica in Zurich. http://www.medica.ch
    Access to the loginscreen is public ;-) and should look like this (Screenshot from Firefox)
    I've setup a new workstation 3 weeks ago (iMac with OS Lion 10.7.4), and this webservice service works fine till yesterday. Now, Safari is every time we try to reach the service telling us, that this service needs a certificate, we can choose only a default apple certificate
    and then, the error is:
    This Site needs a valid SSL-Client-Certificate... (Screenshot below)
    What's wrong with Safari? With Chrome and Firefox, the webservice works fie without any problems.
    Thanks for an advice
    MD Patric Eberle

    As a MD, I'm used to check blood results online on the service
    https://inet.zentral-labor.ch/c16/kunweb.dll - this is the online-portal of my laboratory medica in Zurich. http://www.medica.ch
    Access to the loginscreen is public ;-) and should look like this (Screenshot from Firefox)
    I've setup a new workstation 3 weeks ago (iMac with OS Lion 10.7.4), and this webservice service works fine till yesterday. Now, Safari is every time we try to reach the service telling us, that this service needs a certificate, we can choose only a default apple certificate
    and then, the error is:
    This Site needs a valid SSL-Client-Certificate... (Screenshot below)
    What's wrong with Safari? With Chrome and Firefox, the webservice works fie without any problems.
    Thanks for an advice
    MD Patric Eberle

  • Jquery slider and effects works slow in firefox in comparision with Chrome and IE.

    I am working on HTML conversion of a website and following all the standards. But the jquery banners and sliders are working very slow in Firefox in comparison with Chrome and IE. I tested it on different servers, but result is same.

    A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.
    *http://forums.mozillazine.org/viewforum.php?f=25
    The helpers at that forum are more knowledgeable about web development issues.<br>
    You need to register at the MozillaZine forum site in order to post at that forum.

  • Cant play YouTube with IE7. Plays fine with Chrome and Firefox.

    I embedded a YouTube video into a page www.confession-reconciliation.net but cant play it with IE7 but can play it with Chrome and FireFox.  Must be something with Flash.  Please help'
    Joe Damore

    Hi yes.  I shot a video with my camcorder on Thanksgiving Day but I  had to
    convert it to .avi and then to .flv and then embed it. It plays. Its in 
    www.joedamore.com/links.html (http://www.joedamore.com/links.html) .  This
    YouTube is strictly HTML and no .swf or .flv.
    Joe
    In a message dated 6/22/2010 9:23:58 P.M. Eastern Daylight Time, 
    [email protected] writes:
    Can you  view any other embedded videos with  IE?

  • Layout with Chrome and Explorer

    I saved my site into a folder on mac and opened the welcome page with Chrome and Explorer.... Chrome doesn't work...everything disappears...Explorer doesn't show the active button for the menu...what is that ?
    Is there a solution?
    is it compatible with all th broswer?

    yes..it works..!!!!  I attach 2 jpg... screen... first was taken from firefox the second one from safari.... there is a
    problem with the top menu....may u see it?.... it is good with chrome firefox and explorer.... but with safari is overlapped...do you think I fix this error?
    tk

  • Difference Between Chroma and Saturation?

    Can anyone explain the difference between chroma and saturation?
    Also, how could I change the chroma of a color in Photoshop?
    Thanks!

    c,
    You may have a look here:
    http://en.wikipedia.org/wiki/Colorfulness
    A search in the Photoshop Helpfile will show whether there is a real distinction (in later versions) between the two, and whether it is possible to work with chroma as opposed to saturation.

  • Event handling in alv oops With buttons

    Hi Experts
             I have some doubt in ALV OOPS using Events. Could any one please tell me the procedure to how to handle events in oops ( Like  interactive reports using events ).
                                     Thank you                                                                               
    Satyendra.

    Hello Satyendra
    The following sample report shows you how to handle the event HOTSPOT_CLICK and BUTTON_CLICK.
    DATA:  gd_okcode TYPE ui_func,
      gt_fcat TYPE lvc_t_fcat,
      go_docking TYPE REF TO cl_gui_docking_container,
      go_grid1 TYPE REF TO cl_gui_alv_grid.
    DATA:   gt_knb1 TYPE STANDARD TABLE OF knb1.
    PARAMETERS: p_bukrs TYPE bukrs  DEFAULT '2000'  OBLIGATORY.
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
          handle_hotspot_click FOR EVENT hotspot_click OF cl_gui_alv_grid
            IMPORTING
              e_row_id
              e_column_id
              es_row_no
              sender,  " grid instance that raised the event
          handle_button_click FOR EVENT button_click OF cl_gui_alv_grid
            IMPORTING
              es_col_id
              es_row_no
              sender.
    ENDCLASS.                    "lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_hotspot_click.
    *   define local data
        DATA:
          ls_knb1     TYPE knb1,
          ls_col_id   TYPE lvc_s_col.
        READ TABLE gt_knb1 INTO ls_knb1 INDEX e_row_id-index.
        CHECK ( ls_knb1-kunnr IS NOT INITIAL ).
        CASE e_column_id-fieldname.
          WHEN 'KUNNR'.
            SET PARAMETER ID 'KUN' FIELD ls_knb1-kunnr.
            SET PARAMETER ID 'BUK' FIELD ls_knb1-bukrs.
            CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.
          WHEN 'ERNAM'.*       
             SET PARAMETER ID 'USR' FIELD ls_knb1-ernam.
            CALL TRANSACTION 'SU01' AND SKIP FIRST SCREEN.
          WHEN OTHERS.
        ENDCASE.
    *   Set active cell to field BUKRS otherwise the focus is still on
    *   field KUNNR which will always raise event HOTSPOT_CLICK
        ls_col_id-fieldname = 'BUKRS'.
        CALL METHOD go_grid1->set_current_cell_via_id
          EXPORTING
            is_row_id    = e_row_id
            is_column_id = ls_col_id.
    ENDMETHOD.                    "handle_hotspot_click
    METHOD handle_button_click.
    *   define local data
        DATA:
          ls_knb1     TYPE knb1.
        READ TABLE gt_knb1 INTO ls_knb1 INDEX es_row_no-row_id.
        CHECK ( ls_knb1-kunnr IS NOT INITIAL ).
        SET PARAMETER ID 'KUN' FIELD ls_knb1-kunnr.
        SET PARAMETER ID 'BUK' FIELD ls_knb1-bukrs.
        CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.
      ENDMETHOD.                    "handle_button_click
    ENDCLASS.                    "lcl_eventhandler IMPLEMENTATION
    START-OF-SELECTION.
      SELECT        * FROM  knb1 INTO TABLE gt_knb1
             WHERE  bukrs  = p_bukrs
    * Create docking container
      CREATE OBJECT go_docking
        EXPORTING
          parent                      = cl_gui_container=>screen0
          ratio                       = 90
        EXCEPTIONS
          OTHERS                      = 6.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Create ALV grid
      CREATE OBJECT go_grid1
        EXPORTING
          i_parent          = go_docking
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Set event handler
      SET HANDLER:
        lcl_eventhandler=>handle_hotspot_click FOR go_grid1,
        lcl_eventhandler=>handle_button_click  FOR go_grid1.
    * Build fieldcatalog and set hotspot for field KUNNR
      PERFORM build_fieldcatalog_knb1.
    * Display data
      CALL METHOD go_grid1->set_table_for_first_display
        CHANGING
          it_outtab       = gt_knb1
          it_fieldcatalog = gt_fcat
        EXCEPTIONS
          OTHERS          = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Link the docking container to the target dynpro
      CALL METHOD go_docking->link
        EXPORTING
          repid                       = syst-repid
          dynnr                       = '0100'
    *      CONTAINER                   =
        EXCEPTIONS
          OTHERS                      = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * ok-code field = GD_OKCODE
      CALL SCREEN '0100'.
    END-OF-SELECTION.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS_0100'.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    MODULE user_command_0100 INPUT.
      CASE gd_okcode.
        WHEN 'BACK' OR
             'END'  OR
             'CANC'.
          SET SCREEN 0. LEAVE SCREEN.
        WHEN OTHERS.
      ENDCASE.
      CLEAR: gd_okcode.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    FORM build_fieldcatalog_knb1 .
    * define local data
      DATA:
        ls_fcat        TYPE lvc_s_fcat.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
    *     I_BUFFER_ACTIVE              =
          i_structure_name             = 'KNB1'
    *     I_CLIENT_NEVER_DISPLAY       = 'X'
    *     I_BYPASSING_BUFFER           =
    *     I_INTERNAL_TABNAME           =
        CHANGING
          ct_fieldcat                  = gt_fcat
        EXCEPTIONS
          inconsistent_interface       = 1
          program_error                = 2
          OTHERS                       = 3.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    LOOP AT gt_fcat INTO ls_fcat
              WHERE ( fieldname = 'KUNNR'  OR
                      fieldname = 'ERNAM'  OR
                      fieldname = 'BUKRS' ).
        IF ( ls_fcat-fieldname = 'BUKRS' ).
          ls_fcat-style = cl_gui_alv_grid=>mc_style_button.  " column appears as button
        ELSE.
          ls_fcat-hotspot = abap_true.
        ENDIF.
        MODIFY gt_fcat FROM ls_fcat.
      ENDLOOP.
    ENDFORM.                    " BUILD_FIELDCATALOG_KNB1
    Regards
      Uwe

  • Why doesnt scrolling feature on mouse work in firefox but works with chrome and IE?

    I installed firefox on my laptop and when i try to scroll with the keypad it wont let me. The keypad works fine with all other programs except firefox. Ive uninstalled and reinstalled firefox already and no luck.

    If it's an Acer laptop, there appears to be a bug with the ALPS drivers. See: https://bugzilla.mozilla.org/show_bug.cgi?id=605357

  • Event handler getting fired on all list and libraries

    I have created an event handler and add it to a custom content type. Some how this event handler is getting fired on each every list which are there inside a site. Below is my content type declaration with fields and event handler. This content type
    is being activated using a featur scope at "Site".
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <!-- Parent ContentType: Document (0x0101) -->
    <ContentType ID="0x01010069131024FE3C485FAEF6C36926B5FD67" Name="CIB Document" Group="CIB Content Types" Description="CIB Content Types" Inherits="FALSE" Version="0">
    <FieldRefs>
    <RemoveFieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Hidden="TRUE" Name ="Title"></RemoveFieldRef>
    <FieldRef Name="Metier"
    ID="{F3ABF2F2-437B-4403-8A11-BEAE9F507009}"
    DisplayName="Metier"
    Sealed="TRUE"
    Required="FALSE" />
    <FieldRef Name="Department"
    ID="{0B11D33C-B8D1-485F-A483-755BFE55C2B9}"
    DisplayName="Department"
    Sealed="TRUE"
    Required="FALSE" />
    <FieldRef Name="Owner"
    ID="{FC6FE3D4-5EEE-4812-A77C-499AB9927D1A}"
    DisplayName="Owner"
    Sealed="TRUE"
    Required="FALSE" />
    <FieldRef Name="ExpiryDate"
    ID="{D68E037B-63A2-42FF-8150-412972CB062F}"
    DisplayName="Expiry Date"
    Sealed="TRUE"
    Required="FALSE" />
    <FieldRef Name="SecurityStatus"
    ID="{5954E9C2-921B-46FB-8A7B-2BC0F62BD011}"
    DisplayName="Security Status"
    Sealed="TRUE"
    Required="FALSE" />
    </FieldRefs>
    <XmlDocuments>
    <XmlDocument NamespaceURI="http://schemas.microsoft.com/sharepoint/events">
    <spe:Receivers xmlns:spe="http://schemas.microsoft.com/sharepoint/events">
    <Receiver>
    <Name>CIBDocumentHandlerItemAdding</Name>
    <Type>ItemAdding</Type>
    <Assembly>Common.SharePoint.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=68d03adf96d84a47</Assembly>
    <Class>Common.SharePoint.Web.Handlers.CIBDocumentHandler</Class>
    <SequenceNumber>10500</SequenceNumber>
    </Receiver>
    </spe:Receivers>
    </XmlDocument>
    </XmlDocuments>
    </ContentType>
    </Elements>

    You need to add the ListTemplateId or ListUrl to the Receiver element,
    E.g. If you had a list definition with the template ID 10500, then your event receiver XML would look like this:
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <Receivers ListTemplateId="10500" >
    <Receiver>
    <Name>CIBDocumentHandlerItemAdding</Name>
    <Type>ItemAdding</Type>
    <Assembly>Common.SharePoint.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=68d03adf96d84a47</Assembly>
            <Class>Common.SharePoint.Web.Handlers.CIBDocumentHandler</Class>
    <SequenceNumber>10500</SequenceNumber>
    </Receiver>
    </Receivers>
    </Elements>
    Regards, Matthew
    MCPD | MCITP
    My Blog
    Please remember to click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if it was useful.

  • Problems with Chrome and Safari

    About one week ago, I started having some issues with my mid-2012 MBP. After troubleshooting various items, I both reinstalled OSX and then erased the hard drive and reinstalled OSX. As far as I can tell, most of the minor issues were taken care of.
    Two issues persist.
    1. The thumbnail photos that accompany status updates in my Facebook News Feed are not showing up. It's either blank, or a broken photo symbol. This is happening intermittently in both Chrome and Safari. I should add, since the latest install of OSX, Chrome and Adobe Flash have been the only things I have downloaded. And the issue remained in Safari after the fresh install and before downloading Chrome, so I know this issue isn't Chrome related. (It also happens with the Test user profile I have in which there are no other programs.)
    2. Along with (1), both Chrome and Safari have been partially or fully freezing. Again, this is intermittently. When the browsers freeze up, the Activity Monitor shows both Chrome and Safari as using over 100% of the CPU. It does not resolve itself in Chrome and requries a force quit. Safari has been resolving itself.
    Like I said, I have already erased the hard drive and reinstalled OSX. I have also ran the Hardware Test and it found nothing; and my S.M.A.R.T. status is Verified. I have also reset the PRAM and resent the SMC.
    Additionally, the newly downloaded Chrome is running as it is when downloaded from the site. That is, no extra plug-ins or extensions.
    Anyone have any ideas about what the issues could be?

    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    This time you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1 or if it doesn't solve the problem.
    Boot into Recovery. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • Wireless speed difference with WEP and WPA2?

    I am connecting to my FiOS router wirelessly, since I was new on wireless networking, I did lots of reading they all say WEP encryption is flawed, and WPA2 should be used instead. So I changed the router's default WEP to WPA2 the same day I got FiOS installed. When I check about 10 of my neighbor's wireless networks, 8 of them using WEP, 1 has Security Disabled(D'oh), and I am the only one using WPA2-personal. My question is will I see any connection speed difference between using WEP and WPA2?
    Solved!
    Go to Solution.

    in every day use, your experience will vary.  There is more "going on" with WPA and WPA2 than with WEP, such as message checking and encryption key changes for each data transmission, so these, combined with other possibilities inherent in computer-connected-to-internet use, can slow you down.  Another factor:  There will be more administrative overhead to use WPA or WPA2.  such as if you ever have to reset the router (to default settings), the default is WEP, so you have to go into the router to then chage it (or import a config file you previously saved on your PC).   AND If you need to call verizon tier one tech support, they only support default settings.  Their premium service is called Expert Care.
    cjacobs001

  • Integrate Adobe with Chrome and Android

    Is a good idea to integrate Chrome with Android devices.

    Thanks for the info. But i have used adobe reader plugin with chrome when i used windows 7 in another PC. And in windows7, adobe reader plugin is listed in Chrome. So i was able to save and edit forms in that system.

  • Difference with cascading and trunking

    Hi guys ,
    What's the difference with cascading two switches and trunking two switches . I believe , you need to trunk , is because , you are carrying multiple vlans through a trunk and cascading two switches is to make two switches become virtualy one . Only management vlan , and not many vlan .
    Am I correct , please advice ......

    Hi, you have it right, the purpose of trunking is to allow you to extend vlans where you cannot physically install another switch for those vlans for various reasons. For example ideialy you want to have one unique vlan per department so you setup one 48port access switch for users in department-X but cannot do so for department-Y being in same location , here you you can then use trunk from a VTP server switch and a VTP client switc and pass department-Y vlan onto that switch thus having both departments in same switch but different vlans.. here it is assumed there are SVI layer 3 interfaces configured for each vlan if both VLANS need to communicate one another.
    On the other hand cascading is simply interconnecting the two switches to be managed using swith cluster techology and no neccesarity need to implement trunking and have it manage through one ip address and mamagement vlan.
    Rgds
    Jorge
    rate any helpful post if it helps!

  • Yosemite Download conflict with Chrome and all email attachments

    Since downloading Yosemite to my 2009 iMac, when pressing insert attachment using Google, Outlook or Yahoo mail, the dropdown menu of files won't close and blocks the email send button.  I have to shut down Google chrome and then reopen it and log back into my email draft. Anyone else have this problem or know how to fix it?

    Ive noticed this too and find it to be inconsistent even. I have not figured out the pattern, but sometimes mail automatically downloads all the attachments. Most of the time though it only pulls the first one.

  • Firefox is scaling down the photo sizes, along with chrome and internet explorer but Firefox's photos are usually smaller

    I sell products on a site, along with other sellers, that is owned by someone else.
    We have many sellers there. Some of us are having problems with how we are able to view the size of our photos taken of our products that are up for sale.
    From seller to seller, we have different versions of Firefox that we are using. I have the newest Firefox, which I believe is 4.
    I was having, like others who use 4, the same problem seeing smaller photos before I did the upgrade as well.
    It seems to be the case for most of us who are having the problem, that Firefox photos scale down smaller than Internet Explorer and Chrome.
    We have been told that this may be a browser issue as the site owners say they have not made any changes. At this point we are unsure since there are so many variations from seller to seller (keep in mind that some sellers are not seeing the photos scale down through their computer).
    We have asked the site owners to look into this problem further. I also wanted to see what the Firefox community had to say. Do you think it may be a browser issue? We would greatly appreciate your input.
    Below are some examples of photos that have been scaled down for the sellers who are seeing a problem with smaller photos while both in Firefox; all using different versions of Firefox:
    One photo that was originally the size of 419px by 1, 007px is being seen by one seller to a scaled down size of 81px by 64px.
    Another seller is viewing this same photo scaled down to 163px by 329px.
    Another seller is able to view this photo as the original size it was intended to be, which is 419px by 1, 007px.
    The above scenario has been the worst scaled down size we have heard of so far.
    Typically a photo that is the size of 1, 000px by 930px has been scaled down to 420px by 391px.
    There are other examples as to size, but you can see that the photos have been scaled down quite a bit.
    You can see that it has been scaled down to less than half of the original size. This can pose a real problem for us depending on the type of product that is being photographed.
    Thank you!!

    Thank you!!

Maybe you are looking for

  • Unable to Log In to ES Workplace

    Hello, I am unable to log on to ES Workplace [HU2 SAP ERP 6.0 (ECC 6.00 EhP4)]. I recieve the message  "Password Login no longer possible - too many failed attempts", other systems are OK. I have tried to re-register as per the trips and tricks, but

  • JVM freeze with oci driver?

    An application that was working ok with oracle's thin driver started freezing with no obvious pattern when I switched to oci (9i on sunOS) - it can run a minute or days between freezes. There are multiple independent threads, and all of them freeze w

  • Box with rounded corners displays as rectangle in Web Browser

    I am using the box control (IBoxObject) in my Crystal Reports with rounded corners. However the box displays as a rectangle with square corners when viewed in a web browser. I have tried this in IE 7.0.5730.13, Firefox 3.0.3 and Chrome 0.2.149.30 all

  • Casting Classes in jsp

    [att1.html]           

  • How do I import and use the Keynote themes that I've downloaded?

    I'm sure this is a stupid question, but I searched this forum & didn't immediately find the answer I needed. I've downloaded some Keynote themes (they have a .kth extension). How do I import these into Keynote 08 so that Keynote will recognize and us