Equium A210 hangs on Post when any key is pressed

Hi, I have a Equium A210-1C4 that has an odd error, when I boot the machine and don't touch the keyboard it loads into Windows fine and everything works as it should.
If the machine shuts down unexpectdley,on restart it shows the common selection of safe mode and so on with the countdown timer, if I try and select one of the other options with the arrow key the timer stops and the machine hangs (as soon as I press any key)  I then have to power it off and allow it to boot without touching anything in order to get it working again.
The same thing occures if I try and press  F8 on boot, it just hangs.  
I can get into the BIOS settings and also select the boot order settings. The keyboard is functioning well within windows (no stuck keys) and I have reloaded the O/S and flashed the BIOS to try and resolve this.
The Laptop had Vista loaded origianlly but now is Win 7 - both O/S's have had the same issue  
Any ideas would be great 
Thanks

Since you traded keyboards and got the same results when booting into Windows, it sounds like a Windows issue. Running the Recovery disks would reimage the hard drive and probably fix the problem. However it would wipe out all of the programs, files and settings that you installed and set since you got the computer. It would fix the problem but could cost you a lot in time and preparation by having to backup all of your files, music and pictures. Plus you may need to let some of your program publishers know that you are doing a reimage so you can get your software reinstalled without having to pay a second time. Depending how much stuff you have to backup, this could be a very time consuming process to fix this one problem.

