Error with making new buttons

Here is the code, in the code I have created a new button called ClickToPlay. Though when I compile this code I receive an error telling me that it cannot find symbol
symbol: constructor Button(java.lang.String)
location: class Button
ClickToPlay = new Button("Click her to play");
Please, someone try to find the error and help me out here, here is the code.
import java.applet.*;
import java.awt.*;
import java.net.*;
public class DrakonTitle extends Applet implements Runnable
     Font bigFont;
     Font NotSoBig;
     int xPos = 100;
     int yPos = 200;
     int radius = 20;
     Image ScreenChar;
     URL base;
     MediaTracker mt;
     private Image dbImage;
     private Graphics dbg;
     public void init()
     mt = new MediaTracker(this);
     bigFont = new Font("Arial",Font.BOLD,100);
     NotSoBig = new Font("Arial",Font.BOLD,30);
     Button ClickToPlay;
     ClickToPlay = new Button("Click here to play");
     add(ClickToPlay);
     try
          base = getDocumentBase();
     catch(Exception e) {}
     ScreenChar = getImage(base,"FrontScreenCharacter.jpg");
     mt.addImage(ScreenChar,1);
     try
          mt.waitForAll();
     catch(InterruptedException e)
     public void start()
          Thread th = new Thread(this);
          th.start();
     public void stop()
     public void update (Graphics g)
     if (dbImage == null)
     dbImage = createImage (this.getSize().width, this.getSize().height);
     dbg = dbImage.getGraphics ();
     dbg.setColor (getBackground ());
     dbg.fillRect (0, 0, this.getSize().width, this.getSize().height);
     dbg.setColor (getForeground());
     paint (dbg);
     g.drawImage (dbImage, 0, 0, this);
          public void destroy()
          public void run()
               while(true)
                    xPos++;
                    repaint();
                    try
                         Thread.sleep(17);
                    catch(InterruptedException ex)
     public void paint(Graphics g)
          g.setFont(bigFont);
          g.drawString("Drakon:",45,100);
          g.setFont(NotSoBig);
          g.drawString("Lord of Lords",100,160);
          g.drawImage(ScreenChar,xPos-radius,yPos-radius,2*radius,2*radius,this);
}

It is likely that you have a Button class on your computer that is not java.awt.Button and javac is finding this class. If you add "import java.awt.Button;" or change the line to "java.awt.Button ClickToPlay" and "ClickToPlay = new java.awt.Button......" it should work.

