When-mouse-click trigger is not working

Hi,
My forms version is 10g.
I've a black level and item level when-mouse-click trigger.
There is some code inside that which is not being executed.
To test, i simply printed a hello message inside the trigger's code.
Even hello is not being displayed.
Can anyone please help me in why this trigger is not working.
Navnit

You have some other issues going on if you don't see anything from a when-mouse-click trigger.
First of all, are you spelling the trigger using a dash or underscore? WHEN-MOUSE-CLICK will run, but WHEN_MOUSE_CLICK will not.
Have you set :SYSTEM.Message_Level to some value above zero in the form? If so, set it back to zero.
On what object are you trying to click? Is this causing navigation? Navigation may cause validation to run, which may fail, which may prevent the navigation, which may prevent your when-mouse-click from running.
And last, are you sure you are running the currently compiled fmx version of your form?
When nothing works, you need to back up and start finding out what DOES work first.

Similar Messages

  • Passing parameter through when mouse click trigger

    I have a detail block.This block fetching multiple records.My query is how can i pass parameter though WMC trigger.
    My details block displaying data from 4 tables.
    When i click on any field all the data on that row must be my parameters.

    In first form in when mouse click trigger:
    SELECT xyz
    INTO :GLOBAL.xyz,
    FROM abc
    WHERE v.po_no = :SYSTEM.MOUSE_ITEM
    AND IMT21_SIT.C_SIT_NO = IMT22_RECT_HD.C_SIT_NO;
    EXCEPTION WHEN NO_DATA_FOUND THEN
         MESSAGE('PLEASE CLICK ON PO NO');
    logout;
    logon('abc','[email protected]');
    open_form ('C:\CUSTOMER_SERVICES\SUPL_FAS');
    in second form in when new form instance trigger:
    block_name.field_name := :GLOBAL.xyz;
    it show error..........

  • When-mouse-click  trigger

    hello every one
    i put list item on tabular text item when i use when-mouse-click trigger on list item it dosen't fire
    can any one help me.

    this is my trigger
    for i in 1..Get_list_element_count('l1') loop
         if :l1=get_list_element_value('l1',i) then
    :lname:=GET_LIST_ELEMENT_LABEL('l1',i);
    end if;
    end loop;
    if :report_name in('C','B','A') then
         :branch_code:=substr(:l1,1,3);
         :code:=substr(:l1,4);
         go_item('code');
    else
         :client_branch_code:=substr(:l1,1,3);
         :client_code:=substr(:l1,4);
         go_item('client_code');
         end if;

  • Mouse Click on Polygon not Working

    I am trying to write a code for a simple game so that when I click in a certain area it responds in different ways. I have it set up using a polygon because the code I found used it, and it wouldn't work when I tried using a circle. The problem is that when I add more points to the polygon it starts acting up. What am I doing wrong? Or, if anyone knows how to use a circle instead of a polygon for this can they tell me?
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Image;
    import java.awt.Polygon;
    import java.awt.Toolkit;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.io.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class Mouse2 implements MouseListener
        Polygon poly1 = new Polygon();
        Polygon poly2 = new Polygon();
        Polygon poly3 = new Polygon();
        JPanel mainPanel = new JPanel();
        private boolean isVisible;
        private boolean dartboardClick;
        private boolean bullseyeClick;
        private boolean click;
        private int DBClick;
        private int BSClick;  
        private Mouse2() throws IOException
            poly1.addPoint(233,4); //Start creating mouseListener points. created clockwise
            poly1.addPoint(346,50);
            poly1.addPoint(392,158); //3 o'clock
            poly1.addPoint(358,257);
            poly1.addPoint(238,316); //6 o'clock
            poly1.addPoint(121,264);
            poly1.addPoint(81,155); //9 o'clock
            poly1.addPoint(127,50);
            poly2.addPoint(80,60);
            poly2.addPoint(160,120);
            poly2.addPoint(80,120);
            poly2.addPoint(160,60);
           poly3.addPoint(0,0);
           poly3.addPoint(0,320);
           poly3.addPoint(480, 320);
           poly3.addPoint(480, 0);
        public void mousePressed(MouseEvent e) {}
        public void mouseEntered(MouseEvent e) {}
        public void mouseReleased(MouseEvent e) {}
        public void mouseExited(MouseEvent e) {}
        public void mouseClicked(MouseEvent e)
            if(poly1.contains(e.getX(), e.getY()))
                dartboardClick = true;
            if(poly2.contains(e.getX(), e.getY()))
                bullseyeClick = true;
            if(poly3.contains(e.getX(), e.getY()))
                click = true;
            while(dartboardClick && !bullseyeClick)
                System.out.println("25 points.");
                dartboardClick = false;
                click = false;
            while(dartboardClick && bullseyeClick)
                System.out.println("100 points!");
                dartboardClick = false;
                bullseyeClick = false;
                click = false;
             while(click && !dartboardClick)
                System.out.println("Miss.");
                click = false;
            if(poly.contains(e.getX(), e.getY())|| poly2.contains(e.getX(), e.getY()))
                System.out.println("clicking on polygon");
            }else
                System.out.println("false");
        public static void main(String[] DontTouchTheCurlyBracketsJustPressOk) throws IOException
            JFrame frame = new JFrame();
            frame.addMouseListener(null);
            frame.setSize(new Dimension(480, 320));
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            Drawing d = new Drawing();
            d.addMouseListener(new Mouse2());
            frame.getContentPane().add(d);
            frame.setVisible(true);
    class Drawing extends JPanel
        final BufferedImage bi;
         public Drawing() throws IOException {
             bi = ImageIO.read(new File("H:\\Dart\\DartsImageFinal.bmp")); //Set the drive; needs 2 backslashes
             //bi = ImageIO.read(new File("/Users/adno4/Desktop/DartsImageFinal.bmp")); //Set the drive; needs 2 backslashes
         public void paintComponent(Graphics g) {
              g.drawImage(bi,getWidth()-bi.getWidth(),getHeight()-bi.getHeight(),null);
         public static void main(String[] args) {
             EventQueue.invokeLater(new Runnable() {
                 public void run() {
                     try {
                         JFrame f = new JFrame();
                         f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                         Drawing t7 = new Drawing();
                         f.setContentPane(t7);
                         f.setSize(480,320); //Might need to resize
                         f.setVisible(true);
                     } catch (IOException ioe) {
                         ioe.printStackTrace();
    }Edited by: adno4 on May 24, 2010 5:43 AM

    frame.addMouseListener(null);Change "null" to "this".
    Your object implements MouseListener, but you tell it you have no listeners when you add a null listener, the code you wrote does nothing in that case.

  • COMMIT_FOARM IS NOT WORKING INSIDE THE  WHEN-MOUSE-CLICK

    Dear friends
    I have following script in when-mouse-click trigger
    BEGIN
    IF NOT Form_Success THEN
    Bell;
    RAISE Form_Trigger_Failure;
    END IF;
    IF :System.Form_Status = 'CHANGED' THEN
    IF :LOCK_FLAG = 1 THEN
    UPDATE PROJ.IM_REQUEST_HEADER
         SET LOCK_FLAG = 1
         WHERE DOC_CODE = :DOC_CODE ;
         SHOW_MESSAGE('DOCUMENT CODE -1'|| ' '||:DOC_CODE);
         SHOW_MESSAGE('LOCK FLAG -1'|| ' '||:LOCK_FLAG);
         Commit_Form;
         MESSAGE('The Record have been changed -1 ');
    ELSE
         UPDATE PROJ.IM_REQUEST_HEADER
         SET LOCK_FLAG = 0
         WHERE DOC_CODE = :DOC_CODE ;
         Commit_Form;
         MESSAGE('The Record have been changed - 2');
    END IF;
    ELSIF :System.Form_Status <> 'QUERY' THEN
    Message('An error prevented your changes from being
    committed.');
    Bell;
    RAISE Form_Trigger_Failure;
    END IF;
    END;
    Note :
    The above trigger is attached to this field LOCK_FLAG and the item type of LOCK_FLAG is check box in the form and the property of the LOCK_FLAG
    is site as the following :
    database item = NO , and the property of the blcok IM_REQUEST_HEADER is site as the following :
    database data block = NO
    and my problem is when i change the value of LOCK_FLAG is not executting the update statement .
    waiting for your valuable answer in details thank in advance for your cooperation.
    best regards
    jamil alshaibani

    Dear Wilfred
    Thank you very much for your cooperation, yes when I change the “Database data block “ property to no, it works, as I wanted to be.
    Notes about my application:
    In my program I provide the store keeper query screen, he can check the orders and lock the specific order by clicking on the LOCK_FLAG field, so after he locked the field the requester user can not change his order content if it is locked by the store keeper
    And the way I was trying to do it ,by query the data from      IM_REQUEST_HEADER Table which is the Order table which is the header table ,the form is displaying doc_code ,doc_date ,lock_flag,and the order store name ,and I provide him a report on the same form that he can see the details of the order items ,and all the field properties set to no, that is update allowed to no ,insert allowed set to no, but the field lock_flag property set as update allowed to yes and insert allowed set to yes
    and I would like to now how it was displaying this message
    ORA-01400 cannot insert NULL INTO “PROJ”.IM_REQUEST_HEADER”.DOC_CODE
    And I was not inserting, I was just updating the lock_flag by the above update statement.
    Best regards
    Jamil Alshaibani

  • :system.cursor_block value does not change when mouse click

    Form created with Forms version 6.0.8.8.0. Consists of a control block that has the toolbar buttons, a filter control block that contains item, and a data block. The filter control block and data block are on a tabbed canvas. There are 3 tabs with corresponding filter control block and data block on each.After the data block is queried, code sets the navigation to the control block with the go_item built-in. The user would use a mouse click on the filter control block on one of the tabs to activate an LOV, code is in a generic when-mouse-click trigger that will determine the item focus with the value in the system variable :system.cursor_block. Works for the first tab. Does not work for 2nd or 3rd tab. On-error trigger does not capture any error. Values for :system.cursor_block for tab 1 show that value before mouse click is 'control.detail' and after mouse click is 'filter.a'. For tabs 2 and 3 the value before mouse lick is 'control.detail' and after mouse click is 'control.detail' instead of 'fiter.b' or 'filter.c'. Verified that the 3 filter blocks are identical. Can anyone shed some light on this anomoly? I have been looking for this solution (many different iterations and changes to trap it) for too long.

    :System.Cursor_Block reports the name of a block, NOT a BlockName.ItemName.
    Use :System.Trigger_Item with your mouse click, or :System.Cursor_Item.

  • When-Mouse-Click does not fire if When-new-item-instance exists

    We are using Forms 6i Patch 12.
    The When-Mouse-Click trigger (at block level) is not getting fired when a When-new-item-instance trigger exists on a given item on which mouse is clicked.
    We need to synchronize keyboard and mouse events such that if the validation on certain key items fails, the cursor should go to one of the specified items as per the validation rules.
    The validation rules are different on leaving from different items. Complex validation rules require cursor to go to a different item than the current item on which the validation fires.
    Since go_item cannot be used in when-validate-item, we are using a combination of key-next-item and when-mouse-click.
    But, this strategy seems to fail if mouse is clicked over an item having a when-new-item-instance trigger.
    Also, we need the When-mouse-click trigger to fire before When-new-item-instance.
    Any pointers to solving the firing of trigger or strategy will be appreciated!
    Regards,
    Sanjiv

    This solution we have tried and it works also.
    However, we end up in another problem in the form. For overall picture, please see my latest post for "Forms Valid status" at Forms Valid status
    Regards,
    Sanjiv

  • Open Form not working when called from When-Mouse-Click

    In our application to navigate to other forms we have created a feature where user selects the Forms from a LOV, the form id is returned to the text item and user needs to click the text item.....In the text item the Open form command is given
    This is not working
    The form builder throws an error
    Frm 92100 Connection interupted
    what could be the reason

    Code written in When-Mouse-click
    for item :boo_toolblk.nbt_nxtscr which contains the form id
    DECLARE
    p_name_id PARAMLIST;
    lv_param_name VARCHAR2(8):= :boo_toolblk.nbt_nxtscr;
    lf_next_form_id FORMMODULE;
    BEGIN
    Clear_Item;
    /*Create a parameter list named 'TEMPLT_PARAM'. First
    ** make sure the list does not already exist, then
    ** attempt to create a new list*/
    IF not Id_Null(Get_Parameter_List('TEMPLT_PARAM'))/*Returns a BOOLEAN value if the object ID is available*/
    THEN Destroy_Parameter_List('TEMPLT_PARAM');
    END IF;
    p_name_id:= Create_Parameter_List('TEMPLT_PARAM');
    /*Add a value parameter to an existing Parameter
    ** List */
    Add_Parameter(p_name_id,'templt_nxtscr',TEXT_PARAMETER,lv_param_name);
    Go_Block(Get_Form_Property(:system.current_form,FIRST_NAVIGATION_BLOCK));
    lf_next_form_id := FIND_FORM(lv_param_name);
    :PARAMETER.next_form := lv_param_name;
    IF lf_next_form_id.id is not null
    THEN
    Close_form(lf_next_form_id);
    END IF;
    Add_parameter(p_name_id,'previous_form',TEXT_PARAMETER,:SYSTEM.CURRENT_FORM);
    /* opens another form*/
    Open_Form(lv_param_name,ACTIVATE,NO_SESSION,SHARE_LIBRARY_DATA,p_name_id);
    EXCEPTION
    WHEN FORM_TRIGGER_FAILURE
    THEN RAISE FORM_TRIGGER_FAILURE;
    WHEN OTHERS
    THEN RAISE FORM_TRIGGER_FAILURE;
    END;
    Error :-
    Frm-92100 : Your Connection to the Server was Interrupted
    This may be the result of a networn error or a failure on the server.
    You will need to re-establish

  • Bing Maps on IE 11 browser, The mouse click event is only working when we have compatibility mode on.

    I have tried out the code in this article in ASP.Net web forms with c#  and javascript.
    I am using Ajax to call the C# from Javascript and load the data from database.
    I have used following article to show the pushpins and there infoboxes.
    http://blogs.msdn.com/b/rbrundritt/archive/2013/11/08/multiple-pushpins-and-infoboxes-in-bing-maps-v7.aspx?CommentPosted=true#commentmessage
    My code works great on IE 11 , when I have compatibility mode on,
    but when compatibility mode is off, the mouse click event is not being received by the Javascript function.
    Is this expected behavior of bing maps, Are there any workarounds for this problem?
    Thanks
    Nate

    Hi Ricky, I have tried using Chrome and I see the same issue. The mouse events are not being captured. 
    Here is my code
    <%@ Page Title="" Language="C#" MasterPageFile="~/Maps.Master" AutoEventWireup="true" CodeBehind="BingMaps.aspx.cs" Inherits="MyMaps.secure.BingMaps" %>
    <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolderBody" runat="server" >
    <asp:ScriptManager ID="ScriptManager" runat="server"
    EnablePageMethods="true" />
    <div id="MapHolder" style="; width:1000px; height:800px; " />
    <asp:Literal ID="Literal1" runat="server">
    </asp:Literal>
    </asp:Content>
    <asp:Content ID="Content3" ContentPlaceHolderID="ScriptSection" runat="server">
    <script type="text/javascript" src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0">
    </script>
    <script type="text/javascript" >
    var map = null, infobox, dataLayer;
    $(document).ready(function () {
    GetMap();
    function GetMap() {
    // Initialize the map
    map = new Microsoft.Maps.Map(document.getElementById("MapHolder"),
    { credentials: "lincensekey", zoom: 2 });
    dataLayer = new Microsoft.Maps.EntityCollection();
    map.entities.push(dataLayer);
    var infoboxLayer = new Microsoft.Maps.EntityCollection();
    map.entities.push(infoboxLayer);
    infobox = new Microsoft.Maps.Infobox(new Microsoft.Maps.Location(0, 0), { visible: false, offset: new Microsoft.Maps.Point(0, 20) });
    infoboxLayer.push(infobox);
    PageMethods.GetLocations(RequestCompletedCallback, RequestFailedCallback);
    function AddData(MapPoints) {
    for (var i = 0, len = MapPoints.length; i < len; ++i)
    var pushpin = new Microsoft.Maps.Pushpin(new Microsoft.Maps.Location(parseFloat(MapPoints[i].lat),parseFloat(MapPoints[i].lon))
    icon: MapPoints[i].group,
    height: 50, width: 60, text: MapPoints[i].city
    pushpin.Title = MapPoints[i].name;
    pushpin.description = MapPoints[i].desc;
    Microsoft.Maps.Events.addHandler(pushpin, 'click', displayInfobox);
    dataLayer.push(pushpin);
    function displayInfobox(e) {
    if (e.targetType == 'pushpin') {
    infobox.setLocation(e.target.getLocation());
    infobox.setOptions({ visible: true, title: e.target.Title, description: e.target.description });
    function RequestCompletedCallback(result) {
    result = eval(result);
    AddData(result);
    function RequestFailedCallback(error) {
    var stackTrace = error.get_stackTrace();
    var message = error.get_message();
    var statusCode = error.get_statusCode();
    var exceptionType = error.get_exceptionType();
    var timedout = error.get_timedOut();
    alert("Stack Trace: " + stackTrace + "<br/>" +
    "Service Error: " + message + "<br/>" +
    "Status Code: " + statusCode + "<br/>" +
    "Exception Type: " + exceptionType + "<br/>" +
    "Timedout: " + timedout);

  • WHEN-MOUSE-CLICK for a display item does not fire on the web

    Resending as there were no responses............
    Regards,Bala.
    Bala (guest) wrote:
    : Hi guys,: 1. Does WHEN-MOUSE-CLICK fire on Display Item or on
    a Button in
    : Web Forms (not in a client/Server environment) ? We had it
    : working in Forms 5.0, but right now in 6.0 it doesnt ? In 6.0,
    : it works fine in Client/Server environment, but definitely not
    : in Web environment.
    : 2. Again, in our app. we have set no bevel for the display
    : items, but when we run it on the web, it comes with a bevel
    : (this does not happen in Client/Server). Is this common or is
    it
    : a known bug in 6.0 ?
    : 3. How to change Fonts for Web Deployment. Currently I guess
    it
    : takes Dialog as the default with the point size of 900 (in
    Java
    : terms). I tried modifying the registry.dat to the following:
    : default.fontMap.defaultFontname=SansSerif:
    default.fontMap.defaultSize=900: OR
    : default.fontMap.defaultFontname=Ms Sans Serif:
    default.fontMap.defaultSize=900
    : and found no changes at runtime on the Web.
    : Any help on these issues, will really be appreciated.
    : Thanks,
    : Bala
    null

    Dear friend
    i have the same problem when ever u can solve this probelm pls
    inform me as well mean while i am trying to reslove it as well if
    there is any sucess i ll inform u.
    mobeen
    Bala (guest) wrote:
    : Resending as there were no responses............
    : Regards,Bala.
    : Bala (guest) wrote:
    : : Hi guys,: 1. Does WHEN-MOUSE-CLICK fire on Display Item or on
    : a Button in
    : : Web Forms (not in a client/Server environment) ? We had it
    : : working in Forms 5.0, but right now in 6.0 it doesnt ? In
    6.0,
    : : it works fine in Client/Server environment, but definitely
    not
    : : in Web environment.
    : : 2. Again, in our app. we have set no bevel for the display
    : : items, but when we run it on the web, it comes with a bevel
    : : (this does not happen in Client/Server). Is this common or is
    : it
    : : a known bug in 6.0 ?
    : : 3. How to change Fonts for Web Deployment. Currently I guess
    : it
    : : takes Dialog as the default with the point size of 900 (in
    : Java
    : : terms). I tried modifying the registry.dat to the following:
    : : default.fontMap.defaultFontname=SansSerif:
    : default.fontMap.defaultSize=900: OR
    : : default.fontMap.defaultFontname=Ms Sans Serif:
    : default.fontMap.defaultSize=900
    : : and found no changes at runtime on the Web.
    : : Any help on these issues, will really be appreciated.
    : : Thanks,
    : : Bala
    null

  • My ipod nano click wheel will not work - Ipod works when docked on mobile speakers from remote control

    My ipos Nano click wheel will not work, however when it is docked on mobile speakers it will work from the remote control.

    If it continues to malfunction after a restore, it's probably bad hardware.
    I'd recommend making a Genius Bar appointment. They'll probably give you a couple options: Replace it with an identical model for a discounted price, or trade it in for recycling and get 10% off a new iPod.

  • Tooltips and When-Mouse-Enter trigger

    Are there any plans in Dev6 or beyond to allow a dynamic change
    to the item property TOOLTIP_TEXT from the item's When-Mouse-
    Enter trigger or a program unit called from this trigger? Let's
    say the tooltip text value changes when the value of the item
    changes. Trying to handle this scenario thru other triggers is
    rather inefficient and can be time-consuming to make sure all
    cases are handled. Is this going to be addressed at some point,
    or should we just hang our heads and say "Oh well, that would
    have been nice..."
    Danny Womack
    SCT Corporation
    null

    Steve - Why are you bothering to code tooltips when automatic ones are available as item properties ?These forms were first created in Forms 4.5 -- I don't think tooltips existed there. But tooltips still wouldn't work -- in a multirecord block with the code values being unique for several different records, we want the unique description for each unique value.
    And when there are several dozen values all over the screen, it would be necessary to lookup and store the description for every value, even though the users would seldom access them. So lookup ONLY on demand is more efficient.
    It is a standard process with everything possible stored in a PLL, so the WME lookup works great. And tailoring it for the web with when-mouse-click was not tough to add on.

  • Hierarchical Tree: When-Tree-Node-Activated is not working

    I'm working Forms 10G rel.2.1 and also using application server 10G 2.
    my problem is in Hierarchical Tree [When-Tree-Node-Activated] is not working in Enter this is working in Enter+Tab
    I want to this trigger is working in only Enter.
    I'm waiting quick response

    node_value is only item which have transfer the form or report name
    Trigger Name : WHEN-TREE-NODE-ACTIVATED
    Declare      
         htree                Item ;
    Begin
         --clear_values;
    --           htree := Find_Item('tree.htree');
    -- Find the value of the node clicked on.
    :node_value := ftree.Get_Tree_Node_Property(htree, :SYSTEM.trigger_NODE, Ftree.NODE_VALUE);
    ----Above node value transfer the procedure and call the form with node_value(Form Name)
         Execute_CMD_PROC;
    Exception
         When Others Then Null;
    End ;
    when i enter then no value but when i enter+tab then show the form

  • Optical mouse (AVF AM1940U) is not working in CQ40-101TU which is running Windows 7 32-bit.

    Hi. I'm using Compaq CQ40-101TU which is running Windows 7 Professional 32-bit.. My optical mouse (AVF AM1940U) is not working in USB ports. The pointer of mouse is always stuck at top of the screen. I can move the mouse left or right to both edges of the screen at the top and can right click in this regard it works but I cannot move the mouse down the screen. 
    What is the problem? May I know how to solve it?
    Thanks.

    Ya. Another mouse didn't have problem. This is the first time I face this problem. When this optical mouse is plugged into USB ports, the driver named "iBall Advanced Mouse" is being installed. After that, my mouse cannot working.
    Is that I have to install another driver before using this mouse?
    Thanks.

  • Touchsmart 520-1047c Mouse and Keyboard will not work after sleep mode

    I have an issue which I need some help with. When my computer goes to sleep the wireless mouse and keyboard will not work unless I restart, however each one will wake the system up but will not operate after that. I have tried just making the display go to sleep, both go to sleep but that makes no difference same issue occurs. The only work around I have found is going into the power settings and turning the sleep mode off for booth the computer and display. This does not solve the problem it just masks it. New batteries, unplugged and replugged the dongle, updated the bios and all drivers. Don't know what else to try. Anybody know how to fix this? Thank you in advance for your help.

    Hello , Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More. I understand that the mouse and keyboard on your desktop computer does not work if your computer enters sleep mode, and I would be happy to assist you in this matter! To correct this issue, I recommend following the steps in this document on Troubleshooting sleep and hibernate issues (Windows 7). This should help enable your system to wake from sleep mode using your wireless keyboard and mouse. I also recommend connecting wired peripherals to diagnose the functionality of your keyboard and mouse. If your system is still not able to wake from sleep mode, please follow the steps below to restore the default power schemes on your computer: Step 1. Click the Start button
    Step 2. In the search box, type "Command Prompt"
    Step 3. Right-click Command PromptStep 4. Click Run as administrator
    Step 5. At the command prompt, type powercfg /restoredefaultschemes and press Enter  reference: http://superuser.com/questions/669571/windows-8-1-64-bit-power-schemes-gone Please re-post with the results of your troubleshooting, as well as the requested information above. I look forward to your reply!
    Regards  

Maybe you are looking for

  • Closing swfs in captivate movie

    I am frantically trying to figure out how not to get a javascript erro rwhen my animation ends inside my captivate movie. how to I close the swf adn still elt the user navigate to the next captivate screen? Please help! thanks, francie

  • How to transfer Outlook content on PC to iPhone?

    I figured out how to sync iTunes on my desktop computer with my phone, but that doesn't do me any good because there isn't any content in iTunes.  So how do I get my Outlook data into iTunes?  Contacts are the most important thing, but I'm also inter

  • How to select a block of text in SE38?

    Not talking about CTRL+Y, that is good to select on reports or tables etc. I once knew the shortcut to select block text and paste block text in SE38. Does anyone remember that shortcut key? Thanks.

  • Gutenprint 5.2.1  released

    Just thought I would let you know that Gutenprint 5.2.1 is available and it certainly helped me in getting my Epson DX9400F working. Use the following link http://sourceforge.net/forum/forum.php?forum_id=879599 Not sure if this is the correct use of

  • IPhone 3gs keeps crashing when using camera app and Facebook

    My iPhone 3Gs is on its last legs, has been for a while, but I can't afford to upgrade just yet. It keeps switching off, screen fades to black, when I use both the camera app and Facebook. I then have to reboot. It's not a battery issue, as it happen