Help a Poor Guy with a Broken Keyboard

Hi Everyone!
I was wondering if someone could help with a workaround for a problem I have: Certain keys on my netbook keyboard stop working, seemingly at random (if anyone knows why this could be, I'm all ears).
I'm trying to use fluxbox keys to use a shortcut to send a keystroke, for example 'Control' and '3' to send 'e' or 'Control' and 'd' to send 'c'.
Is there a command/package that can do this?
I did google for a while but I don't really know what to search for.
-Coire

Hi,
I don't use fluxbox and I don't know if it determines something.
But you can use xmodmap to remap keys and combinations.
With xev you can press the keys and know the keycode to use for xmodmap
E.g.
xmodmap -e 'keycode 56 = Control_L'
xmodmap -e 'keycode 64 = AudioUp'

Similar Messages

  • Help needed with a broken Keyboard

    Hi there,
    was wondering how to have a keyboard on a q10 fixed.  The letter z appears to "attach" itself to everything typed, even the space bar.  Just hovering over it lightly makes it pop up on the screen.  In the Mississauga area, I would really appreciate any assistance.  
    Thanks,

    Sounds like the device got wet or somehow got moisture in the keyboard. Put it in a bag of rice for a few days and see if that helps.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • Please help the new guy with a picture issue :) Thanks

    Hey guys,
    DrOnePocket here...  I am on my second BB now and love it.  I retired  my curve finally and got a Verizon Tour 9630
    I have some pictures that I have taken with my phone and when I used Media Manager on my desktop to save the pics to a file on my PC, I can't open them.  Windows has no clue what program to use to open them and I did a basic google search and landed here. 
    Example file name
    IMG00016-20100327-1607.jpg
    Both my Desktop Manager and my Media Manager sometimes freeze up Vista as well. 
    Help is appreciated very much!!!

    Don't use Media Manager.
    Transfer the file(s) to your PC per instructions here, using Mass Storage Mode on your BlackBerry.
    1. Go to Options >> Media Card
    (some themes or BlackBerrys may call this "Settings >> Media Card")
    2. Check the following settings (if they are not listed this way, then change to reflect the following:
    a) Media Card Support: On
    b) Mass Storage Mode Support: On
    c) Auto Enable Mass Storage: Yes
    3. Save the settings and exit
    4. Connect your BlackBerry to the PC via a USB cable. Upon connection you may see a Removable Drive appear in your file manager on the PC, or look in My Computer. From there navigate to the newly added Removable drives and explore. Copy the file needed to your PC.
    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

  • Help this poor guy

    Hi Herewith I have enclosed the code.. I am not sure where i am going wrong..moreover i am very new to this technologies.. i need to finish this by tonight.. anyone helps that will be great..
    here is my problem.. i need to check a rebate id which exists in the database.. if it exists I have to update the value and if doesn't exits i have to insert a new row..
    My jsp will contails 10 rows.. Once after submit.. I have to check with the database whetehr that rebate_sku_num exits.. if exits i need to update that row.. if not i have to insert a new record.. here is my code.. please give some solution.. thanks
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import javax.servlet.SingleThreadModel;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import java.io.IOException;
    import java.sql.ResultSet;
    import java.io.*;
    import java.util.*;
    import java.util.Date;
    import java.text.*;
    public class AddRebate extends HttpServlet implements SingleThreadModel {
    public void init(ServletConfig servletconfig) throws ServletException {
    super.init(servletconfig);
    public void doPost(HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse)
    throws ServletException, IOException {
    HttpSession session;
    session = httpservletrequest.getSession(true);
    String user_name;
    String divisionCode;
    String rebate_sku_num[];
    String selectedMonth;
    String amount[];
    String message = "";
    String Query="";
    String RebateId="";
    boolean flag = true;
    // from here
    Calendar todaysdate = new GregorianCalendar();
    SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
    SimpleDateFormat sdf1 = new SimpleDateFormat("MM/dd/yyyy HH:MM:SS");
    System.out.println("today's date: " + sdf.format(todaysdate.getTime()));
    String entryDate = sdf.format(todaysdate.getTime());
    String entryDate1 = sdf1.format(todaysdate.getTime());
    System.out.println("entering date is " +entryDate) ;
    System.out.println("entering date is " +entryDate1) ;
    // to here
    user_name = (String) session.getAttribute("user_name");
    divisionCode = (String) session.getAttribute("division_code");
    selectedMonth = httpservletrequest.getParameter("selectedMonth");
    rebate_sku_num = httpservletrequest.getParameterValues("rebateId");
    amount = httpservletrequest.getParameterValues("amount");
    System.out.println("AddRebate : doPost() : selectedMonth = " + selectedMonth);
    System.out.println("AddRebate : doPost() : rebate_sku_num = " + rebate_sku_num);
    System.out.println("AddRebate : doPost() : amount = " + amount);
    flag =true;
    if (flag) {
    // from here
    try {
    String s = "select REBATE_SKU_NUM from EASMSA_REBATE_SKU_DETAILS_TB";
    System.out.println("AdjustmentServlet : doGet() : getting maximum adjustment ID query : " + s);
    ResultSet resultset = DatabaseConnection.executeQuery(s);
    if (resultset != null) {
    while (resultset.next()) {
    RebateId = resultset.getString("REBATE_SKU_NUM");
    System.out.println("the REBATE_SKU_NUM is " + RebateId);
    }else{
    System.out.println("AdjustmentServlet : doGet() : getting maximum adjustment ID : resltset is null " );
    } catch (Exception exception1) {
    System.out.println("AdjustmentServlet : doGet() : exception in getting max of adjustment id");
    exception1.printStackTrace();
    // to herer
    for (int i = 0; i < rebate_sku_num.length; i++) {
    if ((rebate_sku_num != RebateId)) {
    System.out.println("get the values" +rebate_sku_num);
    System.out.println("get the values" + RebateId);
    Query = "INSERT INTO EASMSA_REBATE_SKU_DETAILS_TB " +
    "( REBATE_SKU_NUM, REBATE_DATE, REBATE_AMT, CREATED_BY," +
    "CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE ) VALUES (" +
    "'" + rebate_sku_num + "', " +
    "TO_Date( '" + "30/" + selectedMonth + "', 'dd/MM/YYYY HH:MI:SS AM'), " +
    "'" + amount + "' , '" + user_name + "'" +
    ", TO_Date( '" + entryDate + "', 'MM/dd/YYYY HH:MI:SS AM')" +
    ", '" + user_name + "'," +
    " TO_Date( '" + entryDate + "', 'MM/dd/YYYY HH:MI:SS AM'))";
    System.out.println("query is executed" +Query);
    }else if ((rebate_sku_num == RebateId )){
    Query = "update EASMSA_REBATE_SKU_DETAILS_TB set REBATE_AMT=" + amount + " where REBATE_SKU_NUM='" + rebate_sku_num + "'";
    System.out.println("query is executed for updation" +Query);
    try {
    if (DatabaseConnection.executeUpdate(Query) == 0) {
    System.out.println(" AddRebate : doPost() : rollback: error in executing update query= " + Query);
    DatabaseConnection.rollBack();
    message = "Some problem in updating transactions. Please try again later.";
    flag = false;
    break;
    } else {
    System.out.println("AddRebate : doPost() : update sucessfull");
    message = "Rebate Transactions has been updated.";
    flag = true;
    } catch (Exception ex) {
    System.out.println("AddRebate : doPost() : exception in update query");
    message = "Some problem in updating transactions. Please try again later.";
    flag = false;
    ex.printStackTrace();
    session.setAttribute("message", message);
    httpservletresponse.sendRedirect("Welcome1.jsp?s=y");
    return;

    Hi Here my code is, I am able to add one by one records... but if the record is there still it is trying to inser and throwing some execption. Because that rebate_sku_num is the primary key..
    I want to add multiple records.. by cecking rebate_sku_num is present in the table or not. It is not I need to insert a new row.. else I need to update the record.
    Thanks
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import javax.servlet.SingleThreadModel;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import java.io.IOException;
    import java.sql.ResultSet;
    import java.io.*;
    import java.util.*;
    import java.util.Date;
    import java.text.*;
    public class AddRebate extends HttpServlet implements SingleThreadModel {
        public void init(ServletConfig servletconfig) throws ServletException {
            super.init(servletconfig);
        public void doPost(HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse)
                throws ServletException, IOException {
            HttpSession session;
            session = httpservletrequest.getSession(true);
            String user_name;
            String divisionCode;
            String rebate_sku_num[];
            String selectedMonth;
            String amount[];
            String message = "";
            String Query="";
            String RebateId=""; 
            boolean flag = true;
            Calendar todaysdate = new GregorianCalendar();
            SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
            SimpleDateFormat sdf1 = new SimpleDateFormat("MM/dd/yyyy HH:MM:SS");     
            System.out.println("today's date: " + sdf.format(todaysdate.getTime()));
            String entryDate = sdf.format(todaysdate.getTime());
            String entryDate1 = sdf1.format(todaysdate.getTime());
            user_name = (String) session.getAttribute("user_name");
            divisionCode = (String) session.getAttribute("division_code");
            selectedMonth = httpservletrequest.getParameter("selectedMonth");
            rebate_sku_num = httpservletrequest.getParameterValues("rebateId");
            amount = httpservletrequest.getParameterValues("amount");
            System.out.println("AddRebate : doPost() : selectedMonth = " + selectedMonth);
            System.out.println("AddRebate : doPost() : rebate_sku_num = " + rebate_sku_num);
            System.out.println("AddRebate : doPost() : amount = " + amount);
       flag = true;
            for (int z = 0; z < rebate_sku_num.length && flag; z++) {
                try {
                         flag=false;
                    String s = "select REBATE_SKU_NUM from EASMSA_REBATE_SKU_DETAILS_TB where REBATE_SKU_NUM ='" + rebate_sku_num[z] + "'";
                    System.out.println("AdjustmentServlet : doGet() : checking sku validity query  = " + s);
                    ResultSet resultset = DatabaseConnection.executeQuery(s);
                    if (resultset != null) {
                        while (resultset.next()) {
                            RebateId = resultset.getString("REBATE_SKU_NUM");
                            flag = true;
            if ((rebate_sku_num[z] != RebateId)) {
                    System.out.println("get the values" +rebate_sku_num);
                     System.out.println("get the values" + RebateId);
                       Query = "INSERT INTO EASMSA_REBATE_SKU_DETAILS_TB " +
                                "( REBATE_SKU_NUM, REBATE_DATE, REBATE_AMT, CREATED_BY," +
                                "CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE ) VALUES (" +
                                "'" + rebate_sku_num[z] + "',  " +
                                "TO_Date( '" + "30/" + selectedMonth + "', 'dd/MM/YYYY HH:MI:SS AM'), " +
                                "'" + amount[z] + "' , '" + user_name + "'" +
                                ",  TO_Date( '" + entryDate + "', 'MM/dd/YYYY HH:MI:SS AM')" +
                                ", '" + user_name + "'," +
                                 "  TO_Date( '" + entryDate + "', 'MM/dd/YYYY HH:MI:SS AM'))";
                        System.out.println("query is executed" +Query);
                  }else if ((rebate_sku_num[z] == RebateId )){
                       Query = "update EASMSA_REBATE_SKU_DETAILS_TB set REBATE_AMT=" + amount[z] + " where REBATE_SKU_NUM='" + rebate_sku_num[z] + "'";
                       System.out.println("query is executed for updation" +Query);
                    } else {
                        System.out.println("AdjustmentServlet : doGet() : checking for sku validity : resultset null");
                       // message = "SKU '" + sku[z] + "' of customer '" + customer[z] + "' and location '" + location[z] + "' is not valid.";
                        message = "SKU '" + rebate_sku_num[z] + "' is not valid.";
                        flag = false;
                } catch (Exception exception1) {
                    System.out.println("AdjustmentServlet : doGet() : exception in checking validity of SKU");
                    exception1.printStackTrace();
                  //  message = "SKU '" + sku[z] + "' of customer '" + customer[z] + "' and location '" + location[z] + "' is not valid.";
                   message = "SKU '" + rebate_sku_num[z] + "' is not valid.";
                    flag = false;
                   try {
                        if (DatabaseConnection.executeUpdate(Query) == 0) {
                            System.out.println(" AddRebate : doPost() : rollback: error in executing update query= " + Query);
                            DatabaseConnection.rollBack();
                            message = "Some problem in updating transactions. Please try again later.";
                            flag = false;
                           // break;
                        } else {
                            System.out.println("AddRebate : doPost() : update sucessfull");
                            message = "Rebate Transactions has been updated.";
                            flag = true;
                    } catch (Exception ex) {
                        System.out.println("AddRebate : doPost() : exception in update query");
                        message = "Some problem in updating transactions. Please try again later.";
                        flag = false;
                        ex.printStackTrace();
            session.setAttribute("message", message);
            httpservletresponse.sendRedirect("Welcome1.jsp?s=y");
            return;
    [/code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • I really need help from anyone willing to help a poor guy out

    I have installed and uninstalled adobe and all of its components. I dont get any sound or video out of anysites at all. I even reinstalled windows xp pro to try and fix the problem. I have done allot of things posted and have come up empty handed. I am seriously frustrated. I have everthing up to date and atill no luck. I get sound and video on my desktop players and anything else off line please help me.

    To better assist you with this issue we need to know:
    What is your operating system? (Windows or Mac) (XP, Vista, 7, 8)
    What browser do you use? (Internet Explorer, Firefox, Chrome, Opera, Safari)
    Are you seeing any error messages?
    Can you provide screenshots of the error messages (if applicable)?

  • Help a new guys with JSP!

    Hi,
    i'm a new programer with JSP.
    I've created a class files that connect a database.
    But i would like to know how to write text with JSP?
    I would like to write a 'thank you' message after saving a form in a database.
    does its possible to have it in my class files?
    thanks for your help.

    Im not an expert on jsp or java but i will try to give my ideas.. i hope i can help you =)
    /* you could actually forward your servlet to your confirmation file like this : */
              ServletContext sc = getServletContext();
    .// just fill up here the variable msg , u cud write to its value your thank you message or something else like error messages
              RequestDispatcher rd = sc.getRequestDispatcher("/Confirmation.jsp?msg="+msg);          
              rd.forward(req, res);     
    /******* or u cud also throw ur request to the same jsp and display the ***/
    /******* message thru a form tag using javascript like this : ***/
    suppose your main jsp is this:
    <html>
    <head>
    <STYLE TYPE="text/css">
         .noBorder{
              border: white 0px solid;
              background-color: white;
              font-family:Arial;
              font-size:13px;
              font-weight: bold;
              color:green;
              width:300px;
              text-align:center;
    </STYLE>
    </head>
    <%!
    Connection conn;
    PreparedStatement pstmt;
    private doInsert(String name){
    // this is an oracle connection
    String sql = "INSERT INTO TABLENAME(FIELD1) VALUES(?)"
    try{     
    Class.forName("oracle.jdbc.driver.OracleDriver");
    // just fill up the dburl , dnusername and dbpassword
    conn = DriverManager.getConnection(dburl,dbusername,dbpassword);
    pstmt = conn.prepareStatement(sql);
    pstmt.clearParameters(); // clear any previous parameter values
    pstmt.setString(1,name);
    pstmt.close();
    }catch(SQLException se){     
    }catch(Exception e){          
    }finally{
    if(conn!=null){
         try{
         conn.close();
         }catch(SQLException se){}
    %>
    <body>
    <form method=post"" name="msgscr">
    <tr><td colspan="2"><input type="text" name="msg" value="" class="noBorder" disabled/></td></tr>
    </form>
    <%
    if(request.getParamater("submit")!=null){
    // you could also add a return value for doInsert method to check whether the dbase insertion
    // is successful or not if the return value is true then the value for the document.msgscr.msg.value
    // is thank you otherwise u cud put "Unable to process your request" or other message
    doInsert(request.getParameter("name"));
    out.println("<script>document.msgscr.msg.value='Thanks you!!!!';</script>")
    %>
    <!-- this means that the request qill be thrown on this file-->
    <form method="post">
    <tr>
    <td>NAme : </td>
    <td><input type="text" name="name" value=""/></td>
    </tr>
    <tr><td colspan="2" align="center"><input type="submit" name="submit " value="Submit"></td></tr>
    </form>
    </body>
    </html>     
    /**** or you could also do the confirmation message just by adding an **/
    /**** alert message using javascript like this: **/
    <head>
    <script language="javascript">
    function ValidateCreate(theform){
         if(theform.name.value==""){
         alert("name is required");
         return false;
         }else{
         alert("Thank you!!!!");
    return true;
    </script>
    </head>
    <body>
    <form method="post" onsubmit="return ValidateCreate(this)">
    <tr>
    <td>NAme : </td>
    <td><input type="text" name="name" value=""/></td>
    </tr>
    <tr><td colspan="2" align="center"><input type="submit" name="submit " value="Submit"></td></tr>
    </form>

  • I have an ipod 2g , The keyboard won't work! Or at least some of it's letters and numbers won't. please help i'm stuck with emojis

    i have an ippd touch 2g , a part of my keyboard won't work , i can type letters but i can't type numbers . please help i'm stuck with emojis keyboard

    Try restarting the iPod by holding down the lock and home button together and then slide the power button to turn it off and then wait 10 seconds and start it up again. If it is not a reset issue then it may be a hardware issue. Is your iPod damaged or have you dropped it recently? If it is a hardware problem then you may not be able to fix it. If your iPod has multitasking options like the new iOS devices, close out the app and then try again, it should reset your device to letters instead of emojis.

  • Brightness control does not work with the bluetooth keyboard connected on my iPad2. Please someone could help me ?

    Brightness control does not work with the bluetooth keyboard connected on my iPad2. Please someone could help me ?

    Julien-
    I have the Apple MC184LL/A Bluetooth Wireless Keyboard.  The brigtness control works with mine, as do most of the other functions.
    Try cycling the keyboard off and on.  Hold the power button until the green LED goes out.  Then press it one more time to turn it back on.
    You might try resetting the iPad's network.  Go to Settings-General-Reset-Reset Network Settings.  Then you may need to reconnect your WiFi and Bluetooth.
    If that doesn't help, try resetting/rebooting the iPad.  Hold both the Home and Sleep buttons for several seconds until the Apple logo appears.  Ignore the "Slide to power off" arrow.  The iPad will restart in a couple of minutes.  Resetting this way will not hurt anything, and sometimes clears up mysterious problems.
    Fred

  • HT5176 I have a disability that limits my keyboarding abilities and speed.  A blue tooth add-on keyboard will provide some help.  However, I expect to rely on the dictation function.  Will "dictation" work in conjunction with a wireless keyboard?

    I have a disability that limits my keyboarding abilities and speed.  A blue tooth add-on keyboard will provide some help.  However, I expect to rely on the dictation function on the ipad 3.  Inasmuch as the blue tooth keyboards have no "dictation key, will "dictation" work in conjunction with a wireless keyboard?

    I also have admiration for Steve Jobs.  I've been a Mac user since 1984.
    Given that a wireless keyboard will not have the dictation key, there ought to be some way to work around this issue. All that is needed is some way to toggle between keyboard input and microphone input. Perhaps using AppleScript and/or a hot key, I can set up a voice command or define a hotkey to toggle between the 2 inputs.
    What do you think?

  • HT1212 I have an ipod 4 touch with a broken power button and Im locked out of the ipod. How can I reset the ipod? Please help!

    I have an ipod 4 touch with a broken power button and Im locked out of the ipod. How can I reset the ipod? Please help!
    I also don't know the operating system.

    See the method in my reply in this discussion for how to place the iPod in Recovery mode w/o buttons
    Turn on without Home/Power Button

  • Apple Mac mini g4 with Apple Pro Keyboard shift key stuck on

    Hey guys,
    My mac mini g4 with Apple Pro keyboard has it's shift key stuck on and will not disable, this happened after I cleaned the keys with a "magic eraser" and is probably water damage, but when it is plugged into a PC the shift key is off and can be toggled as should be. Any help will be appericiated and if I can fix this it will save the faithful keyboard. Thanks in advance!

    Thank you chorleyman! I just need a cheap platform for Logic to run, I'm not an advanced user, just to play for my soul. I'm usually using Windows based platforms, that's why I was confused about this particular model.
    So if it looks good I think I will order this hardware next week.
    If anyone have any more thoughts about the topic, please feel free to comment here! Thank you!

  • Same issue, from Nigeria with a broken hinge

    Totally new to this forum, its sorta my last resort for help with this broken hinge so I'de love a speedy reply, I suspect my warranty hasn't expired yet tho

    What canIu guys do to help fix up my envy, the problem seems lyk a factory problem to me from all the posts I've read, And I really need this hinge fixed up

  • I need to install the HP drivers on a laptop with a broken screen in order to get VGA port to work.

    OS: Windows 7 Home Premium SP1
    Hewlett Packard Model: 2000 2a20ca Notebook
    Oh my god please give me some insight here, it is so hard to find the right answers and I refuse to lose to this technical box that's driving me nuts! So here's the run down:
    My screen broke on laptop...fine. It was connected via HDMI to TV and working fine. Until one day it decided to not turn on. I think due to Windows updates and hubby had no patience so kept restarting
    I tried to reload Windows on it, not thinking about the drivers, and I'm pretty sure I managed to reload Windows. Now I need the drivers to install chipset, networking etc. (which I have a disc for)
    The problem is I cannot see the screen in order to click "install", I can't see the BIOS or the boot sequence. Ugh! And even if I could, the drivers are not installed to use the CD ROM or VGA port.
    I can HEAR Windows start up and turn on! Doo-DO-Doo-DO lol the darn thing is working!
    The monitor works in my other laptop.
    Would/Should the VGA monitor work if I could get it to start in safe mode?
    I've heard of a program that can streamline the driver's into a Windows installation disc so everything is installed altogether but how can I reinstall Windows if the drivers aren't loaded for the CD ROM?
    Is there a way to get the necessary drivers installed? or is this notebook now garbage?

    RocknRoll77 wrote:
    Seriously? 
    1.  The model number is the first thing at the top aside from the OS.
    2.  In my explanation it states:  "I have the drivers on a disk"
    Thanks for all your help!
    Getting the drivers is not the problem.  Getting the drivers installed on a laptop with a broken screen...is the problem.
    Ok, well sometimes you can't use external monitor to see what is happening in some laptops and the only real way to fix this is to fix the broken screen so you can reformat and resinstall the system again. Those are you only options at this point in time.
    I am a Volunteer to help others on here-not a HP employee.
    Replies aren't online 24/7 because of Time Zone differences.
    Remember in this Day and Age of Computing the Internet is Knowledge at your fingertips if you choose understand it. -2015-

  • How can I get to DFU mode with a broken power button?

    How can I get to DFU mode with a broken power button?

    aarons84 wrote:
    This is bad, but i tried jailbraking my iphone
    You may as well stop there. We can't help you.

  • How to order a Macbook Pro with international English keyboard in the USA?

    Does anybody know how can I order on the US Apple Online Store a new (2011) Macbook Pro with international English keyboard?
    I don't see any possibility for that on the online store's webpage. I tried to contact an expert with the online chat support, but the link does not appears for me.
    Thanks for your help in advance!

    Call the online store & ask! A sales representative will more than happy supply you with an answer.

Maybe you are looking for

  • How to create read only Apex items

    Hi, I'm creating a report using Apex items to display the result values inside editable text boxes. They are then referred by using APEX_APPLICATION.G_F02 etc. My requirement is to make the last row of this report (the values for "Total") as non edit

  • Connecting IMAC OSX 3.9  to IMAC OS 8.6

    I have tried to connect these two computers via an ethernet connection and following the "file sharing" steps. In my Connect To Server dialog box, the old IMAC does not show up. I've also typed in the IP address of the old computer and it does not re

  • No sound after download window 8.1 pro

    After downloaded window 8.1 pro 64-bit on my hp G60-637CL notebook, I did not get SOUND again. I will apreciate any help please.

  • Data-source question

    Hi, I have defined a datasource in data-sources.xml file. If I do not specify the following parameters: max-connections min-connections then what are the default values the OC4J container takes? Secondly, on what basis are these values defined. I mea

  • Date validation via minValue in UI

    Hi, I am new in ADF so looking for some help. I have 2 inputDate in UI with behavior startDate and endDate. I am validating the date value with minValue property on endDate, like endDate should not be less than startDate. It is working fine and behav