Similar Messages

  • Overide on-error with when-new-button-pressed

    Hi,
    I have a big problem and not much time to solve it so posting on here hoping someone will know the answer. I have put an exit button on my form which calls a method that uses GO_FORM to return to a menu page.
    I don't want to close oracle forms down completely so I can't use the exit_form command. However I want the close button to return the user to the menu without validating or saving the current form.
    My problem is that I catch errors in a date field using an on-error trigger and this always fires before the when-button-pressed meaning my user gets an error before leaving the form.
    How do I ignore the on-error trigger when my close button is pressed and not when exiting the field which contains the date.
    I have tried setting the execution hierarchy to after on the on-error and override on the when-button-pressed but this seems to have no effect.
    Thanks for any help
    Dan

    One solution would be to add a menu for the form. For some reason menu items and toolbar buttons don't cause the loss of focus to occur. If you used a menu to fire a trigger to close the form then you could set a flag that could be checked in your on-error trigger. If the flag was true(or whatever) then you don't perform your validation.
    I'm usually angry that the toolbars and menus don't cause those triggers to fire, but I've had a couple cases similar to this where it actually works out for the better. Not sure if having a menu for, what sounds to me like, a dialog will look the best, but it should work.

  • How to show system form with a new button

    Hi experts,
         I created a new button on the sales order system form, I need that the new button calls other system form, How can I show a system form with my new button?
    Thaks.
    César Lemus.

    Hi César,
    On the Item Pressed Event of the button, Write the code to show the other system form. The sample for this is as follows.
    Case SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED
                          If pVal.ItemUID = "URButtonID"
                                    SBO_Appln.ActivateMenuItem("Menu ID of ur system form.")
                          EndIF
    Hope this is helpful. If yes reward points.
    Regards,
    Vasu Natari.

  • Error with "Add new Row" button in Master detail VO

    Hi,
    Am having a header VO , Forecast HeaderVO and a child VO
    ForecastLineVO, now forecastHeaderVO has two bind condition attached to it,and when we run header Vo line VO will automatically execute as they are linked by a view link.My child Vo is attached to a advance table, which has a ADD Another Row button,Now when i press the button for the case where no header is is there it shows me a error"Failed to find or invalidate owning entity".
    Below am giving the coding what i have written in the AM to handle the Add New Row button,
    public void createForecastTarget(String month, String year,String fortnight,String forecastmonth,String forecastyear)
    ForecastLineVOImpl vo1=getForecastLineVO();
    ForecastHeaderVOImpl vo=getForecastHeaderVO();
    System.out.println("Start");
    vo.setWhereClauseParam(0,month);
    vo.setWhereClauseParam(1,year);
    //vo.setWhereClauseParam(2,fortnight);
    vo.setWhereClauseParam(2,forecastmonth);
    vo.setWhereClauseParam(3,forecastyear);
    vo.executeQuery();
    if (!(vo1.isExecuted()))
    throw new OAException("ASF", // Message product short name
    "MIS_SEARCH_PENDING");
    // We need to do this on a VO that has not been queried before we insert
    // our first row. We don't want to do it for subsequent inserts.
    System.out.println(vo.getFetchedRowCount());
    if (vo.getFetchedRowCount() == 0)
    // vo.setMaxFetchSize(0);
    int rownum = vo.getFetchedRowCount() ;
    OARow row = (OARow)vo.createRow();
    int rownum1 = vo1.getFetchedRowCount() ;
    System.out.println("In between");
    OADBTransaction transaction = getOADBTransaction() ;
    Number forecastid = transaction.getSequenceValue("MIS_FORECAST_HEADER_S");
    Number forecastlineid = transaction.getSequenceValue("MIS_FORECAST_LINE_S");
    System.out.println(forecastid+" "+forecastlineid);
    row.setAttribute("ForecastId",forecastid);
    row.setAttribute("DataEntryMonth",month);
    row.setAttribute("DataEntryYear",year);
    row.setAttribute("DataEntryFortnight",fortnight);
    row.setAttribute("ForecastMonth",forecastmonth);
    row.setAttribute("ForecastYear",forecastyear);
    vo.insertRowAtRangeIndex(rownum,row);
    vo.clearCache();
    transaction.commit();
    // Required per OA Framework Model Coding Standard M69
    row.setNewRowState(row.STATUS_INITIALIZED);
    OARow row1 = (OARow)vo1.createRow();
    row1.setAttribute("ForecastId",forecastid);
    row1.setAttribute("ForecastLineId",forecastlineid);
    System.out.println("forecast id"+forecastid);
    vo1.insertRowAtRangeIndex(rownum1,row1);
    // Required per OA Framework Model Coding Standard M69
    row1.setNewRowState(row1.STATUS_INITIALIZED);
    else
    int rownum2 = vo1.getFetchedRowCount() ;
    System.out.println(rownum2);//+vo1.getCurrentRow().getAttribute(1))
    System.out.println(vo.first().getAttribute("ForecastId"));
    OARow row2 = (OARow)vo1.createRow();
    row2.setAttribute("ForecastId",vo.first().getAttribute("ForecastId"));
    OADBTransaction transaction = getOADBTransaction() ;
    Number forecastlineid1 = transaction.getSequenceValue("MIS_FORECAST_LINE_S");
    row2.setAttribute("ForecastLineId",forecastlineid1);
    // row2.setAttribute("DeleteAttr", "N");
    vo1.insertRowAtRangeIndex(rownum2,row2);
    // Required per OA Framework Model Coding Standard M69
    row2.setNewRowState(row2.STATUS_INITIALIZED);
    System.out.println("forecast line id"+forecastlineid1);
    Now while debugging i found out that am getting the error in the if block
    in the code
    OARow row1 = (OARow)vo1.createRow();

    Hi,
    Summit ,again am getting the error and i think am getting it in the line when am trying to create one for line VO
    as OARow row1=(OARow)vo1.createRow();
    Below am giving the stack trace
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidOwnerException: JBO-25030: Failed to find or invalidate owning entity.
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1142)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1294)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2396)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1512)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:463)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:384)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidOwnerException: JBO-25030: Failed to find or invalidate owning entity.
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862)
         at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:985)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:210)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:152)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:692)
         at mis.oracle.apps.asf.dcp.frcst.webui.ForecastDealerCO.processFormRequest(ForecastDealerCO.java:158)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:734)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:352)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:943)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1546)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:929)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:895)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:751)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:352)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:373)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:929)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:895)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:751)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:352)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:340)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2392)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1512)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:463)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:384)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidOwnerException: JBO-25030: Failed to find or invalidate owning entity.
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862)
         at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:985)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:210)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:152)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:692)
         at mis.oracle.apps.asf.dcp.frcst.webui.ForecastDealerCO.processFormRequest(ForecastDealerCO.java:158)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:734)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:352)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:943)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1546)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:929)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:895)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:751)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:352)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:373)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:929)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:895)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:751)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:352)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:340)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2392)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1512)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:463)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:384)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    Please help.

  • Time Machine Error with brand new WD My Book Studio Edition

    I have a brand new iMac and just bought a new WD My Book Studio Edition 500 gb HD for specific use with my Time Machine. The iMac has a 500 HD is about 3 months old and the WD HD is brand new. I am getting an error when I try to activate and back up with Time Machine that says, " Time Machine Error. This backup is too large for a backup volume. The backup requires 524.4 gb but only 465.5 gb are available. To select a larger volume, or make the backup smaller by excluding files, open System Preferences and choose Time Machine."
    I copied the files from the Time Machine to my hard drive to make as much space as possible. I have a capacity of 465.44 GB and 28.48GB of free space on my MacHD. I have a capacity of 465.64 GB and 465.49 GB of free space on my WD. It is formatted Mac OS Extended (Journaled) the way it was originally sold. I have not tried to reformat. Not too sure about how to. But I have tried all of these scenarios.
    I have tried the following and nothing works to get Time Machine backing up at all:
    1. I have changed the preferences in Time Machine Options to a smaller file size excluding the applications folder (appx. 12 GB),
    2. I have zapped the P-RAM,
    3. I have reset the index in the Spotlight by putting my Macintosh HD and Time Machine in the Privacy section, let it reindex and then pulled it out, and
    4. I have deleted the preferences in Macintosh HD>Library>Preferences>com.apple.TimeMachine.plist.
    Nothing is working and I bought the HD when I was home visiting in the states and I live in Bogota, Colombia. Quite hard to return HD.
    Can anyone help me?
    Thanks,
    Marsh64

    You have a nearly full 500 GB hard drive and you are trying to use TM with a 500 GB hard drive - but the way TimeMachine works, your TimeMachine hard drive should be at least twice the size of your backup data. In other words, to use TM effectively you should have bought a 1 TB external drive.
    With a 500 GB drive for backups, you need to determine exactly what has to be backed up and what can be left out. If you open the TimeMachine preferences you'll see that there's an Options button. Click it and you can select folders to exclude from backing up. For example, you might decide that you don't need to back up your music because it is all on your iPod anyway and the Mac OS and your applications are all on CD so those can be left out. By carefully paring the list down you may be able to get your backup data down under 250 GB and if so, then TimeMachine will do the job for you.
    Another solution would be to drop TimeMachine as your backup solution and simply use a program such as SuperDuper! or CarbonCopyCloner (CCC) to perform your backups. There are advantages and disadvantages to each backup method. As you mull your options, don't be afraid to ask more questions.

  • Help with making new DBs on 8i - PLEASE!

    Hi there! I'm trying to set up anther database on my system (besides the default one). I am running 8i on Windows 2000. I've been setting up databases all day on NT4 machines using Oracle 8 Server so I figured I'd try it at home.
    However, I've encountered a few problems. Obviously the files are in different locations, but some of the commands are differnt too. So I'm hoping someone can help me out.
    Right now I'm trying to create a new service for my new database. The command I've been using for NT4 is:
    ORADMIN80 -NEW -SID TEST -INTPWD TEMP -STARTMODE AUTO -PFILE C:\ORANT\DATABASE\INITTEST.ORA
    I've had to modify that for differnt directory location as well as the absence of ORADMIN80 on Win2000, I'm assuming ORADMIN is the same?
    ORADMIN -NEW -SID TEST -INTPWD TEMP
    -STARTMODE AUTO -PFILE C:\ORACLE\ADMIN\JONATHAN\PFILE\INITTEST.ORA
    But when I execute the command I get an error informing me that:
    DIM-00003: AN ARGUMENT IS MISSING FOR THE PARAMETER
    Can anyone help me?

    Hi,
    Try with ORADIM instead of ORADMIN.
    Hope this helps,

  • Bizarre Error with backwards play button

    I am getting this bizarre error message that appears with a backwards play button and tells me "This computer will reboot in 5 minutes AFTER YOU CLICK OK. Please save everything you are working on and log out by choosing Log Out at the bottom of the Apple Menu." It appeared about a week ago and after I rebooted, I lost all of the icons in the menu bar at the upper right. I was able to get all of the icons back but now am seeing this error again. So far, it seems like it can be ignored, but I'm not sure if it will continue letting me do so. Screenshot of the issue is below.

    I'm confused by what this means, "I've tried eliminating the initial stop(); script, but then it doesn't play the movie at all and just goes to the next frame." It would seem that going to the next frame would be the movie playing? But in any event, yes, if your remove the stop then there is no reason for the playhead to stop on that screen and so it would just keep going AND in 4 seconds (more or less) it would also execute that function so you would be in a world of hurt.
    As for the my_timedProcess variable. That is just a number that will allow you to stop the 4 (more or less) second wait. Suppose you had a replay button that allowed the welcome to be played again. Well in that case you would want to stop the function from getting called during the replay so you could add some code to the replay button like this:
    clearTimeout(my_timedProcess);
    Also it seems a little strange that you are passing your function the number 1. Why are you doing that? You don't seem to be using arg1.
    Finally onto your real reason for posting. I have no idea why that wouldn't work. Have you tried it with IE6 on a non-hand held device? Is the real problem the 6-ness or the mobile-ness?
    Back in the day when IE 6 was more common there were occasional cache/timing issues that could often be very tricky to diagnose. Are you sure that all your content has loaded?
    Are you sure that your client has the correct Flash plugin installed for IE 6 on their device? Many times the, "It doesn't work on this one platform/computer/for this one person" issue is really that the person doesn't have the correct plug-in installed -- EVEN WHEN they swear they do. Really you would be surprised at how often that is the case.
    Other than that I don't know what could be causing it.

  • Printing errors with BRAND NEW Envy 4500 printer!!! Not happy.

    I've tried all the troubleshooting info available on the web. I even installed "HP print doctor". What is happening is that ALL of my test pages are printing fine but NONE of my jobs are printing to completion. If it's a 2 line document, sure. But more than one page or even a long page? Forget it. I get an error on my computer that the print job failed. It cancels itself and then ejects the paper or gets stuck and the printer is perpetually stuck in "printing" mode and I have to manually cancel it. It really took a lot of energy to set this up so I really don't want to pack this thing up and ship it back but I sure as heck will and I'll never buy another HP printer again. The last one had faulty software too and I had to find a hack on the internet to fix it which basically meant removing the wireless hardware from the machine. It worked but I am not doing this on a brand new printer. Give me a fix, please.

    Hi , Welcome to the HP Forums! I understand that you are having some sleep mode issues with your HP Envy 4500. I am happy to look into this for you!  Some questions for you:  How is your printer connected? Wireless, or USB?Are you using Genuine HP Ink Cartridges, or refills? Are you able to make copies with your printer? Copying Documents. In the meantime, I would suggest a hard reset, by going to this post, How to perform a Hard Reset, by . It is important that your printer's power cable is plugged directly into the wall outlet, and not a surge protector. Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector. This applies to Inkjet printers as well. Then, I would double-check the printer's firmware is up-to-date. Getting Printer Updates for HP Deskjet Ink Advantage 3540, 4640, HP ENVY 4500, and HP Officejet 4630 e-All-in-One Printer Series. We will start with these two steps, and see what happens!  Hope to hear from you soon!  “Please click the Thumbs up icon below to thank me for responding.”

  • Fluke45 error with a new PC

    Hi, 
    I used a Fluke45 to read a AC voltage. The program works well in an old computer however, it shows an error when I use a new PC to control it. The error is attached. I doubt if it is the bus interface problem since when I opened the program, it also shows there are warnings. I attached both warnings and program also. Thanks. 
    Attachments:
    Fluke45 error.png ‏156 KB
    warning.txt ‏8 KB
    AC.vi ‏56 KB

    Hi hxw,
    The error you are seeing is a timeout error:
    “Error -1073807339 occurred at an unidentified location
    Possible reason(s):
    VISA:  (Hex 0xBFFF0015) Timeout expired before operation completed.”
    There are many reasons why you could be seeing this error including a bad connection to your device, but you may want to start here:
    Why do I Receive Timeout Error -1073807339 on VISA Read or Write?
    Jayme W.
    Applications Engineer
    National Instruments

  • Having trouble with making new internet tabs and windows

    When I open a new tab or new window, some small blank black windows appear and disappear right away. I have tried running virus scans, uninstalling unnecessary programs and deleting memory but they still pop up. Also after the blank windows disappear, there is a "not responding" after the blank windows disappear, for about 10 seconds and then resumes normal

    Well first, the version of Firefox you are running is EXTREMELY old and insecure. Please update to Firefox 11 right away. [[Updating Firefox]] can help you with that.
    After doing that, if you are still having issues, Try to start Firefox in [[Safe mode|Safe mode]]. This mode disables all extensions, user customizations, hardware acceleration, etc. temporarily for diagnostic and troubleshooting. If Firefox works fine in Safe Mode, then this is likely an add-on issue. Restart Firefox in normal mode, then type "About:addons" (without the quotes) in the address bar. Disable your extensions one by one, restarting Firefox between each one, until you find the trouble maker. Once you do, you can disable that add-on and report the issue to that add-on's developer.
    A few other basic trouble shooting things you can try is this:
    Run all Windows Updates, install all needed service packs, etc.
    Update your graphics driver (Firefox uses your graphics card for some rendering, and an out of date graphics card driver can cause problems. [https://support.mozilla.org/en-US/kb/how-do-i-upgrade-my-graphics-drivers https://support.mozilla.org/en-US/kb/how-do-i-upgrade-my-graphics-drivers].
    Update all your plugins (Flash, Java, etc.): [http://www.mozilla.org/plugincheck/ http://www.mozilla.org/plugincheck/].
    Download and Install MalwareBytes Anti-Malware, run a full Scan. [http://www.malwarebytes.org/ http://www.malwarebytes.org/]. This helps check that there are no viruses on your computer causing issues. You can uninstall this program after you clean off any infections.

  • Encounter error with command "New-MailboxFolder" (The specified mailbox doesn't exist)

    [Symptom]
    ======================
    Generally, a user can use “New-MailboxFolder” command to create mailbox folder for his own mailbox successfully. See the following example:
    The above command creates a new folder named “PersonalFAQ” in the mailbox of Administrator.
    However, this command cannot be used to create folders on other user’s mailbox although the full access permission is assigned. See the follow example. (We already granted the full access permission of
    test1 user to administrator user)
    Just as what the picture shows, an error message will appear:
    “The specified mailbox “username” doesn’t exist.”
    [Cause Analysis]
    =======================================
    It’s by default. The “New-MailboxFolder” command cannot be used to create folders for other mailboxes.
    [Workarounds]
    ==============================
    1. Use EWS channel to create the folders for other mailboxes.
    http://msdn.microsoft.com/en-us/library/office/dn535504(v=exchg.150).aspx#bk_createfolderewsma
    2. Use MFCMAPI:
    3. PFDAVADMIN (Exchange 2003/2007) or Exfolders (Exchange 2010)
    More information:
    Creating Folders (Exchange Web Services)
    http://msdn.microsoft.com/en-us/library/office/aa563302(v=exchg.140).aspx
    New-MailboxFolder
    http://technet.microsoft.com/en-us/library/dd335113(v=exchg.150).aspx
    Microsoft Exchange Server MAPI Editor
    http://www.microsoft.com/en-gb/download/details.aspx?id=2953
    Exchange 2010 SP1 (and later) ExFolders
    http://gallery.technet.microsoft.com/office/Exchange-2010-SP1-ExFolders-e6bfd405
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Since this issue is related to only one user, this means that the USERPARAMS information for this user is corrupted.
    The issue could be resolved by deleting all entries related to this user on this table on the HFM DB.
    Kindly open the HFM DB and look for the <application name>_userparams table.
    and,
    Delete the enteries corresponding to the user.Backup this table prior truncating the table.Please get this operation done by an administrator.
    Edited by: user10931567 on 16-Jul-2009 10:03 AM

  • Error with boot new zone

    hi from Bulgaria
    I've made 3 non-global zones and everything was fine but after i tried to the four one the following error occur
    when i tried to boot it:
    bash-2.05b# zoneadm list -vc
    ID NAME STATUS PATH
    0 global running /
    2 zone3 running /zone/3
    3 zone2 running /zone/2
    4 zone1 running /zone/1
    - zone4 installed /zone/4
    bash-2.05b# zoneadm -z zone4 boot
    zoneadm: zone 'zone4': bge0: could not add interface: No buffer space available
    zoneadm: zone 'zone4': call to zoneadmd failed
    Regards
    Sofia, Bulgaria 8.26.2004

    Hello,
    Which build are you running (uname -v)?
    Can you try the following command:
    # ifconfig bge0 addif 1.2.3.4/24 up
    and see if it produces the same error message ("No buffer space available")?
    Thanks,
    Blaise

  • ITunes error with a new video card

    I just installed a new video card. Geforce 9800gt.
    Now when I start iTunes, the grid that lists the songs is shades of pink rather than gray. And the playlists appear blurry.
    I have the latest drivers.
    Has anyone else encountered this? Any suggestions?

    Thanks!
    That was exactly the issue.
    I never thought about looking there. No telling how long I would have overlooked it.

  • Extend standar class with new button(method)

    Hi,
    I want to create new button in standard class /SAPSRM/IF_PDO_AO_BP_BASE.
    Does anyone know how to extend the class with a new button?
    Very thanks.

    I NEED TO CREATE NEW BUTTON IN THIS CLASS.
    THE BUTTON MUST SHOW A POP-UP WHEN PARTNET HAVE DOCUMENT´S IN SYSTEM.
    CAN YOU HELP ME?

  • Making a button rollover change a movie clip's frame

    Hi again everyone,
    I knew how to do this in AS2 but now I am having problems
    with making a button on the stage goto a frame in a movie clip on
    the stage.
    I've attached a sample of my code below, hopefully you'll see
    the error and be able to point it out to me?
    I have a movie clip on the stage that has different
    information in different frames. I want to make it so that when
    someone rolls over the button, the movie clip fades in and goes to
    the correct frame to display the information.
    With this setup the way it is below, I keep getting "Warning:
    3590: void used where a Boolean value was expected. The expression
    will be type coerced to Boolean.
    I know where the problem is happening, "function
    XXX(event:MouseEvent):void {navigateToURL(XXXweb)}"
    How can I write this differently and eliminate this problem?
    Thanks,
    Jeremiah

    I'll give that a shot, thanks!
    A follow up question to that one, is there a way to make it
    so that I can have one rolled over function applied to several
    buttons / frames in the movie clip? This movie clip has 50+ frames
    in it and if I could reduce my coding, it would make life a lot
    easier.
    Thanks,
    Jeremiah

Maybe you are looking for

  • IPad messages no longer works after ios7 upgrade

    After upgrading to ios7 on my iPad messages no longer works. After I enter To: I am unable to get to the message field to enter the message. Reboot does not solve the issue,

  • Changing Lion PDF default security settings

    After I create a document in Word or Pages, I save them as a pdf.  I then want to digitally sign them in Adobe Reader.  But the default security settting when saving as a pdf does not allow adding a digital signature.  Anyway to change the default OS

  • How do I align check boxes with text in the form?

    I'm most of the way there but I am stuck fixing the formatting misalignments. 1. What controls the little checkboxes? What's the best way to align them with the text? 2. Part of the form is controlled by some form-specific css and  part is getting in

  • Procedure for Clearing Open Transfer Requirements & Posting Changes

    Dear All, With my present SAP System, both IM & WM Stocks are zero for a given Sales Order / Line item. But there are pending Transfer requirements & Posting changes due to the fact that the users have not completed up until the TO Confirmation Stage

  • Secure APO Planning book by location

    Hello All - I am hoping you can help me. I have been trying to find a way to secure updates to a shared planning book in DP by Sales-Org. The Sales-Org in our environment is a "navigational attribute" and not a "characteristic". I tried creating a cu