X300 XP build - trackpoint locks up

I rebuilt the X300 with XP SP2, it was easy with good documentation from Lenovo and the system update tool.
I have 2 bugs hoping someone may have some information on:
If I connect a USB WWAN card the trackpoint stops responding, if I connect an external mouse its fine but the trackpoint wont work again until I reboot. Anyone come across this?
Other bug is the integrated camera, it gives a " Max Headroom" take on video :-) picture is really jerky. I tried Netmeeting and Office Communicator 2005 and both behaved similarly
appreciate any help..

Hello Mcardgl,
I think the USB WWAN card may be related to the AT&T software overwriting the trackpoint driver (assuming you are using AT&T WWAN). I believe this is fixed with the latest version of the comm manager software:
http://www.wireless.att.com/businesscenter/solutions/wireless-laptop/software.jsp#download
I have not run into the other issue around Office Communicator personally, however I have heard the 2007 version fixes this.

Similar Messages

  • XPATH building assistant locks up in JDev 10.1.2 beta 3

    When I attempt to use either the XPATH building assistant or XPATH expression builder in JDev 10.1.2 beta 3 it locks up JDev apparently going into a tight loop using 99% of the CPU and it won't come out. I end up killing the process. I've tried several different techniques to work around the lock up but can't seem to bypass it.
    The building assistant locks up almost right away, while the expression builder waits until I'm finished constructing the expression.
    I can't get very far with this condition. Any help would be appreciated.

    Hi John ,
    Thanks for sending your project accross.
    I tried to reproduce it but couldn't due to missing XSDs and wsdls used by your project.
    I can see some schema import from URL in your project WSDL :
    <import namespace="http://www.eds.com/ns/iC"           schemaLocation="http://localhost:9700/orabpel/xmllib/providerEnrollment.xsd"/>
    and
    a online wsdl :
    http://W2ZZZZIDNN:9700/orabpel/default/licenseReceipt/licenseReceipt?wsdl
    Without these artifacts, process doesn't find the variable definition.
    I have few suggestions :
    1. Make sure you have XSDs in right place and the XSDs are valid.
    2. Make sure your engine is started otherwise those XSDs won't be accessible.
    3. Go to Jdeveloper->Tools->Preferences->Web Browser and Proxy [Set it right] but if it localhost then I don't think it is required.
    If possible pass those XSDs as well to me so that I can verify that those XSDs are working fine with our tool.
    Please pass me the WSDL as well.
    HTH.
    Thanks,
    rakesh

  • X200 trackpoint locks up

    I have a x200 with Windows XP installed.  When I put the computer into standby or when it is on battery and shuts itself off to perserve power the trackpoint locks up and the only way I can get it to work is to reboot.  This only happens to the trackpoint.  If I have an external mouse attached, the mouse works -- trackpoint won't
    Anyone know of any solutions?
    let me know
    thanks
    Karl

    Hello Mcardgl,
    I think the USB WWAN card may be related to the AT&T software overwriting the trackpoint driver (assuming you are using AT&T WWAN). I believe this is fixed with the latest version of the comm manager software:
    http://www.wireless.att.com/businesscenter/solutions/wireless-laptop/software.jsp#download
    I have not run into the other issue around Office Communicator personally, however I have heard the 2007 version fixes this.

  • 2 uc500 tasks? building door locks and door phone?

    Hello,
    Every install seems to present unique requsts from each client.
    Client has a uc540.  Currently they have a keyfob door lock system at the front and back doors of the building.  They have a phone/speaker at the front door.  Appears to be avaya - but so not sure.  This is all tied into an antiquated phone system the uc540 will replace.
    When a person arrives at the front door, they hit the intercom.  This rings 3 different extensions.  Then the user at the phone can bunch a sequence or hard button on the phone to unlock the front door.
    Anyone provided a solution like this for the uc540?  I've seen some remote door locks that operate thru SIP a year or so ago I believe.  I know how to configure a "lobby" phone that when picked up, dials a dedicated extension and immediately goes 2-way intercom.   I imagine there would be something along the same lines where a picked up handset could auto-dial a parallel hunt group?
    Thanks

    Hello,
    I would reference this document: https://supportforums.cisco.com/docs/DOC-9496
    That doc discusses a door phone configuration with the UC. This requires CLI to configure the door phone as a SIP endpoint.
    Thanks,
    -john

  • Cross system object lock -how to build up lock entries for existing request

    Hello,
    we implemented ChaRM for some years and  intend to activate cross system object lock (CSOL), now.
    But there are a lot of existing transport requests, which have not been imported to productive system, yet.
    It would be very helpful to create lock entries for objects, which are assigned to those transport requests.
    Does anyone know any standard report for this purpose?
    Thanks a lot for any hint.
    Best regards
    Horst

    If anyone else needs that feature:
    Report TMW_TRKORR_LOCK_UPDATE (executed in satellite system) will lock the objects of a transport request in solution manager system.

  • How to build a lock escalation tree?

    Hello!
    Concurrent users lock many rows in different tables. Sometimes
    one session waits to lock row, which is locked by another
    session.
    Locks are made by SQL statements.
    I would like to present tree of SQL statements which lock (first
    level) and as children SQL - statements waiting for release lock
    by their parents.
    It would be very helpul in finding dependencies and app places,
    where deadlock can occur.
    Do you know system SQL statement or tool, which could produce
    result I need?
    TIA,
    Witek

    I modified the script I posted earlier to include the waiters SQL
    statement. You'll have to verify that this is what you're looking
    for and that it's correct. I did some simple testing and it
    seemed to work.
    set term off;
    set null ~;
    set arraysize 10
    drop table lock_holders;
    drop table dba_locks_temp;
    create table dba_locks_temp as select * from dba_locks;
    create table lock_holders as
    select w.session_id waiting_session,
    h.session_id holding_session,
    w.lock_type,
    h.mode_held,
    w.mode_requested,
    w.lock_id1,
    w.lock_id2,
    a.sql_text sql_stmnt
    from dba_locks_temp w, dba_locks_temp h, v$session s, v$sqltext
    a
    where h.blocking_others = 'Blocking'
    and h.mode_held != 'None'
    and h.mode_held != 'Null'
    and w.mode_requested != 'None'
    and w.lock_type = h.lock_type
    and w.lock_id1 = h.lock_id1
    and w.lock_id2 = h.lock_id2
    and w.session_id=s.sid(+)
    and s.sql_address = a.address
    and s.status = 'ACTIVE'
    and s.type !='BACKGROUND'
    order by a.address
    ,a.piece;
    commit;
    drop table dba_locks_temp;
    insert into lock_holders
    select holding_session, null, 'None', null, null, null, null,
    null
    from lock_holders
    minus
    select waiting_session, null, 'None', null, null, null, null,
    null
    from lock_holders;
    commit;
    /* set charwidth 17; */
    set wrap off;
    set term on;
    select substr(lpad(' ',3*(level-1)) ||
    substr(waiting_session,1,10),1,20)
    waiting_session, sql_stmnt
    from lock_holders
    connect by prior waiting_session = holding_session
    start with holding_session is null;
    set term off;
    drop table lock_holders;
    set wrap on;
    set term on;
    Here's the output it generated from a test I ran:
    WAITING_SESSION SQL_STMNT
    9 ~
    11 update emp set acct_segment1='1111111',
    acct_segment2='2222222',
    11 acct_segment3='3333333',
    acct_segment4='4444444', acct_segment5
    11 ='5555555', acct_segment6='6666666' where
    employee='AGLICK'
    If you wanted you could also add username and osuser from
    v$session to get the users Oracle userid and their network id.

  • Building Lock In Amp in FPGA

    Hello,
    I'm interested in building Digital Lock In Amplifier with NI 5733R. I read this and realized it might help me.
    A Digital Downconverter for the NI 5734
    http://www.ni.com/example/31525/en/
    But I stucked at certain points.
    1. How to insert an external TTL signal into the DDS Compiler? Shouldn't I do this for measuring phase between the signal and the Reference TTL?
    2. What it means the "Phase increment programmatically" in the DDS Compiler IP Pallette?
    Do you guys have some ideas or suggestions?
    Best Regards
    CTA, CLA
    SuninCNS

    Lackey wrote:
    > i'm quite new to LabVIEW and am trying to use the sr830 instrument drivers
    > to control the Lock-in from a computer, but the instrument drivers don't
    > seem to want to send or recieve any data. if anyone who is more proficient
    > in VI programming couild help me out with this, i would greatly appreciate
    > a response. thanks.
    Are you using the instrument driver downloaded from Nat Inst ??
    If you are this thing looks terrible, but should work.
    You could try building a simple VI to see if all the communication is working
    properly.
    Check to make sure you have the correct GPIB address and that all the cables
    cards etc are properly connected and working.
    Kevin KEnt
    Attachments:
    Kevin.Kent.vcf ‏1 KB

  • MSI P965 Neo PCI-e lock?

    Hi!
    could any of you tell me whether or not the MSI P965 Neo-F board has an option to lock the PCI-e clock?
    My plan is to tweak the FSB to 333 (which implicates a 333/266 = 25% overclock), which I've read is more then easy to obtain with a Core 2 Duo 6300. I just don't wanna ruin the rest of the system by getting a PCI-e busspeed of 125.
    So I'm really curious if this board has either a build-in lock @ 100/101, or some option in the BIOS to lock the bus.
    Thanks!

    well you could just try raising your fsb to 333Mhz and see what happens. done it with mine no problems at all no other tweeking either. lots n lots of people have done the same without a problem.
    check out the overclocking and modding forum here, n see for yourself.

  • Locking when using a component as an object in the application scope...

    I have a component that I am building right now that hold
    application settings that are stored in a database table. The
    settings are maintained in a structure "variables.settings" within
    the component and can only be accessed by get and set methods. I
    use the following to create the instance of the object:
    <cfset application.settings =
    createObject("settings","component").init() />
    Now when getting a setting I do not think locking is needed
    as its just reading the value and I am not really concerned with a
    race condition...
    But when using the set method which will update the value of
    the setting.... should I be locking that as technically the object
    is in a shared variable scope? Or is it safe because its within the
    cfc/object?
    If locking is needed, would I need to lock when using the set
    method? or can I just build the lock into the set method so that
    its always there?

    To disagree with craigkaminsky, I think you only need to lock
    if you are
    concerned about race conditions and what could happen during
    a 'dirty
    read' and|or conflicting writes.
    A lot of developers have an old impression of ColdFusion that
    one *must*
    lock all shared scope variable access to maintain a stable
    application.
    This dates from the ColdFusion 4.5 days where there where
    bugs in
    ColdFusion that could cause memory leaks and eventual
    application
    instability if one did not lock shared scope reads and
    writes. This has
    long been fixed, but the advice persists.
    So now it is only a matter of your data and what would happen
    if one
    user read an old value while it was in the process of being
    updated by
    another user. Or could two users be updating the same value
    at the same
    time and cause conflict. If either of those two statements
    are true,
    then yes you should use locking as required by your
    application.
    But if they are both false and it does not matter that user A
    might get
    the old value microseconds before user B changes it. Or there
    is no
    concern with user A changing it once and user B changing it
    again to
    something different moments later without knowing the user A
    has already
    changed it. Then locking is probably unnecessary.
    There can be a cost to over locking shared variable writes
    and|or reads.
    Every time one creates a lock, one is single threading some
    portion of
    ones code. Depending on how the locking is done, this single
    threading
    may only apply to individual users or it may apply to every
    single user
    on the entire server. Either way, too much of this in the
    wrong places
    can create a significant bottle necks in ones application if
    too many
    user requests start piling up waiting for their turn through
    the locked
    block of code.

  • Flash Builder crash with error log

    I started a trial FB 4.6 a couple of weeks ago. Yesterday FB started crashing arbitrarily while simply using the editor. Error log entries (from workspace/.metadata/.log) like the snippet below immediately precede the crash. FB is open from anywhere between 10 seconds to 20 minutes before crashing.
    Crashing: the whole Flash Builder UI locks up and needs to be force-quit.
    Problems seemed to start after I did these new things; installed Android USB driver for my device, debugged on the device, and also tried the Profile feature. Doing those things seemed to work fine, and I otherwise don't know what they'd have to do with the message(s like the one) below. At crash time, the file noted is not there, instead there is single file:
    "...\.metadata\.plugins\com.adobe.flexbuilder.codemodel\SwcCache\swcPaths.cache".
    However as I browse the .plugins folder looking for files related to this problem, I've seen folders/files suddenly appear and disappear, not related to any build process.
    I've tried rebooting. I'm going to try changing workspaces. Here's a log snip:
    ...  !ENTRY com.adobe.flexbuilder.project 4 43 2012-01-26 11:32:18.858 !MESSAGE Cannot load nonexistent library swf C:\stuffo7\FlexMoreWorkspace\.metadata\.plugins\com.adobe.flexbuilder.codemodel\SwcCache\ mobile.swc-293353047\library.swf for swc C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\frameworks\themes\Mobile\mobile.swc !STACK 0 java.lang.Exception      at com.adobe.flexbuilder.project.internal.FlexProjectCore.createErrorStatus(FlexProjectCore. java:1019)      at com.adobe.flexbuilder.project.internal.FlexProjectCore.log(FlexProjectCore.java:867)      at com.adobe.flexbuilder.util.logging.GlobalLogImpl.log(GlobalLogImpl.java:56)      at com.adobe.flexbuilder.util.logging.GlobalLog.log(GlobalLog.java:41)      at com.adobe.flexide.designitems.loaders.LibrarySWCLoader.loadNextSWF(LibrarySWCLoader.java: 111)      at com.adobe.flexide.designitems.loaders.LibrarySWCLoader.access$5(LibrarySWCLoader.java:96)       at com.adobe.flexide.designitems.loaders.LibrarySWCLoader$SwcLoaderCallbacks.SWFLoaded(Libra rySWCLoader.java:218)      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)      at java.lang.reflect.Method.invoke(Unknown Source)      at com.adobe.flexide.playerview.DesignCall.invoke(DesignCall.java:96)      at com.adobe.flexide.playerview.PlayerListenerHost.notifyDesignCall(PlayerListenerHost.java: 173)      at com.adobe.flexide.playerview.PlayerListenerHost.callFunction(PlayerListenerHost.java:47)       at com.adobe.flexide.embeddedplayer.PlayerNativeCallbacks.CallJavaFunction(PlayerNativeCallb acks.java:48)      at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method)      at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2530)      at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3752)      at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2696)      at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2660)      at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2494)      at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:674)      at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)      at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:667)      at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)      at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)      at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)      at java.lang.reflect.Method.invoke(Unknown Source)      at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)      at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)      at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
    Message was edited by: tedalde2 (fix broken formatting)
    Message was edited by: tedalde2 (define crashing)

    Apparently related to switching workspaces... the error log identifies a path to an old workspace I changed out of weeks ago. I created a new workspace and moved the project (just the source, etc, not the settings) into it. been running fine for a while now... though funny how this problem didn't show up until yesterday.

  • App audio plays while Kindle Fire screen is locked

    I am hoping someone has found a solution to this issue:
    If I put my Kindle Fire to sleep using the power button, when I wake it back up, the app's audio begins playback while the screen is still locked.
    All the other soft keys on the device control the app and the audio as expected.
    As far as I can tell, it seems that when the Event.ACTIVATE fires, the app runs and Amazon just tosses a screen-lock overlay on top. My app is running at full frame rate (and playing audio) underneath the screen lock, but there are no events I can listen for to tell when the unlock happens.
    I'm probably missing something, but shouldn't there be an event type in the NativeApplication class that we can listen for? Everything I've tried so far doesn't work.
    I haven't submitted this to Amazon yet, but it seems likely to be rejected. Any ideas appreciated!

    Yeah, this is a problem I had to solve about a year ago. Android's guidelines suggest you should pause your game on a DEACTIVATE event and then require user input, like a tap on a pause screen, before resuming your app. So that's what I ended up doing. I built a semi-transparent pause screen that overlays the entire screen and app, and then unpauses on the next tap. And I also had to handle resizing the pause screen when the app auto-orients.
    For audio I'd originally built a sound class that listened to ACTIVATE and DEACTIVATE events and would pause themselves accordingly, but I ended up tying their pause/unpause mechanism to the app's pause resume.
    Oh, and you will probably want to build a lock parameter into your pause method, so that in some situations the only code that can unpause the app is the code that passes the same lock/unlock string. Otherwise, you might find your app resuming when it wasn't suppose to.
    Hope that helps. Oh, and testers with the Samsung App Store sometimes think they are designers and sometimes may reject your app because they say the pause screen should have gone away automatically. Don't listen to them. Try filing a petition explaining your app is following Android guidelines or just resubmit the app and hope for a different tester. And one of the first tests a Samsung tester does is power off and on the screen and see if your app can handle it correctly. So yeah, they are tougher than Amazon.
    But warning. The worst is Google Play. If one app goofs up and inadvertently violates one of their guidelines they may just ban your entire account - nevermind that you may have a 100 other apps published through that account. And they will tell you nothing. Not the name of the app that caused the violation, or even what the violation was - just a "please read our guidelines again." And it could be something as seemingly innocuous as key word stuffing in the apps description - but you won't know what caused it. Sorry, now I'm venting a little. But if you need to publish a large number of apps consider finding a way to spread them out over multiple accounts if you can to protect yourself.

  • [AS][CS5] Multiple action folder scripts only 1 Indesign app

    Hi,
    With this post, I would like to ask a question.
    If you use multiple action folder scripts that processes multiple files using only 1 Indesign application, can problems occure when multiple files are submitted at the same time?
    How does applescript/indesign handles multiple use of the same application? Will an error be trown? Or do I have to build a check mechanisme to know if the app is "in use"?
    Has the Indesign application a property "busy" or "In use"?
    Kind regards
    John

    Hi Mark,
    Thanks for your feedback.
    If build a lock/unlock mechanisme in my folder action script to prevent simultaneous use of Indesign. In my script I write the current application state into a textfile.
    John

  • Why emails are open

    1- why emails are open in iphone  emails are easily accessble by user or else ?
         i think it shoud be open with a passcode .....
    2- pls add an apple folder with pass code lock -in which user can hide some of apps not to be seen by others ....  OR
       apps like whatsapp , wechat , viber, line should have in built passcode system no one can access the chats /massages other then the user ...

    You can passcode lock the entire phone. 3rd party app developers can build passcode locks into their apps if they like.

  • Deleting wbs in transaction CJ20N.

    Hai all,
       I copied a project (T.code is "CJ20N").Now when iam deleting the WBS for OFFSHORE work  from the project (source project) ,it is going into the dump giving a popup (NODE code = 0000077).It is going into dump in the function
    module 'AC_FLUSH_CALL'. below is  the source code where it is going into dump some where raise exception "2".
    000120     CALL FUNCTION 'AC_FLUSH_CALL'
    000130          EXPORTING
    000140               SYSTEM_FLUSH = 'X'
    000150               CALLED_BY_SYSTEM = CALLED_BY_SYSTEM
    000160          IMPORTING
    000170               MESSAGE_NR   = sysubrc
    000180               MESSAGE_TEXT = SY-MSGLI.
    000190
    000200     sy-subrc = sysubrc.
    000210
    000220     CASE SY-SUBRC.
    000230       WHEN 0.
    000240       WHEN 1.
    000250   RAISE CNTL_SYSTEM_ERROR.         "// system_error
    000260       WHEN 2.
         >      RAISE CNTL_ERROR.        "//method_call_error
    000280       WHEN 3.
    000290     RAISE CNTL_ERROR.     "//property_set_error
    000300       WHEN 4.
    000310         RAISE CNTL_ERROR.   "// property_get_error
    000320       WHEN OTHERS.
    kindly send me solution as soon as possible.
    Thanks in advance.
    kiran

    CJ20N uses the same user exits as the standard SAP PS t-codes, but you must ensure that you do the change for all objects. ie: if you are adding in a custom auth object for the project definition you will use the CNEX0002 user exit. For standard SAP PS t-codes it is sufficient to stop there, but for project builder (and most enjoy transactions) you will need to ensure the auth object also looks at the WBS elements as well. So you may need to use function module EXIT_SAPLCNAU_001 PS Customer Exit: Project Definition Authorizaton as well as EXIT_SAPLCNAU_002 PS Customer Exit WBS Element Authorization as well as the EXIT_SAPDBPSJ_001 PS Customer Exit Autorization Check in the Logical Database PSJ
    to ensure that all PS items in Project Builder are locked down.

  • .itl file is locked error after installing new build - iTunes won't open

    After upgrading to the new build itunes won't open. I receive an error message "The iTunes Library .itl file is locked, on a locked disk, or you do not have write permission for this file." When I check permissions I have full control. I tried uninstalling all apple components - iTunes, Quicktime, apple updater - rebooting and then reinstalling but the same error message comes up when I try to start itunes.

    Even after uninstalling the .itl file remained in my itunes music folder. I deleted this file after uninstalling again and then reinstalled and the issue was resolved.

Maybe you are looking for

  • Steps to upgrade 31 to 35

    Can anyone provide the actual technical steps to perform the upgrade from BW 31 to BW35....I have read the upgrade manual and it seems fairly clear but would like someone who has actually done it successfully.... I have activate business content, wil

  • Empty PDF File

    I am having a problem opening a PDF file. I downloaded a 3MB PDF file from Smartsheet and saved it onto my hard drive. When I open the saved downloaded PDF file it is blank and states in a box "the selected document cannot be opened". Why is the cont

  • TS3694 trying to update to IOS5 via itunes but gives 3002 error message?

    ive been trying to update my iphone 4 running ios4.3 but ios 6 is having none of it, so i thought id go to ios5 first as i read that you cant jump straight to 6. I manually downloaded the software and starting to extract the old version of software v

  • Apps store blank

    My wife's iPad2 suddenly only shows a blank screen when going into "purchased" Restrictions are turned OFF HELP!

  • What is micro switch

    What is micro switch? How can I input signal generated from micro switch to NI DAQ system?