Similar Messages

  • The 'caps lock indicator immediately truns off when any key is pressed.

    I have a 6 week old system.  When I press(turn on) the 'CAPS LOCK' key it does lite up .  However it reverts to lower case - and lite turns off, immediately when ANY OTHER key is touched on the keyboatd.
    I ran the anti virus program  and it appeared to be fixed.  However it does the same thing today, even after I run the anti VIrus program(s) again.
    Help!?.........

    Hello alrprairie,
    I understand you are having issues with your CAP LOCKS working on your computer. I would be happy to assist you, but first I would encourage you to post your product number for your computer. I am linking an HP Support document below that will show you how to find your product number. As well, if you could indicate which operating system you are using. And whether your operating system is 32-bit or 64-bit as with this and the product number I can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please re-post with the requested information and I would be happy to provide you with assistance. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Default button being clicked multiple times when enter key is pressed

    Hello,
    There seems to be a strange difference in how the default button behaves in JRE 1.4.X versus 1.3.X.
    In 1.3.X, when the enter key was pressed, the default button would be "pressed down" when the key was pressed, but wouldn't be fully clicked until the enter key was released. This means that only one event would be fired, even if the enter key was held down for a long time.
    In 1.4.X however, if the enter key is pressed and held for more than a second, then the default button is clicked multiple times until the enter key is released.
    Consider the following code (which is just a dialog with a button on it):
    public class SimpleDialog extends JDialog implements java.awt.event.ActionListener
    private JButton jButton1 = new JButton("button");
    public SimpleDialog()
    this.getContentPane().add(jButton1);
    this.getRootPane().setDefaultButton(jButton1);
    jButton1.addActionListener(this);
    this.pack();
    public void actionPerformed(ActionEvent e)
    if (e.getSource() == jButton1)
    System.out.println("button pressed");
    public static void main(String[] args)
    new SimpleDialog().show();
    When you compile and run this code under 1.3.1, and hold the enter key down for 10 seconds, you will only see one print line statement.
    However, if you compile and run this code under 1.4.1, and then hold the enter key down for 10 seconds, you will see about 100 print line statements.
    Is this a bug in 1.4.X or was this desired functionality (e.g. was it fixing some other bug)?
    Does anyone know how I can make it behave the "old way" (when the default button was only clicked once)?
    Thanks in advance if you have any advice.
    Dave

    Hello all,
    I think I have found a solution. The behaviour of the how the default button is triggered is contained withing the RootPaneUI. So, if I override the default RootPaneUI used by the UIDefaults with my own RootPaneUI, I can define that behaviour for myself.
    Here is my simple dialog with a button and a textfield (when the focus is NOT on the button, and the enter key is pressed, I don't want the actionPerformed method to be called until the enter key is released):
    package focustests;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.util.*;
    public class SimpleDialog extends JDialog implements java.awt.event.ActionListener
    private JButton jButton1 = new JButton("button");
    public SimpleDialog()
    this.getContentPane().add(new JTextField("a text field"), BorderLayout.NORTH);
    this.getContentPane().add(jButton1, BorderLayout.SOUTH);
    this.getRootPane().setDefaultButton(jButton1);
    jButton1.addActionListener(this);
    this.pack();
    public void actionPerformed(ActionEvent e)
    if (e.getSource() == jButton1)
    System.out.println("button pressed");
    public static void main(String[] args)
    javax.swing.UIManager.getDefaults().put("RootPaneUI", "focustests.MyRootPaneUI");
    new SimpleDialog().show();
    and the MyRootPaneUI class controls the behaviour for how the default button is handled:
    package focustests;
    import javax.swing.*;
    * Since we are using the Windows look and feel in our product, we should extend from the
    * Windows laf RootPaneUI
    public class MyRootPaneUI extends com.sun.java.swing.plaf.windows.WindowsRootPaneUI
    private final static MyRootPaneUI myRootPaneUI = new MyRootPaneUI();
    public static javax.swing.plaf.ComponentUI createUI(JComponent c) {
    return myRootPaneUI;
    protected void installKeyboardActions(JRootPane root) {
    super.installKeyboardActions(root);
    InputMap km = SwingUtilities.getUIInputMap(root,
    JComponent.WHEN_IN_FOCUSED_WINDOW);
    if (km == null) {
    km = new javax.swing.plaf.InputMapUIResource();
    SwingUtilities.replaceUIInputMap(root,
    JComponent.WHEN_IN_FOCUSED_WINDOW, km);
    //when the Enter key is pressed (with no modifiers), trigger a "pressed" event
    km.put(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_ENTER,
    0, false), "pressed");
    //when the Enter key is released (with no modifiers), trigger a "release" event
    km.put(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_ENTER,
    0, true), "released");
    ActionMap am = SwingUtilities.getUIActionMap(root);
    if (am == null) {
    am = new javax.swing.plaf.ActionMapUIResource();
    SwingUtilities.replaceUIActionMap(root, am);
    am.put("press", new HoldDefaultButtonAction(root, true));
    am.put("release", new HoldDefaultButtonAction(root, false));
    * This is a copy of the static nested class DefaultAction which was
    * contained in the JRootPane class in Java 1.3.1. Since we are
    * using Java 1.4.1, and we don't like the way the new JRE handles
    * the default button, we will replace it with the old (1.3.1) way of
    * doing things.
    static class HoldDefaultButtonAction extends AbstractAction {
    JRootPane root;
    boolean press;
    HoldDefaultButtonAction(JRootPane root, boolean press) {
    this.root = root;
    this.press = press;
    public void actionPerformed(java.awt.event.ActionEvent e) {
    JButton owner = root.getDefaultButton();
    if (owner != null && SwingUtilities.getRootPane(owner) == root) {
    ButtonModel model = owner.getModel();
    if (press) {
    model.setArmed(true);
    model.setPressed(true);
    } else {
    model.setPressed(false);
    public boolean isEnabled() {
    JButton owner = root.getDefaultButton();
    return (owner != null && owner.getModel().isEnabled());
    This seems to work. Does anyone have any comments on this solution?
    Tjacobs, I still don't see how adding a key listeners or overriding the processKeyEvent method on my button would help. The button won't receive the key event unless the focus is on the button. There is no method "enableEvents(...)" in the AWTEventMulticaster. Perhaps you have some code examples? Thanks anyway for your help.
    Dave

  • Blackberry typing when no keys are pressed

    Hello,
    I have a BB Tour 9630. The problem that I am having is that every 5 seconds the letter "q" is typed on the screen without any buttons being pressed. This happens when I am using the browser, sending a text, trying to place a call and also when the blackberry is just setting on the desk. I have pulled the battery and also reset the blackberry and reloaded the software. Does anyone have any suggestions?
    Thanks,
    Ryan

    Hi and Welcome to the Forums!
    I suggest you contact your service provider for warranty evaluation.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • [SOLVED] nm-applet crashes when a key is pressed in the WEP password

    I try to connect with nm-applet to a wifi network with WEP encryption, then nm-applet asks for a password. I select the password input-box and when I press any key it crashes. This is the output:
    error in libgcrypt, file visibility.c, line 821, function gcry_md_hash_buffer: called in non-operational state
    DBG: md_enable: algorithm 1 not available
    Ohhhh jeeee: gcry_md_open failed for algo 1: Invalid digest algorithmfatal error in libgcrypt, file misc.c, line 137, function _gcry_logv: internal error (fatal or bug)
    - I have installed: libgcrypt, wireless-tools, wpa_supplicant.
    - I can connect with iwconfig.
    - Same crash running as root (su/sudo).
    A package missing? Some configuration? Thank you in advance.
    Last edited by [eXr] (2008-09-26 17:08:40)

    I have exactly the same problem here. I do not have this problem with WPA encrypted networks, though.
    EDIT: I do not have this problem when I select WEP 64/128 Hex instead of Passphrase.
    Last edited by Gringo (2008-09-25 12:38:21)

  • No key event when compose keys are pressed

    I am supporting a legacy application for Sabre which maps some of the keys differently. For example, on a French keyboard the Compose key which is used to put a ^ on top of the vowel characters is to be remapped to produce a special character called a "Change Character" that has a special use for reservation agents that use Sabre
    The problem is, the first time you press the ^ compose key there is no key event apparently because the VM figures it doesn't yet know what key to report, it is expecting you to press a character such as 'o' and then you get an 'o' with a '^' on top of it.
    If you press the ^ compose key a second time, you get the following key events:
    keyPressed
    keyTyped
    keyTyped
    keyReleased
    On the screen you will see two ^ characters appear. Currently I remap the ^ character to the "Change Character", and I suppress the second keyTyped event so that I only get one character. The problem is that the user ends up having to press the key twice to get one "Change Character."
    I have no fix for this problem because there is no key event produced when they press the ^ compose key the first time.
    By the way, this behavior appears to have been introduced with jdk 1.3. The older jdk did produce a key event the first time you pressed the compose key. I would expect that this behavior was considered to be a bug and was fixed in jdk 1.3.
    Is there some other way to detect when the user presses a compose key? If not, is it possible for future jdk releases to report a keyPressed event when a compose key is pressed? This event would not cause a character to appear on the screen, but would allow programs to detect when the compose key is pressed.
    There is already a key on the French keyboard that behaves this way. It is the key to the left of the '1' key and it has the pipe symbol on it. If you press Shift plus this pipe key, no character is produces but a keyPressed event with a keycode of 222 is produced. I merely point this out to show that there is a way to report key events whithout producing output on the screen.
    Thanks, Brian Bruderer

    I don't know if this actually helps, but it seems that you can bind an Action to a dead key like the circumflex of the French keyboard
    Keymap keymap = textPane.addKeymap("MyEmacsBindings", textPane.getKeymap());
    Action action = getActionByName(DefaultEditorKit.beginAction );
    KeyStroke key = KeyStroke.getKeyStroke(KeyEvent.VK_DEAD_CIRCUMFLEX);
    keymap.addActionForKeyStroke(key, action);I saw this on a Swing tutorial and modified it slightly. Have a look at it :
    http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html
    Chris

  • How come multiple audiotags in ebook can play all together in the last version of ibooks and ios6 while before they fade eachother when play key is pressed ?

    in ipad1 with ios5.1.1 and latest ibooks app audiotags stop the last music played when the new music starts
    in ipad3 with ios6 and latest ibooks let all the music play together with a resulting mess
    in ipad2 with ios6  ibooks fade the last tag that is playing when the play key is pressed in the new audiotag

    Gah. So It looks like the first version of the song on your iPod is the definitive version of a song (as is the case in iTunes). So in order to ensure that the version you want plays, you have to:
    1. make that the only version in iTunes (or first in the file structure)
    2. update Genius
    3. sync your iPod
    BOO. Too much work (I'm still going to do it though...)
    I would really like a feature that allowed you to specify which song would be chosen (the existing rating system would seem to be easiest).
    Another solution I thought of still requires a lot of work. This is assuming you prefer It would go something like this:
    1. Create an directory structure at the root of your library that would prioritize tracks, such as:
    a) Albums (for full length albums)
    b) Collections (for best ofs etc.)
    c) EPs (for singles or remix albums)
    e) Live Performances
    -assuming you prefer album versions over remixes over live versions, or more directly:
    a) High Priority
    b) Low Priority
    2. Place Each Album or individual tracks in their appropriate folder.
    3. Reset your iPod
    4. Sync
    The directory structure will intrinsically place higher priority versions on you iPod first, making them a priority version there. Pain in the...

  • JSlider -- catch when arrow keys are pressed

    Hi,
    With a JSlider, when it has focus and a user presses the left/right arrow keys ..the thumb on the slider is moved to a new value. I tried adding a keyListener but that didnt work...how can I catch when a left/right arrow key is pressed??
    thanks

    You can take over the binding, but you will be responcible for the action....
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.table.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    public class KeyMappingEx extends JFrame
    JSlider slid;
        public KeyMappingEx()
            super( "Key Mapping Ex");
            setDefaultCloseOperation( EXIT_ON_CLOSE );
            slid  = new JSlider( 0, 100, 50 );
              slid.setMajorTickSpacing( 20 );
            slid.getInputMap( ).put( KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT, 0, false),
                                       "RIGHT_ARROW" );
            slid.getActionMap().put( "RIGHT_ARROW", new RightAction(  ) );
            slid.getInputMap( ).put( KeyStroke.getKeyStroke(KeyEvent.VK_LEFT, 0, false),
                                       "LEFT_ARROW" );
            slid.getActionMap().put( "LEFT_ARROW", new LeftAction(  ) );
            setContentPane( slid );
            pack();
            setLocationRelativeTo( null );
            setVisible( true );
        public static void main( String[] args )
            try
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            catch( Exception e )
            new KeyMappingEx();
        class RightAction extends  AbstractAction
            public void actionPerformed(ActionEvent e)
                System.out.println("RIGHT ARROW");
                slid.setValue( slid.getValue() + slid.getMajorTickSpacing() );
        class LeftAction extends  AbstractAction
            public void actionPerformed(ActionEvent e)
                System.out.println("LEFT ARROW");
                slid.setValue( slid.getValue() - slid.getMajorTickSpacing() );
    }

  • E7 restarting when any number is pressed

    So, two days after the Symbian Anna update, my E7 has developed a new bug. 
    Whenever we go to the dialling screen, pressing ANY number on the onscreen number pad results in the phone restarting. In disbelief, I've let the phone restart, made sure no programs were open, and that the phone had finished starting up before going to 'call' and pressing numbers. ANY number, from 1 to 0, gives that restart. 
    I've tried a restoring to factory settings. No joy. I'm reluctant to do a complete hard reset as I have a fair amount of data on the phone.
    I can live with my phone's keypad bluetooth on/off shortcut being buggy. I can live with many other bugs. 
    I CANNOT HAVE A PHONE THAT RESTARTS WHEN I TRY TO DIAL ANY NUMBER!!!

    I had to hard reset and reïnstall everything from scratch, I was not pleased, to say the least. That was 13 Sept 2011. As of this week, Feb 2012, the problem with the phone has returned, and the phone is restarting whenever any number is pressed on the 'call' screen. Of all possible bugs and problems, this has to be the most annoying. I can get around it restarting by entering a number into memory and dialling it from there instead of dialing directly, but I really shouldn't have to. However, when during a call I need to press a number, e.g dialling an extension, the phone still restarts itself. This is the second hard reset in less than 6 months. Not good, Nokia!

  • Safari 7.1 hangs and crashes when any extension installed

    Hi
    after latest Safari upgrade (ver 7.1 seed 1), Safari hangs and crashes after I install any extensions. When I delete all extensions from extensions dir, the problem disappear.
    Thank's for any advice.
    Date/Time:       2014-07-12 10:14:58 +0200
    OS Version:      10.9.4 (Build 13E28)
    Architecture:    x86_64
    Report Version:  18
    Command:         Safari
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Version:         7.1 (9537.85.5)
    Build Version:   2
    Project Name:    WebBrowser
    Source Version:  7537085005000000
    Parent:          launchd [144]
    PID:             7146
    Event:           hang
    Duration:        7.99s
    Steps:           80 (100ms sampling interval)
    Hardware model:  MacBookPro11,2
    Active cpus:     8
    Fan speed:       2153 rpm
    Free pages:      534132 pages (+226260)
    Pageins:         2 pages
    Pageouts:        0 pages
    Swapins:         0 pages
    Swapouts:        0 pages
    Process:         Safari [7146]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Architecture:    x86_64
    Parent:          launchd [144]
    UID:             502
    Task size:       86388 pages (+7)
    CPU Time:        0.036s
      Thread 0x1ab7c    DispatchQueue 1          priority 47       
      80 start + 1 (libdyld.dylib) [0x7fff8c68c5fd]
        80 SafariMain + 267 (Safari) [0x10a683bcd]
          80 NSApplicationMain + 940 (AppKit) [0x7fff83e1c783]
            80 -[NSApplication run] + 553 (AppKit) [0x7fff83e3199c]
              80 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161 (Safari) [0x10a4b2690]
                80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122 (AppKit) [0x7fff83e3d89b]
                  80 _DPSNextEvent + 1434 (AppKit) [0x7fff83e3e24e]
                    80 _BlockUntilNextEventMatchingListInModeWithFilter + 65 (HIToolbox) [0x7fff8aa975bc]
                      80 ReceiveNextEventCommon + 479 (HIToolbox) [0x7fff8aa977b7]
                        80 RunCurrentEventLoopInMode + 226 (HIToolbox) [0x7fff8aa97a0d]
                          80 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff86309e75]
                            80 __CFRunLoopRun + 1525 (CoreFoundation) [0x7fff8630a6a5]
                              80 __CFRunLoopDoTimers + 298 (CoreFoundation) [0x7fff863c05aa]
                                80 __CFRunLoopDoTimer + 1151 (CoreFoundation) [0x7fff8634ef1f]
                                  80 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (CoreFoundation) [0x7fff8634f3e4]
                                    80 WebCore::timerFired(__CFRunLoopTimer*, void*) + 20 (WebCore) [0x10bb23ec4]
                                      80 WebCore::ThreadTimers::sharedTimerFiredInternal() + 175 (WebCore) [0x10bb23faf]
                                        80 WebCore::DOMTimer::fired() + 318 (WebCore) [0x10bc8a0be]
                                          80 WebCore::ScheduledAction::execute(WebCore::Document*) + 144 (WebCore) [0x10bc8a250]
                                            80 WebCore::ScheduledAction::executeFunctionInContext(JSC::JSGlobalObject*, JSC::JSValue, WebCore::ScriptExecutionContext*) + 537 (WebCore) [0x10bc8a4d9]
                                              80 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&, JSC::JSValue*) + 63 (JavaScriptCore) [0x10af5c7cf]
                                                80 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 438 (JavaScriptCore) [0x10ada0576]
                                                  80 JSC::JITCode::execute(JSC::VM*, JSC::ProtoCallFrame*) + 35 (JavaScriptCore) [0x10b0b4e83]
                                                    80 callToJavaScript + 311 (JavaScriptCore) [0x10b1268f3]
                                                      80 llint_entry + 22744 (JavaScriptCore) [0x10b12c3f0]
                                                        80 ??? [0x32eb0d80299a]
                                                          80 llint_entry + 22744 (JavaScriptCore) [0x10b12c3f0]
                                                            80 ??? [0x32eb0d80299a]
                                                              80 llint_entry + 10037 (JavaScriptCore) [0x10b12924d]
                                                                80 llint_slow_path_get_by_id + 696 (JavaScriptCore) [0x10af3f308]
                                                                  80 WebCore::JSHTMLEmbedElement::getOwnPropertySlot(JSC::JSObject*, JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&) + 28 (WebCore) [0x10c2d1d8c]
                                                                    80 WebCore::JSHTMLEmbedElement::getOwnPropertySlotDelegate(JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&) + 24 (WebCore) [0x10bd9d7d8]
                                                                      80 bool WebCore::pluginElementCustomGetOwnPropertySlot<WebCore::JSHTMLEmbedElement, WebCore::JSHTMLElement>(JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&, WebCore::JSHTMLEmbedElement*) + 195 (WebCore) [0x10bd9d8a3]
                                                                        80 WebCore::pluginElementCustomGetOwnPropertySlot(JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&, WebCore::JSHTMLElement*) + 34 (WebCore) [0x10c38b622]
                                                                          80 WebCore::pluginScriptObject(JSC::ExecState*, WebCore::JSHTMLElement*) + 150 (WebCore) [0x10bcc6606]
                                                                            80 WebCore::HTMLPlugInElement::pluginWidget() const + 23 (WebCore) [0x10bcc66b7]
                                                                              80 WebCore::HTMLEmbedElement::renderWidgetForJSBindings() const + 70 (WebCore) [0x10bd9d906]
                                                                                80 WebCore::Document::updateLayoutIgnorePendingStylesheets(WebCore::Document::RunP ostLayoutTasks) + 297 (WebCore) [0x10bf80189]
                                                                                  80 WebCore::FrameView::flushAnyPendingPostLayoutTasks() + 111 (WebCore) [0x10c07bd9f]
                                                                                    80 WebCore::FrameView::updateEmbeddedObjects() + 159 (WebCore) [0x10c07bd0f]
                                                                                        80 WebCore::WidgetHierarchyUpdatesSuspensionScope::moveWidgets() + 299 (WebCore) [0x10bb40eab]
                                                                                          80 WebCore::ScrollView::addChild(***::PassRefPtr<WebCore::Widget>) + 125 (WebCore) [0x10bb85bbd]
                                                                                            80 WebCore::ScrollView::platformAddChild(WebCore::Widget*) + 145 (WebCore) [0x10c69dae1]
                                                                                              80 -[WebHTMLView addSubview:] + 50 (WebKitLegacy) [0x10b9154a2]
                                                                                                80 -[NSView addSubview:] + 364 (AppKit) [0x7fff83e527d4]
                                                                                                  80 -[NSView _setWindow:] + 2899 (AppKit) [0x7fff83e55190]
                                                                                                    80 -[WebBaseNetscapePluginView viewDidMoveToWindow] + 163 (WebKitLegacy) [0x10b924473]
                                                                                                      80 -[WebBaseNetscapePluginView start] + 212 (WebKitLegacy) [0x10b9246c4]
                                                                                                        80 -[WebHostedNetscapePluginView createPlugin] + 402 (WebKitLegacy) [0x10b924962]
                                                                                                          80 WebKit::NetscapePluginHostManager::instantiatePlugin(***::String const&, int, ***::String const&, WebHostedNetscapePluginView*, NSString*, NSArray*, NSArray*, NSString*, NSURL*, bool, bool, bool, bool) + 57 (WebKitLegacy) [0x10b9508d9]
                                                                                                            80 WebKit::NetscapePluginHostManager::hostForPlugin(***::String const&, int, ***::String const&) + 194 (WebKitLegacy) [0x10b924c32]
                                                                                                              80 WebKit::NetscapePluginHostManager::spawnPluginHost(***::String const&, int, unsigned int, unsigned int&, ProcessSerialNumber&) + 52 (WebKitLegacy) [0x10b924d44]
                                                                                                                80 WebKit::NetscapePluginHostManager::initializeVendorPort() + 161 (WebKitLegacy) [0x10b9251c1]
                                                                                                                  80 _WKPACheckInApplication + 133 (WebKitLegacy) [0x10b925265]
                                                                                                                    80 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8da19a1a]
                                                                                                                     *80 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x1ab93    DispatchQueue 2          priority 49         cpu time   0.005s
      80 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff8a4f2136]
        80 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8da1e662]
         *80 ??? (mach_kernel + 3959520) [0xffffff80005c6ae0]
      Thread 0x1aba8    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 WebCore::IconDatabase::iconDatabaseSyncThread() + 295 (WebCore) [0x10bb0c0f7]
                80 WebCore::IconDatabase::syncThreadMainLoop() + 411 (WebCore) [0x10bb0e71b]
                  80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                   *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abb2    priority 63       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 thread_fun + 25 (QuartzCore) [0x7fff86fc22ad]
              80 CA::Render::Server::server_thread(void*) + 195 (QuartzCore) [0x7fff86fc2377]
                80 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8da19a1a]
                 *80 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x1abb5    priority 63       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 __NSThread__main__ + 1318 (Foundation) [0x7fff85eec76b]
              80 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348 (Foundation) [0x7fff85eec967]
                80 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff86309e75]
                  80 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8630a539]
                    80 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8630af15]
                      80 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8da19a1a]
                       *80 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x1abb8    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 __select + 10 (libsystem_kernel.dylib) [0x7fff8da1d9aa]
             *80 ??? (mach_kernel + 4079664) [0xffffff80005e4030]
      Thread 0x1abe7    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::BlockAllocator::blockFreeingThreadMain() + 227 (JavaScriptCore) [0x10ad5d983]
                80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                  80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                   *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abe8    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abe9    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abea    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abeb    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abec    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abed    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abee    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::BlockAllocator::blockFreeingThreadMain() + 227 (JavaScriptCore) [0x10ad5d983]
                80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                  80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                   *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abef    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abf0    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abf1    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abf2    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abf3    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]

    Here's a simple AppleScript I wrote to work around this 'issue'
    -- Safari_Extensions
    -- author: Matt D
    -- email: [email protected]
    -- created: 07.17.2014
    try -- ask whether or not to disable or enable Safari extensions
      display dialog "Safari Extensions" buttons {"Enable", "Disable", "Cancel"} with icon stop default button 1
      set userChoice to button returned of result
      if userChoice = "Disable" then
      do shell script "defaults write com.apple.Safari ExtensionsEnabled 0"
      display dialog "Extensions Disabled!" buttons {"Ok"} with icon applet default button 1
      else if userChoice = "Enable" then
      do shell script "defaults write com.apple.Safari ExtensionsEnabled 1"
      display dialog "Extensions Enabled!" buttons {"Ok"} with icon applet default button 1
      else if userChoice = "Cancel" then
      display dialog "You quit" buttons {"Ok"} with icon applet default button 1
      quit
      end if
    end try
    try -- Restart Safari with the Extension Flag set
      display dialog "Restart Safari?" buttons {"Restart", "Cancel"} with icon stop default button 1
      set userChoice to button returned of result
      if userChoice = "Restart" then
      do shell script "killall Safari; open -a Safari"
      else if userChoice = "Cancel" then
      quit
      end if
    end try
    Here's my blog post about it http://oramatt.com/2014/07/17/safari-extension-changer/

  • Default to Contacts when any key is hit

    currently, by blackberry will bring up the contact list when i hit a key when i am on the main blackberry home page. is there a way to stop this default? i have accidentally dialed people in my contact list  because of this default action. i do not want the contact list to be brought up when i strike a key. 

    Open your Call Log by pressing the green dial key > press the Menu key > Options > General Options > Dial from Home Screen = No.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Motherboard hangs on POST when USB card reader is plugged in

    Hi there, I am using the MSI Z77A-GD65 GAMING motherboard. I am using the following USB card reader which I bought from a local store: Amazon.com: Epraizer Universal Flash & SIM Card Reader/Writer, USB 2.0: Computers & Accessories
    However, whenever I boot with this device, my BIOS is stuck at error code 'C6'. A check on AMI's website shows that this related is probably related to boot devices. I am able to boot fine with other USB devices plugged in, such as USB thumbdrive and USB hard disk.
    At first, I thought it was a problem with my device but I can boot fine with the memory card reader plugged in on all my other computers. This makes me wonder if there is a firmware fault? I have tried disabling legacy USB and removing USB devices from boot order, but nothing helps. I have seen that in the forums some BIOS updates for some motherboards fix this issue, for example: **Official MSI Z77 Mpower Discussion Thread** - Overclockers UK Forums , where in one of the BIOS update the changes reads: Fix the issue that the system will hang 0xB4 or 0x99 when use customer usb cable or usb cardreaders.(USB cardreader: KAMA reader Tr, Akasa card reader).
    So I was wondering if it's a common issue with MSI motherboards? Will there be a fix or my motherboard is now too old to be supported? I purchased this motherboard two months ago btw
    P.S it works fine when I plug it in in Windows. I have tried both the ports in front and at the back, USB 2 or 3.

    It is then obviously a compatibility issue with that particular card reader and that particular board model. As your board is long time EOL ("End-of-life") and has been replaced by two generations already there will be no further updates. What bios versions did you try already?

  • RemoteApp receives multiple KeyUp events without any keys being pressed

    Hi All,
    I have a very simple winforms app that I am using to try and track down what is happening with keyboard events when using RemoteApp.
    Basically I have a form and a textbox that track the KeyDown, KeyPress and KeyUp events.
    As soon as I start my app via RemoteApp I receive multiple KeyUp events without even pressing a key.
    Does anyone know why RemoteApp would be sending these random KeyUp events.
    The code of my simple test app is as follows:
    Public Class Form1
    Dim lst As New List(Of String)
    Private Sub AddtoList(str As String)
    lst.Add(str)
    End Sub
    Private Sub TextBox1_KeyDown(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown
    AddtoList("txt KeyDown" & vbTab & "KeyCode is " & e.KeyCode)
    End Sub
    Private Sub TextBox1_KeyPress(sender As Object, e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
    AddtoList("txt KeyPress" & vbTab & "KeyChar is " & e.KeyChar)
    End Sub
    Private Sub TextBox1_KeyUp(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyUp
    AddtoList("txt KeyUp" & vbTab & "KeyCode is " & e.KeyCode)
    End Sub
    Private Sub Form1_FormClosing(sender As Object, e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
    AddtoList("Form Closing")
    IO.File.AppendAllLines(Application.StartupPath & "\SimpleKeyUp_v2.txt", lst)
    End Sub
    Private Sub Form1_KeyDown(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
    AddtoList("Form KeyDown" & vbTab & "KeyCode is " & e.KeyCode)
    End Sub
    Private Sub Form1_KeyPress(sender As Object, e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
    AddtoList("Form KeyPress" & vbTab & "KeyChar is " & e.KeyChar)
    End Sub
    Private Sub Form1_KeyUp(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyUp
    AddtoList("Form KeyUp" & vbTab & "KeyCode is " & e.KeyCode)
    End Sub
    Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles Me.Load
    AddtoList("Form Load")
    End Sub
    End Class
    Simply opening and closing the app via RemoteApp gives the following results:
    Form Load
    Form KeyUp KeyCode is 9
    txt KeyUp KeyCode is 9
    Form KeyUp KeyCode is 16
    txt KeyUp KeyCode is 16
    Form KeyUp KeyCode is 16
    txt KeyUp KeyCode is 16
    Form KeyUp KeyCode is 17
    txt KeyUp KeyCode is 17
    Form KeyUp KeyCode is 17
    txt KeyUp KeyCode is 17
    Form KeyUp KeyCode is 9
    txt KeyUp KeyCode is 9
    Form KeyUp KeyCode is 18
    txt KeyUp KeyCode is 18
    Form KeyUp KeyCode is 9
    txt KeyUp KeyCode is 9
    Form KeyUp KeyCode is 18
    txt KeyUp KeyCode is 18
    Form KeyUp KeyCode is 9
    txt KeyUp KeyCode is 9
    Form Closing
    Cheers and Thanks in Advance!
    Dwayne

    Hi,
    It seems that your issue has been out of the scope of this forum.For coding issue,I suggest you ask in the
    MSDN forum to see whether anyone can help you out.
    Regards,
    Clarence
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Code to call a function when enter key is pressed

    hi all,
    In a table control program i need to call a function when i press enter key...
    but im not able to do that since the function is always called when i press a push button on the screen.... can any one help me in this.. please....

    Hi John,
          You are not getting any value in SY-UCOMM when you press "Enter",because the function code is not set for 'Enter" key in "Function Key" of the GUI-STATUS..
    First define some fucntion code say 'ENT' for the Enter button available in "Fucntion key" of the GUI status.Once you done and activate the program and test it.The function code which u defined will be coming to SY-UCOMM field when you press 'ENTER" button and you can handle the various fucntionality whichevcer you want on "ENTER" .
    Eg:
    case sy-ucomm.
    When 'ENT'.
    Endcase.
    Regards,
    Vigneswaran S

  • Elements 9 Crashes When Alt key is Pressed

    I am using Elements 9 - an upgrade from 4. When I try to use the clone stamp the programme crashed irrespective of file size. This did not happen in Elements 4.
    Operating system is XP.
    Any Ideas?

    With the clone stamp tool selected - click on the downward pointing drop down icon (far left on the options menu) and select re-set tool.
    If that makes no difference you may need to re-set preferences.
    Start the editor whilst simultaneously holding down the Ctrl+Alt+Shift keys.
    When you see “Delete the Adobe Photoshop Elements Settings File” - click yes.
    When you re-start the program again the preference files will be automatically re-built.

Maybe you are looking for

  • Open Dir, SMB, AFP, Changing Password on first login (Windows)

    Hey all... I've read up on some documentation but have run into a roadblock trying to set up file sharing for Open Directory user accounts with OS X Server 10.5.6. I have AFP and SMB (and Open dir) services enabled. Using all default settings I am ab

  • Clear the  inspection

    Hi All, while do the GR for the material from the vendor , the stock posted to the quality . since we maintained the QM view in the material master with the quality control key 0007. Now we need to  transfer the stock from quality to unrestricted . h

  • Can BARELY hear my voicemail even with volume all way up

    I just got my iphone 3GS 16GB last week. I noticed this right away. I can't hear my voicemail. Even when the volume is turned ALL the way up and on Speaker, I can barely hear the messages. What's up with this? Should I return it for repair/another??

  • An interview with senior quality engineering manager of OpenSSO Enterprise

    SDN just published an interview with Indira Thangasamy, senior quality engineering manager of Sun OpenSSO Enterprise, who shares his insights on the behind-the-scenes testing harness and processes that ensure a high-quality product. Check out the art

  • Accidentally changed cache location and the app crashes and never opens

    I recently changed the cache location to an external usb and whenever I try to open the app t crashes and gives me an error pop up. I cant change the cache location back to default since I can never open the app, feels like a catch22 situation. A sim