Elantech clickpad not handled by synaptics

My Acer s7 has an Elantech clickpad that was, at one point, using synaptics, and edge scroll and such worked properly. It stopped doing that a day after, for no apparent reason (no upgrades or configuration changes). Attempted reinstalling xf86-input-synaptics, no effect.
Currently some features work, apparently handled by evdev, but most advanced ones don't. The psmouse-elantech appears to make no difference in how the device is detected (i.e. a generic evdev pointer).
It's been a long time since I had to play around with Xorg configuration. As far as I can tell, the synaptics.conf entries should match the device, since they have a fairly generic match on any /dev/input/event*, which includes this device.
Relevant dmesg. There's a touchscreen as well, which also sorta works, but that I don't really care about.
[ 1.565355] 2.6.2X-Elan-touchpad-2011-04-12
[ 1.676005] elantech.c: PSMOUSE_CMD_RESET_BAT param[0]=aa param[1]=0 param[2]=0
[ 1.748606] elantech.c: Elantech version query result 0x58, 0x1f, 0x01.
[ 1.784943] elantech.c: assuming hardware version 9, firmware version 0x58.0x1f.0x01
[ 6.733234] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/input/input17
[ 6.733695] hid-multitouch 0003:04F3:015C.0005: input,hiddev0,hidraw2: USB HID v1.10 Device [ELAN Touchscreen] on usb-0000:00:14.0-7/input0
[ 14.379497] input: PS/2 Elantech ETF1059 Click-Pad as /devices/platform/i8042/serio1/input/input9
/etc/X11/xorg.conf.d/50-synaptics.conf left at the default.
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
# This option enables the bottom right corner to be a right button on
# non-synaptics clickpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
# To disable the bottom edge area so the buttons only work as buttons,
# not for movement, set the AreaBottomEdge
# Option "AreaBottomEdge" "82%"
EndSection
# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection
Added /etc/X11/xorg.conf.d/10-synaptics.conf, since 50-synaptics.conf suggests creating a separate file for individual configuration. More or less the suggested configuration from the Touchpad Synaptics wiki article, adjusted slightly for what I had on my other laptop and match my touchpad preference.
Section "InputClass"
Identifier "touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "VertEdgeScroll" "on"
Option "HorizEdgeScroll" "on"
Option "EmulateTwoFingerMinZ" "40"
Option "EmulateTwoFingerMinW" "8"
Option "CoastingSpeed" "0"
Option "VertTwoFingerScroll" "off"
Option "HorizTwoFingerScroll" "off"
EndSection
Relevant Xorg.0.log:
[ 7398.871] (II) config/udev: Adding input device PS/2 Elantech ETF1059 Click-Pad (/dev/input/event17)
[ 7398.871] (**) PS/2 Elantech ETF1059 Click-Pad: Applying InputClass "evdev pointer catchall"
[ 7398.871] (II) Using input driver 'evdev' for 'PS/2 Elantech ETF1059 Click-Pad'
[ 7398.871] (**) PS/2 Elantech ETF1059 Click-Pad: always reports core events
[ 7398.871] (**) evdev: PS/2 Elantech ETF1059 Click-Pad: Device: "/dev/input/event17"
[ 7398.871] (--) evdev: PS/2 Elantech ETF1059 Click-Pad: Vendor 0x2 Product 0x1
[ 7398.871] (--) evdev: PS/2 Elantech ETF1059 Click-Pad: Found 3 mouse buttons
[ 7398.871] (--) evdev: PS/2 Elantech ETF1059 Click-Pad: Found relative axes
[ 7398.871] (--) evdev: PS/2 Elantech ETF1059 Click-Pad: Found x and y relative axes
[ 7398.871] (II) evdev: PS/2 Elantech ETF1059 Click-Pad: Configuring as mouse
[ 7398.871] (**) evdev: PS/2 Elantech ETF1059 Click-Pad: YAxisMapping: buttons 4 and 5
[ 7398.871] (**) evdev: PS/2 Elantech ETF1059 Click-Pad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 7398.871] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input9/event17"
[ 7398.871] (II) XINPUT: Adding extended input device "PS/2 Elantech ETF1059 Click-Pad" (type: MOUSE, id 14)
[ 7398.871] (II) evdev: PS/2 Elantech ETF1059 Click-Pad: initialized for relative axes.
[ 7398.871] (**) PS/2 Elantech ETF1059 Click-Pad: (accel) keeping acceleration scheme 1
[ 7398.871] (**) PS/2 Elantech ETF1059 Click-Pad: (accel) acceleration profile 0
[ 7398.871] (**) PS/2 Elantech ETF1059 Click-Pad: (accel) acceleration factor: 2.000
[ 7398.871] (**) PS/2 Elantech ETF1059 Click-Pad: (accel) acceleration threshold: 4
[ 7398.871] (II) config/udev: Adding input device PS/2 Elantech ETF1059 Click-Pad (/dev/input/mouse2)
[ 7398.871] (II) No input driver specified, ignoring this device.
[ 7398.871] (II) This device may have been added with another device file.
Switching the MatchIsTouchpad to MatchIsPointer in 50-synaptics.conf resulted in Xorg.0.log having:
[ 9640.197] (II) Using input driver 'synaptics' for 'PS/2 Elantech ETF1059 Click-Pad'
[ 9640.197] (**) PS/2 Elantech ETF1059 Click-Pad: always reports core events
[ 9640.197] (**) Option "Device" "/dev/input/event17"
[ 9640.295] (EE) synaptics: PS/2 Elantech ETF1059 Click-Pad: Synaptics driver unable to detect protocol
[ 9640.295] (EE) PreInit returned 11 for "PS/2 Elantech ETF1059 Click-Pad"
[ 9640.295] (II) UnloadModule: "synaptics"
So I guess synaptics is no longer able to handle it properly? How could that have changed without changing the synaptics/kernel versions?

