KMODE EXCEPTION ERRO

My HP 430 ProBook Laptop was working well with Windows 8 until I opted for Windows 8.1 and that is where the problem started. Whenever i plug in the power cable, the screen turns blue displaying a statement i.e. ".....KMODE Exception error not handled....".
When I reboot the PC while on power, the problem still persists. When i unplug the power cable and reboot the PC, the windows will function normally. What is most likely to be the problem? Kindly help.

Hi!
To be certain of the problem, please upload the dmp-files located under "C:\Windows\Minidump" and share with us, these files will contain the information needed to fully find the root cause of the problem.
Without having the dumps, the most likely issue is that there is some software from HP that isn't 100% supported, my best guess is the power-management tool that is shipped with the computer. Try and update this software to the latest version released or
uninstall it to see if this helps.
Best regards
Andreas Molin
Andreas Molin | Site: www.guidestomicrosoft.com | Twitter: andreas_molin

Similar Messages

  • What is the solution of  non-oracle exception erro 100501

    what is the solution of non-oracle exception erro 100501

    I'm guessing that the TRUE parameter in My_Alert causes the procedure to raise a form_trigger_failure. In that case you could do this:
    Declare
      A number(10);
    Begin
      SELECT Sif_Code
      INTO A
      FROM Pro_Stp_Rcp_Item
      WHERE Sif_Code = :Pro_Stp_Rcp_Item.Sif_Code
      AND Rou_Code = :Routes.Rou_Code;
      My_Alert('Item Code Already Registered',1,TRUE);
    Exception
      When form_trigger_failure then
        raise;
      When No_Data_Found Then null;
      When Too_Many_Rows
        Then My_Alert('Item Code Already Registered',1,TRUE);
      When Others
        Then My_Alert(Sqlerrm||' - '||sqlcode,1,TRUE);
    End;As Steve says, the problem is really caused by When Others here. I've got no problem with trapping "Others" but in forms you might be better off having a generic catch-all in the on-error trigger.

  • Jre.exe priviliged exception erros

    When I attempt to install the J2EE SDK version 1.3.1 on Windows NT 4 I keep getting a jre.exe priviliged exception error.
    �The exception Privileged instruction (0xc0000096) occurred in the application at location 0x00010106�
    Does anyone know what this problem is ?
    I also get this when installing on the CAS-COM bridge.

    There are a not properly execution with JIT Compiler Library (symcjit.dll) and Pentium 4 processor systems.
    For more information search "symcjit.dll" in Java Foruns or Microsoft Suppor or access directly http://www.intel.com/support/processors/pentium4/issues.htm
    Good luck.
    Cali - Brasil

  • 8530--will not complete sync, receiving FREQ uncaught exception erros prior to sync

    I am having a NUMBER of issues with my curve 8530.  The most IMMEDIATE issue is I tried to do a sync and now it is seemingly stuck.  I tried to stop and they sync process indicates it is cancelling but it appears "stuck."  Of course software says not to disconnect until sync is complete but it would be nice if I remove it from my computer before I have to go work tomorrow...as it used for both work and personal purposes.
    Additional issues I'm having now on a daily basis include uncaught exception errors with phone, bbm, and my internet.  The phone uncaught exception error always occurs after I disconnect a call and the phone freezes showing the call as still connected however call timer and clock are no longer accurate.  Please bear in mind this does not occur EVERY time I disconnect from a call and I have not been able to predict when it will begin having this issue.  It also appears to randomly give me uncaught exception errors when using my email, text (SMS) feature and internet.  I'm so very frustrated as this is my second BB Curve 8530--my 1st one had to be replaced after these errors began occurring and finally the phone would not reboot at all.
    I greatly appreciate any help & feedback!!!

    Ok the sync FINALLY gave up...but any insights on these other issues would still be greatly appreciated!!! Or even the reason for the hangup with the sync...
    Thanks again!

  • [Urgent] KMODE Exception

    Hi All,
    I have this serious problem launching java applications on one of the machines at my office, the jdk1.3.1 works fine but when I use j2sdk1.4.1_05 or higher I get BSOD (KMODE_EXCEPTION) and system crashes.Can anyone help me on this?
    ** Not even demo applications provided with j2sdk work
    Thanks in advance
    Ashish

    Did you try [url http://search.java.sun.com/search/java/index.jsp?qp=&nh=10&qt=%2B%22kmode_exception%22&col=javaforums]searching the forums to see if this question had been asked before?

  • X1 Carbon Won't start - with bonus flashing lights !!

    Hi everyone. Had my X1 Carbon (2014) for about 3 days now. All of a sudden it has a special moment. The display starts to show  hundreds of horizontal black lines each about 1.5cm in length. The very helpful windows message shows a Sad Face and the message "Your PC ran into a Problem and needs to restart. We're just collecting some error info and then we'll restart for you (0% complete)
    plus the bonus info -
    KMODE Exception Not Handled (luaf.sys)
    Needless  to say, the computer never restarted.So I gave it a little help by holding down the On/Off button to force a restart.
    The machine restarted successfully, worked for three minutes  (ie went to web browser and Word) and then the same thing happened.
    I did another hard restart. Now the machine is locked in an Endless Disco Loop (new technical term I know) where the keyboard lights flash and then the on-off button flashes 3x and then continues.
    Any ideas - apart from Return to Sender, Get refund, Go buy a Mac ?
    (Needless to say the idea that there is ZERO formal tech support available on a Weekend, Sucks, Terminally in my opinion.)
    Can anyone help ?

    Hello, I am having the exact same problem.  Was this ever resolved?  The laptop is only 1 week old. 

  • Finding the width and height of an image

    Hi...
    i have a path to an image "images/me.gif" and i'm trying to find its width and height.. am trying to use javax.swing.ImageIcon but it refuses to recognise the constructor with just the filename (string) parameter, and needs a URL to the file... anyone knows what i'm doing wrong??? is this the wrong class that i'm using...!??!?!?!?!?

    String filename = "images/me.gif";
    Image myImage = carregarImagem(filename);
    System.out.println(myImage.getWidth(this));
    System.out.println(myImage.getHeight(this));
    * M�todo que carrega imagens na mem�ria, a partir da URL onde o
    * applet est� sendo carregado. O uso de um 'mediaTracker' � fundamental para
    * evitar problemas quanto � velocidade de carga de uma imagem. Se voc� n�o
    * usar um mediaTracker, o seu c�digo pode tentar usar uma imagem antes dela
    * estar plenamente carregada na mem�ria, o que causaria um erro de execu��o.
    * @param nomeDaImagem O nome da imagem a ser carregada
    * @return A imagem requisitada ou null caso n�o haja tal imagem na url do applet
    public Image carregarImagem(String nomeDaImagem)
                   try
                                   Image imagem = getImage(getDocumentBase(), nomeDaImagem);
                                   MediaTracker carregador = new MediaTracker(this);
                                   carregador.addImage(imagem, 0);
                                   carregador.waitForID(0);
                                   return imagem;
                   catch(Exception erro)
                                   erro.printStackTrace();
                                   System.exit(0);
                                   return null;

  • Problems with java.lang.Double in a Pojo

    Hi!
    I'm getting some problems with a Double (wrapper class) in a sub-report related with a Pojo.
    The exception has more than 100 lines.
    It's starts with:
    at com.crystaldecisions.sdk.occa.report.application.ds.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.if(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at br.inf.teorema.javautils.util.CrystalReportsUtils.export(CrystalReportsUtils.java:520)
    Caused by: com.crystaldecisions.sdk.occa.report.application.b6: Valor nulo inesperado localizado para o membro Produto.getAliquotaICMS. (UNEXPECTED NULL VALUE ... )
    at com.crystaldecisions.sdk.occa.report.application.b6.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.de.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.de.if(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.de.getDouble(Unknown Source)
    and ends with:
    [JRCCommunicationAdapter]  detected an exception: Erro inesperado do conector do banco de dados (UNEXPECTED ERROR WITH DATABASE CONNECTOR )
         at com.crystaldecisions.reports.queryengine.Row.char(Unknown Source)
         at com.crystaldecisions.reports.queryengine.Row.getValue(Unknown Source)
         at com.crystaldecisions.reports.datalayer.a$d.getValue(Unknown Source)
         at com.crystaldecisions.reports.saveddata.saveddata.SavedData.a(Unknown Source)
         at com.crystaldecisions.reports.saveddata.a.a(Unknown Source)
         at com.crystaldecisions.reports.saveddata.a.a(Unknown Source)
         at com.crystaldecisions.reports.basicdataengine.a.p(Unknown Source)
         at com.crystaldecisions.reports.basicdataengine.a.a(Unknown Source)
    It occurs when my Double has null value. When I put "0.0", there are no problems.
    Anyway, in specifics contexts, null != 0.0.
    I think it's a bug. Someone encountered the same problem?

    Sorry for my insistence, but this problem occurs only for me?
    I will explain better.
    If I have a report that show the value of a Double field, the getter method should be:
    public Double getMyField() {
        return myField;
    But if myField == null, I can't generate the report.
    So, I did:
    public Double getMyField() {
        if (myField == null) {
            myField = 0.0d;
        return myField;
    I wish don't need to do this correction in getter method.
    CR do not works this way with Double?
    I have tested, and String works fine.

  • Dual Soundblaster Audigy Inst

    Oddly, this is not going well at all. Some history first.
    I'm sure many would question the why's. I've seen other people post that they want to use two soundcards and everyone says why.
    I play alot of video games, and use voice chat. I'd like to hear game sound from my 5. sound system, and hear voice chat in a headset.
    I used to use two computers to accomplish this, but recently, my spare had a harddri've problem and went down. So i went to a local vendor and got a Soundblaster Audigy SE about 2 days ago. Testing with that and my onboard sound has been abysmal. Usually within a couple minutes, the setup will interact unfavorably with a videogame. With a game (eve-online or FFXI Online) running on one card (doesn't matter which) and Teamspeak/roger wilco/ventrilo running on the other, the game tends to get buggered up (popping sounds, then eventually the graphics either get very messed up, like the game losing track of where my character is). If i only use one app on one card, or both apps on one card, no issues.
    So, last night i went and bought another SB Audigy SE, thinking that perhaps there was a clocking issue with the on board card. Maybe, maybe not, as right now, as soon as windows attempts to bring both cards online during an acti've session of windows, it crashes/reboots immediately. If both cards are started during startup, the machine throws a Kmode exception 0xe bluescreen and hangs. I did disable the onboard card before attempting any of this, and reset the ESCD via bios.
    I attempted to uninstall the drivers and install both cards simultaneously by doing a fresh install, this just results in the Kmode blue screen. In safe mode, with both cards acti've, if i change the settings on one card, the settings on the other card change as well. I had read on the internet (various google results) that sometimes installing two of the exact same card will result in your system thinking both cards are the same card.
    So, i'm looking for a solid "I've seen/done this and you can fix it by:..." sort of answer, but any musings would be helpful too.

    I *think* you have WhatUHear as the record device. Open up the Creative Control Panel (volume) and the far right option with the word Rec as the heading may have WhatUHear under it. You can click a drop down arrow and chose Microphone. Also, in Control Panel go to Sounds and Audio Devices, Audio Tab and click volume for Sound Recording. Make sure the tick is in the Microphone column.

  • NT Kernel error 1256 and vturr.exe

    Hi everybody!
    I'm having troubles with my computer, 'cause when the system starts, shows the following messages:
    NT kernel error 1256 KMODE exception not handled.
    Then I get another windows and it says windows can not acess the path or file window/system32/vturr.exe
    And the last one says error loading windows\system32\ruecxbga.dll.
    And as consequences I'm having problems with internet explorer, and messenger. They appear sometimes as not installed, although they are and I have to install them again or they freeze.
    Does anybody have any idea of how I should solve the problem??
    Thanks a lot
    Vero

    Hi
    A little bit more feedback can be useful. Which notebook model you have? I can not imagine that this kind of messages occurs without any reason. Have you done something strange last days?
    Do you use your own OS installation or maybe is your notebook preinstalled with recovery media (factory settings)?
    As Jimi already wrote, try to scan the HDD for possible viruses.

  • Calling ejb from ejb of other container

    Hi,
    My problem is : I have one application that call one EJB. This EJB must call another EJB from other container, in other server... Is it possible ???? How can I make this ????? I'm trying to call BuscaEnderecoHome from BuscaCEPBean....
    I'm trying to do that but I'm having the following problem :
    Oracle9iAS (1.0.2.2.1) Containers for J2EE initialized
    Exception --> Erro em setSessionContext (ServicoPostalECTBean) - ERROR :
    ejb/BuscaEnderecoHome not found in BuscaCEPBean
    java.lang.NullPointerException
    at com.ect.corporate.ejb.CEP.consultaPorCep(CEP.java:78)
    at com.ect.corporate.ejb.BuscaCEPBean.consultaPorCEP(BuscaCEPBean.java:7
    2)
    at BuscaCEP_StatelessSessionBeanWrapper0.consultaPorCEP(BuscaCEP_Statele
    ssSessionBeanWrapper0.java:54)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:66)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:62)
    Erro null

    Hi,
    My problem is : I have one application that call one EJB. This EJB must call another EJB from other container, in other server... Is it possible ???? How can I make this ????? I'm trying to call BuscaEnderecoHome from BuscaCEPBean....
    I'm trying to do that but I'm having the following problem :
    Oracle9iAS (1.0.2.2.1) Containers for J2EE initialized
    Exception --> Erro em setSessionContext (ServicoPostalECTBean) - ERROR :
    ejb/BuscaEnderecoHome not found in BuscaCEPBean
    java.lang.NullPointerException
    at com.ect.corporate.ejb.CEP.consultaPorCep(CEP.java:78)
    at com.ect.corporate.ejb.BuscaCEPBean.consultaPorCEP(BuscaCEPBean.java:7
    2)
    at BuscaCEP_StatelessSessionBeanWrapper0.consultaPorCEP(BuscaCEP_Statele
    ssSessionBeanWrapper0.java:54)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:66)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:62)
    Erro null

  • Error in GetObjectName

    Hi,
    I'm having trouble using the context and logical schema in the command below:
    UPDATE <%=odiRef.getObjectName("L","LOG_CARGA_FUSION","L_DW_FUSION_SYS_DESENV","D")%>
    set flag_execucao = 'V'
    where flag_execucao = 'F'
    and rownum = 1
    and nm_origem = '#vg_TABLE_ORIGEM'
    and nm_destino = '#vg_TABLE_DESTINO'
    and cd_carga = '#vg_CD_CARGA'
    I'm not leaving the procedure set in context and not the logical schema, for it to come through the command.
    the operator it returns me the following error:
    java.lang.Exception: Erro interno: objeto ConnectConnection
    ColConnectId:null
    ColContextCode:01_CTX_DESENV
    ColConName:null
    ColIndCommit:null
    ColIsolLevel:null
    ColLschemaName:null
    ColPlanComp:null
    ColTechIntName:ORACLE
    DefConnectId:null
    DefContextCode:01_CTX_DESENV
    DefConName:null
    DefIndCommit:null
    DefIsolLevel:null
    DefLschemaName:null
    DefPlanComp:null
    DefTechIntName:ORACLE
    ExeChannel:J
    IndErr:0
    IndLogMethod:null
    IndLogNb:null
    LogLevDet:3
    Nno:18
    OrdTrt:0
    ScenTaskNo:38
    SessNo:364001
    TaskName1:Procedimento
    TaskName2:INSERE_LOG_CARGA
    TaskName3:INSERE_LOG
    TaskType:S
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execStdOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlS.treatTaskTrt(SnpSessTaskSqlS.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    what can this go wrong?
    thanks,

    Cristina,
    Check have you selected the correct Technology in the Procedure , since you are getting the error -java.lang.Exception: Erro interno: objeto ConnectConnection. Its related to connection .
    If you have ? , are you using the Command on Source , with Command on Target as Null . In that case move the codes to Command to Target and execute.
    Please let me know if you need any other help.
    Thanks

  • Media Tracker**not able to load image ....Just breaking my head!

    Hello all
    I am using Media Tracker to diplay or load the image form a source file... but it is not loading......
    Any Help appreicate it,.... thanks
    This is mycode
    DemoFrame Class:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.geom.*;
    public class DemoFrame extends JFrame
    public DemoFrame()
    setTitle ("Graphics Demonstration");
    Toolkit kit = Toolkit.getDefaultToolkit();
    Dimension ScreenSize = kit.getScreenSize();
    int screenWidth = ScreenSize.width;
    int screenHeight = ScreenSize.height;
    DemoPanel panel = new DemoPanel();
    Container c = getContentPane();
    c.add(panel);
    setSize(screenWidth/2,screenHeight/2);
    setLocation(screenWidth/2,screenHeight/84);
    public static void main(String[]args)
    DemoFrame df = new DemoFrame();
    df.show();
    DemoPanel Class:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.font.*;
    public class DemoPanel extends JPanel
    public void paintComponent(Graphics g)
    super.paintComponent(g);
    Graphics2D g2=(Graphics2D)g;
    Dimension d = getSize();
    int height = (d.height/8);
    int height1= height/3;
    int x = 0;
    int y =0;
    Rectangle2D r1 = new Rectangle2D.Double(x,y,d.width,height);
    Rectangle2D r2 = new Rectangle2D.Double(x,(y+height),d.width,height);
    Rectangle2D r3 = new Rectangle2D.Double(x,y+(2*height),d.width,height);
    g2.setPaint(Color.green);
    Font f1 = new Font("Helvetica",Font.BOLD,12);
    g.setFont(f1);
    g.setColor(Color.black);
    g.drawString("0gkgkgkgkgkgkgkgk0",message_x,message_y);
    g2.fill(r1);
    g2.setPaint( Color.blue);
    g2.fill(r2);
    Font f2= new Font("Helvetica",Font.BOLD,12);
    g.setFont(f2);
    g.setColor(Color.red);
    g.drawString("1gkgkgkgkgkgkgkgk1",message_x,message_y);
    g2.setPaint(Color.red);
    g2.fill(r3);
    Font f3 = new Font("Helvetica",Font.BOLD,12);
    g.setFont(f3);
    g.setColor(Color.blue);
    g.drawString("2gkgkgkgkgkgkgkgk2",message_x,message_y);
    String s1 = "0gkgkgkgkgkgkgkgk0";
    Font f1 = new Font("Helvetica",Font.BOLD,12);
    g2.setFont(f1);
    FontRenderContext context=g2.getFontRenderContext();
    Rectangle2D bounds =f1.getStringBounds(s1,context);
    **********MEDIA TRACKER************
    image = Toolkit.getDefaultToolkit().getImage("homealone2.jpeg");
    MediaTracker tracker = new MediaTracker(this);
    tracker.addImage(image,0);
    System.out.println("new image");
         try
                   tracker.waitForID(0);
                   System.out.println("new image");
         catch(InterruptedException e)
    private Image image;
    public static final int message_x=10;
    public static final int message_y=10;
    ---------------------------------

         * M�todo que carrega imagens na mem�ria, a partir da URL onde o
         * applet est� sendo carregado.
         * @param nomeDaImagem O nome da imagem a ser carregada
         * @return A imagem requisitada ou null caso n�o haja tal imagem na url do applet
         public  Image  carregarImagem(String  nomeDaImagem)
              try
                   // l� a imagem do servidor
                   Image  imagem  =  getImage(getDocumentBase(),  nomeDaImagem);
                   // cria um objeto MediaTracker, para monitorar a leitura da imagem
                   MediaTracker  monitor  =  new  MediaTracker(this);
                   monitor.addImage(imagem,  0);
                   // S� retorna ap�s toda a imagem ter sido carregada na mem�ria
                   monitor.waitForID(0);
                   return  imagem;
              catch(Exception  erro)
                   // Em caso de erro, exibe esse erro e encerra a execu��o do programa
                   erro.printStackTrace();
                   System.exit(0);
                   return  null;
    }

  • Embedder driver in netBeans5.9(problems)

    hai,
    i m using netBeans 5.0...... The IDE connects to the driver and then to database no problem here.. But when we try to give this in runtime i.e in coding format ..
    class.forName(" org.apache.derby.EmbeddeDriver").newInstance;
    and then connect to the database by means of getConnection method
    When we runs this code containing program it throw an error as
    class not found Exception erro "or.apache.derby.EmbeddeDriver"
    What is the reason for this ?tell me solution to run the program.
    Thanx in advance
    shanthy

    thanks a lot , thanks a lot , thanks a lot , thanks a lot , thanks a lot thanks a lot , thanks a lot ,thanks a lot , thanks a lot , thanks a lot thanks a lot , thanks a lot, thanks a lot , thanks a lot ,
    Now its working ... As per ur words i tried u have given me the clear and right solution ...again thanks a lot.......
    Now i m happy since i had many problems due to this all other jobs are stopped ... now it works well..
    I think thanks is small thing compare to ur solution u had given
    Thanks .
    shanthy

  • InDesign CS5 upgrade fails, erratic behavior. Caused by Siebel?

    PC1 and PC2 upgrading from CS4 to CS5. Both PCs are identical. Install on one of them fails with odd icon issues, file association probelms, etc.The only difference we can find is that the PC that had a failed install has Oracle's Siebel CRM installed. Further evidence, after InDesign CS5 had been installed, my Sieble quit and had to be reinstalled. The only variable we can find is the installation of Siebel.
    Is it possible that InDesign CS5 and Oracle's Siebel CRM have conflicts? We've been battling this for quite a while and may have to downgrade our entire enterprise back to CS4 is we can't eliminate the CS5 bugs. Please advise.

    I'm on a fact finding mission right now. All the computers in our department that have CS4 and Siebel installed (and working fine) start acting really strange when upgrading. As soon as we try to updgrade CS4 to CS5, there are all these wierd errors and failures and exception erros, etc. So either Siebel was built with a bug way back when (we use an older version), or Siebel and CS5 try to use the same frameworks without playing nicely.
    You're right, it could be Siebel. But it could be InDesign, just pulling togther info at the moment and want to know if anyone else is having problems. Our IS tam is patching Siebel this weekend, so we'll know a little more.

Maybe you are looking for

  • Credit and Debit notes in reference to Repairing invoice or Repair request

    Hi Experts! I create a Sales order ("RA") for repairing. My flow is complete and also billing documents are generated. The fixed price defined in the Repair request is copied into the invoice, and can not be modified (we block the change). If the pri

  • Vostro 200 running Win 7 Pro 64 bit

    Computer won't recognize my onboard sound card and only says Microsoft HD Audio.  Headset mic won't record.  Any help appreciated.  Thanks

  • That odd Apple Video Player

    Ok long time no post i have made posts here in the past but i got caught up in some work and have had no time to help out. Well i was using my Wings card to watch TV on my Beige Minitower and i decided to take some snap shots of the show and i also t

  • InDesign form to web page

    I did a simple form in InD and put the PDF in a Freeway web page... Freeway converts the PDF image to a 72dpi jpeg. Is it possible to get a very high quality representation of the form on the web using any InD (or Ily) export tools from this form? It

  • Hard Drive reading zero!!!!

    Hi, I recently bought a mint Ibook from my friend which I gave to my girlfriend as a gift. I wanted the computer to be like new for her so I formatted the drive and zeroed everything so it would be like new for her. I everything went well and I upgra