Nope:
property 'Synaptics ClickPad' doesn't exist, you need to specify its type and format
property 'Synaptics Soft Button Areas' doesn't exist, you need to specify its type and format
Do those need the synaptics driver loaded? Nothing is even triggering Xorg to load it at the moment, since nothing has the IsTouchpad property (set by udev, I think?).
Also, should the device be detected as an ETPS/2 device, rather than PS/2? I changed the script to reflect the latter, but I'm not sure if that's important.

Similar Messages

  • Crystal Report: irregular error not handled by the application component

    Hi all,
    The error message u201Cirregular error not handled by the application componentu201D comes up when I run any of the Crystal Report in the SAP Business One.
    But this error happens only in the client Machines, from the Server I can run the report normally.
    Thanks and Regards,
    Alberto Franç

    Hi,
    It seems installation and registration problem, have you tried to other client computers? Try to reinstall  the Crystal Report in client.
    Regards,
    Clint

  • HT201457 I have a mid 2011 iMac and have installed windows 8.1 on it  I costantly get system thread not handled and kernel security check failure and the Mac restarts

    I Have a mid 2011 iMac with windows 8.1 on it and constantly get system thread exception not handled and kernel security check failur

    I Have a mid 2011 iMac with windows 8.1 on it and constantly get system thread exception not handled and kernel security check failur

  • On Mac with Firefox 4, apostrophes in the text are not handled right. The page works well on other browsers.

    See www.researchintegration.org/lynn-home.htm, "Queen's" on third line under "Education."
    Also www.dsescale.org, in the paragraph starting with "Religions", Firefox 4 is not handling the umlauted "u" in "Arndt Bussing".
    These pages have always worked right in other versions of Firefox. As far as I know both of these locations are coded with proper HTML.

    That is a problem with detecting the encoding properly. You can change that manually to View > Character Encoding > Unicode (UTF-8) or try the Auto-Detect > Universal setting.

  • Exception Not Handled.

    Hi all,
    Can you please explain why the exception is not handled even thought i have handled it by mentioning others.
    declare
    procedure empnetsal (vempno emp.empno%type) is
    netsal number;
    begin
    select sal into netsal from emp where empno = vempno;
    netsal := netsal+(netsal* 0.01)+netsal;
    dbms_output.put_line (netsal);
    exception
    when no_data_found then
    dbms_output.put_line ('Such employee does not exist');
    when others then
    dbms_output.put_line ('Exception handled by Others handler');
    end;
    begin
    empnetsal ('string');
    empnetsal (7566);
    empnetsal (7788);
    end;
    regards,
    Sri Ram.

    The Exception handler is inside the Local Procedure and not in the anonymous block.
    The block errors out before it enters into the procedure bacuase of wrong datatype.
    Catching the error in the Block will solve your problem.
    SQL>declare
      2  procedure empnetsal (vempno emp.empno%type) is
      3  netsal number;
      4  begin
      5  select sal into netsal from emp where empno = vempno;
      6  netsal := netsal+(netsal* 0.01)+netsal;
      7  dbms_output.put_line (netsal);
      8  exception
      9  when no_data_found then
    10  dbms_output.put_line ('Such employee does not exist');
    11  when others then
    12  dbms_output.put_line ('Exception handled by Others handler');
    13  end;
    14  begin
    15  empnetsal ('string');
    16  empnetsal (7566);
    17  empnetsal (7788);
    18  EXCEPTION
    19     WHEN OTHERS THEN
    20     dbms_output.put_line ('Exception handled by OUTER Others handler');  
    21  end;
    22  /
    Exception handled by OUTER Others handler
    PL/SQL procedure successfully completed.Regards
    Arun

  • Exception not handled by the Collaxa Cube system

    Hi!
    i have plsql procedure and i published it as a web service using JDev 10.1.3, web service is deployed on OC4J 10.1.3. When i call it directly, everything works fine. When i make a BPEL process jast wrapping this web service (receive, assign, invoke, assign, reply - that`s all) the web service is invoked fine without error, but then error appears in the bpel process:
    Exception not handled by the Collaxa Cube system. An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "java.lang.NullPointerException at com.collaxa.cube.engine.delivery.DeliveryHelper.saveAttachments(DeliveryHelper.java:436) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.saveAttachments(WSIFOperation_ApacheAxis.java:3521) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.populateOutMsgParts(WSIFOperation_ApacheAxis.java:1403) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.buildResponseMessages(WSIFOperation_ApacheAxis.java:1303) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.invokeAXISRPCStyle(WSIFOperation_ApacheAxis.java:1815) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.invokeRequestResponseOperation(WSIFOperation_ApacheAxis.java:1613) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.executeRequestResponseOperation(WSIFOperation_ApacheAxis.java:1083) at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:452) at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:327) at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:189) at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:601) at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:317) at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:188) at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3408) at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1836) at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75) at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:166) at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:252) at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5438) at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1217) at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke(CubeEngineBean.java:120) at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke(CubeEngineBean.java:153) at ICubeEngineLocalBean_StatelessSessionBeanWrapper0.syncCreateAndInvoke(ICubeEngineLocalBean_StatelessSessionBeanWrapper0.java:486) at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequestAnyType(DeliveryHandler.java:520) at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequest(DeliveryHandler.java:435) at com.collaxa.cube.engine.delivery.DeliveryHandler.request(DeliveryHandler.java:132) at com.collaxa.cube.ejb.impl.DeliveryBean.request(DeliveryBean.java:101) at IDeliveryBean_StatelessSessionBeanWrapper22.request(IDeliveryBean_StatelessSessionBeanWrapper22.java:479) at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:120) at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:70) at _ngDoInitiate._jspService(_ngDoInitiate.java:289) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824) at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:121) at com.evermind.server.http.EvermindPageContext.include(EvermindPageContext.java:267) at _displayProcess._jspService(_displayProcess.java:792) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330) at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:222) at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:152) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186) at java.lang.Thread.run(Thread.java:534) ". Exception: java.lang.NullPointerException Handled As: com.collaxa.cube.CubeException
    i found similar problem calling axis web service, but this web service runs on OC4J ... any suggestions what to do?
    Thanks,
    Tomas

    User,
    I'd probably try the [url http://forums.oracle.com/forums/forum.jspa?forumID=212]BPEL Forum for this one.
    Regards,
    John

  • PC Suite does not handle properly messages longer ...

    Phone: Nokia 6610i connected with infrared
    System Information from PC Suite:
    Operating system:
    Microsoft Windows XP
    Build 2600
    Service Pack 2
    Language: Italiano
    Language for non-Unicode programs: Italiano
    Locale: Italiano
    Input language: Italiano
    Nokia PC Suite:
    Version 6.82.22.0
    Language: English
    Connectivity Cable Drivers:
    Not installed
    PC Connectivity Solution:
    Version 6.43.9.0
    I have some messages longer than 160 characters and it seems that they are not handled properly:
    - The backup application stops copying messages when it finds the first long message.
    - When I browse the messages in Explorer (launched by clicking "Messages" in PC Suite) only sms up to 160 characters are shown. There are also some blank entries in place of long messages.
    I've noticed the same problem in the Italian version, I removed it and installed the English version before reporting the issue.
    Thanks

    Hi read my issue from a few days back from dave100. It seems we are having the same issue. I wroth to support but no one has got back to me. I bet they are clueless and have no idea why this is happening....Check out my attachment. Is yours the same?
    cheers.
    Dave
    Attachments:
    empty texts.txt ‏11 KB

  • WLS does not handle reusable jar with tag-files?

    I want to encapsulate some tag-files in a re-usable jar that can be included in multiple applications. According to all the documentation that I've found what I need to do is create a jar file containing:
    META-INF/taglib.tld
    META-INF/tags/myTag.tag
    where the taglib.tld contains (among other things):
    <uri>myTag</uri>
    <tag-file>
    <name>someName</name>
    <path>META-INF/tags/myTag.tag</path>
    </tag-file>
    Then I am supposed to take that jar file and put it in my web application under WEB-INF/lib,
    and in my index.jsp I can refer to <%@taglib prefix="myt" uri="myTag">
    However when I do this (on wls 12c) the application seems to deploy ok but when I try to access index.jsp I get:
    weblogic.servlet.jsp.CompilationException: Failed to compile JSP /index.jsp
    index.jsp:14:4: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
    <%@taglib prefix="tags" uri="myt" %>
    Related facts:
    1. When I deploy these projects in Glassfish it works . as I expected based on the documentation with no errors.
    2. If I copy the tag files and tld with no modification directly into the web application as:
    <my web app>/WEB-INF/taglib.tld
    and <my web app>/META-INF/tags/myTag.tag
    then it does work. However, that prevents me from packaging the tag-files as a re-usable jar.
    (Facts 1 & 2 seem to imply that the files are correct and that WebLogic is not handling the jar correctly?)
    3. I've seen suggestions that there needs to be a <taglib> entry in web.xml. I have tried this and...
    - the text I've seen on the web generates an error. It seems to need to be within a <jsp-config> entry in web.xml.
    - even with this I still get the same error.
    Does anyone have a suggestion for how to get Weblogic to handle tag-files inside a re-usable jar?
    Do you have an example jar you can point me to just to see that it works on my system?
    Is there some special configuration needed by Weblogic to tell it to handle this construct?
    And finally, the error message is saying that one of two things is wrong:
    Either:
    A) it cannot find the referenced taglib file, or
    B) the tld file failed to compile.
    Is there any way for me to find out which of these is happening? The error messages in WLS do not seem to give any more info, so I cannot easily distinguish between these possibilities.
    Thanks for your assistance.

    After 3 days of seeing this error, immediately after posting this request the problem disappeared. Sigh.
    So for now this problem is closed. If it comes back I'll re-post.

  • Lightroom 4.  dose not handle RAW files from canon 5D MK 111.

    I have purchased lightroom 4. It dose not handle RAW files from canon 5D MK 111.
    I have downloaded and ran the suggested file from Adobe, but still no luck.
    Anyone have the answer?

    The initial release of Lightroom 4 doesn't handle the 5d mk 3 files because of when the camera was released.  You can either wait for the 4.1 release, or you can download the 4.1 Release Candidate 2 at http://labs.adobe.com/technologies/lightroom4-1/.
    Technically you can also download Adobe's DNG converter, but that just adds another program to the situation.

  • Why do I get a "NullReferenceException was not handled by user code" error in one situation but not in the other?

    We are using Sharepoint 2010 and Infopath 2010.  In my form, I have a Managed Metadata field that I need to test for a Null value.  I found, with the help of this forum's participatns, that a [field]_Changed event for one MMD field runs multiple
    time because of the underlying XML elements (Terms, TermInfo, TermName, TermId).  So I'm trying to figure out how to test the XML to see when the TermName has a value.  By doing this, I hope to limit when the additional code in my form runs, i.e.
    I'll only trigger it when TermName is not null. 
    Just to test for null/empty (before doing anything that calls the addtional code) when I run this code, it completes correctly but always shows a message box:
    Dim strTest As String = Me.CreateNavigator.SelectSingleNode("/pr:properties/p:properties/documentManagement/ns2:h2b59c4ae4144c01973b1d8571d217ad", Me.NamespaceManager).InnerXml
                If String.IsNullOrEmpty(strTest) Then
                Else
                    MessageBox.Show("This is the value of the States InnerXML   " & strTest)
                End If
    But when I run this code, I get a "NullReferenceException was not handled by user code.  Object reference not set to an instance of an object" at the "Dim strTest..." line:
       Dim strTest As String = Me.CreateNavigator.SelectSingleNode("/pr:properties/p:properties/documentManagement/ns2:h2b59c4ae4144c01973b1d8571d217ad/pc:Terms/pc:TermInfo/pc:TermName", Me.NamespaceManager).InnerXml
                If String.IsNullOrEmpty(strTest) Then
                Else
                    MessageBox.Show("This is the value of the States InnerXML   " & strTest)
                End If
    Can any one explain why drilling down like this gives me this error?  And can you tell me how to get around it so I can limit how many times the code in my Infopath form needs to run?
    Thanks in advance.  Carol.

    Never mind, I think I've got it figured out.  When I do it this way, I get to the If Not...Nothing at the correct time. Thanks for sending me down the correct path, Scott. Carol.:
    Dim
    firstStr As
    String =
    String.Empty         
    Dim xNav
    As XPathNavigator = MainDataSource.CreateNavigator()
    Dim xFirst
    As XPathNavigator = xNav.SelectSingleNode("/pr:properties/p:properties/documentManagement/ns2:h2b59c4ae4144c01973b1d8571d217ad/pc:Terms/pc:TermInfo/pc:TermName",
    Me.NamespaceManager)
    If
    Not xFirst
    Is
    Nothing
    Then               
    Dim strxFirst
    As
    String = xFirst.InnerXml
                    MessageBox.Show(
    "Value of InnerXML   " & strxFirst)
    Else
                    MessageBox.Show(
    "Empty or Null")           
    End
    If

  • An exception of class nilobjectexception was not handled (Photoreflect)

    Trying to download photos via Photoreflect.com photo publisher. As soon as I get ready to add photos to a gallery I get a pop up "An exception of class nilobjectexception was not handled. The application must shut down." Tried restart of the computer. Uninstalled and reinstalled the publisher, deleted the Pub data settings file. Still won't work. Thanks in advance for any ideas.
    Rich

    Contact the developer of photoreflect as there is a problem with their code. There may be an update for their application.

  • An exception of class OutOfBounds Exception was not handled

    When starting a vodafone application for my Merlin 3g card I get a failure message: "An exception of class OutOfBounds Exception was not handled. Application must shut down"
    I unintentionally deleted an info.plist file when trying to get rid of Apple´s latest WWAN update. Could this be the reason? And how to get back the info.plist file?
    Thank you
    MacBookPro   Mac OS X (10.4.8)  

    I finally managed to find an Info.plist on the web. I managed to copy it to the IOSerialFamily.kext file and restarted.
    Upon startup I was told that the IOSerialFamily.kext was not installed correctly and cannot be used.
    This is the content I used:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>English</string>
    <key>CFBundleExecutable</key>
    <string>IOSerialFamily</string>
    <key>CFBundleGetInfoString</key>
    <string>Apple Computer, Inc 2005-01-12 IOKit Serial Port Family</string>
    <key>CFBundleIdentifier</key>
    <string>com.apple.iokit.IOSerialFamily</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>IOKit Serial Port Family</string>
    <key>CFBundlePackageType</key>
    <string>KEXT</string>
    <key>CFBundleShortVersionString</key>
    <string>9.0</string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>9.0.0d30</string>
    <key>IOKitPersonalities</key>
    <dict>
    <key>IOSerialBSDClient</key>
    <dict>
    <key>CFBundleIdentifier</key>
    <string>com.apple.iokit.IOSerialFamily</string>
    <key>IOClass</key>
    <string>IOSerialBSDClient</string>
    <key>IOProbeScore</key>
    <integer>1000</integer>
    <key>IOProviderClass</key>
    <string>IOSerialStream</string>
    <key>IOResourceMatch</key>
    <string>IOBSD</string>
    </dict>
    <key>IOSerialBSDClientSync</key>
    <dict>
    <key>CFBundleIdentifier</key>
    <string>com.apple.iokit.IOSerialFamily</string>
    <key>IOClass</key>
    <string>IOSerialBSDClient</string>
    <key>IOProbeScore</key>
    <integer>1000</integer>
    <key>IOProviderClass</key>
    <string>IOSerialStreamSync</string>
    <key>IOResourceMatch</key>
    <string>IOBSD</string>
    </dict>
    </dict>
    <key>OSBundleCompatibleVersion</key>
    <string>1.0.4</string>
    <key>OSBundleLibraries</key>
    <dict>
    <key>com.apple.kpi.bsd</key>
    <string>8.0.0</string>
    <key>com.apple.kpi.iokit</key>
    <string>8.0.0</string>
    <key>com.apple.kpi.libkern</key>
    <string>8.0.0</string>
    <key>com.apple.kpi.mach</key>
    <string>8.0.0</string>
    <key>com.apple.kpi.unsupported</key>
    <string>8.0.0</string>
    </dict>
    </dict>
    </plist>
    Any help what I did possibly wrong?

  • Performance issue is most probably caused by the fact that IE can not handle such amount of requests ? is it ?

    Hi,
    I'm running web applications and there is performance issue is most probably caused by the fact that IE can not handle such amount of requests that are forwarded to the server at the same time.
    Data:
    On IE(10) – search variety 11- it takes a long time (about 25 seconds for response) .
    in general, the responding time of "search variety" in IE is much longer than Chrome.
    IE - see:http://screencast.com/t/kSeT3hC2mRfV
    Chrome see:http://screencast.com/t/NYf6fskU
    Why? any solution ?
    Thanks,

    Hi,
    without a link to your site (so we can use the same tools mentioned above)... we can only guess.
    these are peer to peer support forums... your favorite web search engine will help you to learn about web development.
    display the Developer tool console in each browser to view the suppressed error messages.
    All modern browsers support the performance api or your can use the Networking tab to view the latency metrics for the site.... commonly you may be using meta directives for caching instead of server headers or you have different settings between browsers
    which determine how long resources are cached. Commonly, IE has a different security model to other browsers... ensure that you are using the Default IE security zone settings.... Actions like innerHTML go through a sanitization process to remove script content...
    Commonly AJAX calls are made during the onload event...
    Please post questions about web site development to the IE Web Developer forum. Include with your questions a link to your website or a publicly accessible mashup that shows your issue.
    Questions regarding Internet Explorer 8, 9 and 10 and Internet Explorer 11 for the IT Pro Audience. Topics covered are: Installation, Deployment, Configuration, Security, Group Policy, Management questions. If you are a consumer looking for answers or to
    raise a question, it's highly recommended you head on over to http://answers.microsoft.com
    Rob^_^

  • Safari not handling Javascript correctly

    I am currently trying to learn how to put Javascript into web pages by reading through the tutorial at http://www.w3schools.com/js/default.asp
    However it seems that Safari is not handling the Javascript correctly when it loads some of the examples:
    http://www.w3schools.com/js/tryit.asp?filename=tryjs_confirm
    http://www.w3schools.com/js/tryit.asp?filename=tryjs_prompt
    However they load correctly in FireFox.
    Why?
    Is there something I can do to get Safari to handle the Javascript correctly?
    Or is there a document somewhere describing how Safari handles Javascrip so that I know how to change the Javascript so that it loads correctly in Safari?

    Okay, I click the button labeled "Display a confirm box" on http://www.w3schools.com/js/tryit.asp?filename=tryjs_confirm
    A Dialog box appears and I click "OK".
    In Safari the button labeled "Display a confirm box" dissapears.
    In FireFox the button labeled "Display a confirm box" dissapears and is replaced with "You pressed OK!"
    Similarly, in the second example, Safari just get's rid of the button, where FireFox replaces it with the appropriate text.

  • RH HTML 10 - My RH7 arabic project not handling italic tags in RH10

    After upgrading a project from RH7 to RH10, the Webhelp output for Arabic is not handling italic text that was accepted previously. Image below shows "boxes" circled in red on the left for RH10 output, vs. good RH7 output circled on the right.
    I'll be grateful for any help / suggestions.
    Becky Lormor

    First Rh does not natively support left to right languages. There is information on my site and at http://www.wvanweelden.eu that may help.
    Rh8 changed from HTML to XHTML. In Tools > Options you can revert the HTML, perhaps that will help. Note that setting applies to all projects.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

Maybe you are looking for