is not abstract and does not substitute the abstract method callLogRemoved (net.rim.blackberry.api.phone.phonelogs.CallLog)

Can someone tell me why im getting the following error

is not abstract and does not substitute the abstract method callLogRemoved (net.rim.blackberry.api.phone.phonelogs.CallLog)

callLogRemoved is set, I tried to remove it and it also gives me the same error

Here is my code

Thanks in advance for answer

Net.rim.blackberry.api.phone import. *;
Net.rim.blackberry.api.phone.phonelogs import. *;
//*******************************************************************************//
public class mylistener extends Thread implements {PhoneLogListener}

{} public void callLogRemoved (int arg0)
System.out.println("/***/"); "
System.out.println ("CallLog removed');
System.out.println("/***/"); "
}
{} public void callLogAdded (int arg0)
System.out.println("/***/"); "
System.out.println ("CallLog added");
System.out.println("/***/"); "
}
' public void callLogUpdated (int arg0, int arg1) {}
System.out.println("/***/"); "
System.out.println ("CallLog update");
System.out.println("/***/"); "
}
{} public void reset()
System.out.println("/***/"); "
System.out.println ("CallLog Reset");
System.out.println("/***/"); "
}

}

Javadoc documentation:

public void callLogRemoved (CallLog cl)

but you have coded:

public void callLogRemoved (int arg0)

An int is not a CallLog, so these signatures do not match.

Tags: BlackBerry Developers

Similar Questions

  • TFLN startup error: class 'net.rim.blackberry.api.homescreen.HomeScreen' not found

    I am beta testing my app and it works fine for me in all simulators and a 9530 Storm. But one of my beta testers reported the app doesn't launch and gets the error:

    TFLN startup error: class 'net.rim.blackberry.api.homescreen.HomeScreen' not found

    I can't imagine how that could happen. Any ideas? Thanks in advance.

    DentateGyrus wrote:
    The user's phone is "BOLD" with the OS update for it. He didn't give me a version number, but I guess than 4.6. It was compiled in 4.7, but works perfectly well in the "BOLD" Simulator.

    An application built in version 4.7 is not compatible on the 4.6 version.  Please refer to the following.

    What is - an appropriate version of the BlackBerry JDE
    Article number: DB-00537

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800901/What_Is_-_Appr...

  • Help me! Class 'net.rim.blackberry.api.homescreen.HomeScreen' not found!

    I use HomeScreen to change my default application icon. But message: class 'net.rim.blackberry.api.homescreen.HomeScreen' not found. Help me. Thank you!

    do not use applications built with jde 4.7 on simulators (or devices) with a lower OS.

  • Suddenly the apps work not (start.. net.rim.device.api.ui.manager .class not found error)

    All of a sudden my apps no longer work

    always "start XXXX error: class 'net.rim.device.api.ui.manager' not found.

    everything compiles fine

    remove all my cod, jar,... directory of Simulator

    clean all projects

    Nothing helps

    from a demo app

    My applications have dependencies to some libraries

    really, you're wondering where to find

    any ideas?

    reason: size of the resource of a library project has been nearly 8 MB

    one of my libraries (where the wallpaper of my browser are stored as png resources) becomes a size of about 7.5 MB

    I know that 8 MB less certain overhead is the maximum allowed size

    (this is the reason why I use some library projects)

    I have learned the hard way that a message like

    NullPointer INTERNAL means "application or a resource too large.

    in this case last month as he tried to PACKAGE an application where the limits of size (app 8MB max size + resource set size 8 MB max) are reached

    but this time there was no error when packing - my library projects and soft with dependencies to these libraries compile well and packing has been without any reported errors

    This time, it occurs during EXECUTION of the application and an error like ' net.rim... class ui. Manager not found "is not very intuitive to think that the size of the resource of one of your library projects is too large

    I don't want to revisit the discussion why these limits exist on modern smartphones (do not have these limits with Android or iPhone), but...

    PLEASE PLEASE RIM

    -Why not offer a message meaningful all-in-package as ' Attention: size of the XXX project resources (or the size of the app) is near the maximum of 8 MB - please restructure your projects instead of "class not found during the race.

  • Why not use the static methods - example

    Hello world

    I would like to continue the below thread about "why not use static methods.
    Why not use the static methods
    with the concrete example.

    In my small application, I need to be able to send keystrokes. (java.awt.Robot class is used for this)
    I created the following class for these "operations" with static methods:
    public class KeyboardInput {
    
         private static Robot r;
         static {
              try {
                   r = new Robot();
              } catch (AWTException e) {
                   throw new RuntimeException(e + "Robot couldn't be initialized.");
              }
         }
         
         public static void wait(int millis){
              r.delay(millis);
         }
         
         public static void copy() {
              r.keyPress(KeyEvent.VK_CONTROL);
              r.keyPress(KeyEvent.VK_C);
              r.keyRelease(KeyEvent.VK_C);
              r.keyRelease(KeyEvent.VK_CONTROL);
         }
    
         public static void altTab() {
              r.keyPress(KeyEvent.VK_ALT);
              r.keyPress(KeyEvent.VK_TAB);
              r.keyRelease(KeyEvent.VK_TAB);
              r.keyRelease(KeyEvent.VK_ALT);
         }
    
                   // more methods like  paste(), tab(), shiftTab(), rightArrow()
    }
    You think it's a good solution? How could it be improved? I saw something Singleton vs somewhere of static methods. Wouldn't be better to use Singleton?

    Thanks for your comments in advance.
    lemonboston

    maheshguruswamy wrote:

    lemonboston wrote:

    maheshguruswamy wrote:
    I think a singleton might be a better approach for you. Just kill the public constructor, and provide a getInstance method to provide late initialization.

    Maheshguruswamy thanks for the tips on the steps create a singleton of this class.
    Perhaps you could say also why do you say that it would be preferable to use singleton? What is behind it? Thank you!

    In short, it seems to me that a single instance of your class will be able to coordinate actions across your entire application. If a singleton should be sufficient.

    But who doesn't answer why he expected prefer a singleton instead of a bunch of static methods. Functionally, the two are almost identical. In both cases, there is that a single 'thing' to call methods - either a single instance of the class or the class itself.

    To answer the question, the main reason to use a Singleton on a class of static methods is the same reason readers much of not static vs static decisions: polymorphism.

    If you use a Singleton (and and interface), you can do something like this:

    KeyboardInput kbi = get_some_instance_of_some_class_that_implements_KeyboardInput_somehow_maybe_from_a_factory();
    

    And then everything calling public methods of KBI has to know that there an implementor of this interface, without worrying about what concrete class is, and you can replace some implementation is appropriate in a given context. If you do not need to do, then the approach of the static method is probably enough.

    There are other reasons that may suggest a Singleton - serialization, persistence, use as a JavaBean pop to mind - but they are less frequent and less convincing in my experience.

    And finally, if this thing keeps updated a State between method calls, even if you can manage it with static member variables, it is more in line with the OO paradigm to make them non-static fields of an instance of this class.

  • Class 'net.rim.device.api.ui.TouchEvent' not found

    I built the demo using the JDE 4.7.0.41 TicTacToeDemo application and tested using the simmulator without problem. Also, I do not change a signle code line.

    I also loaded on my phone, and when you start it on my phone, I got the following error:

    Error Starting TicTacToeDemo: Class 'net.rim.device.api.ui.TouchEvent' not found

    No idea why this error?

    You are right.  The version of the BlackBerry JDE must be equal or lower than the software version of terminal Blackberry target.  The following link explains it further.

    What is - an appropriate version of the BlackBerry JDE
    Article number: DB-00537

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800901/What_Is_-_Appr...

  • NET.rim.device.API.UI.decor.background class not found 8100 pearl

    Hello

    I finished my application. While testing the device, I get the error class net.rim.device.api.ui.decor.background not found. I'm testing the 8100 pearl device. But this application works well on Blackberry JDE 4.7.0.Please suggest me wat would be right...

    That the class was introduced in the 4.6 API, it does not exist in the 4.5 which is being tested for the pearls of 81XX series.

  • 'net.rim.device.api.math.Fixed32' not found

    I left work last night, and my app works perfectly well in the SIM card.  No problems.

    Just today, initialize the SIM card and get this:

    'net.rim.device.api.math.Fixed32' not found

    I use Fixed32 to resize an image.  It is imported successfully and not showing ANY error in the project.

    He did this on more than 1 Simulator.

    Any ideas?

    I tried to move it manually in the API, without success.

    These types of errors are usually caused by using a version of BlackBerry Java SDK/BlackBerry JDE, which is not supported by the version of the BlackBerry Smartphone you run it on.

    Appropriate version of the JDE BlackBerry and BlackBerry Java SDK

    http://supportforums.BlackBerry.com/T5/Java-development/appropriate-version-of-the-BlackBerry-JDE-an...

  • net.rim.device.api.ui.decor.Background not available in Eclipse?

    Hi, I use Eclipse (v3.4.1) and therfore installed JDE plug-in for Eclipse version 1.0.0.67 has the Blackberry JDE 4.5.0 component Package.

    I checked JDE 4.5.0 and I know he has the base class because it doesn't even have the package of net.rim.device.api.ui.decor

    What I'm trying to do, is simply to add a LabelField to a title bar that has a PNG file as a background?  Is there a work around for this without having to make my own Field object?

    See you soon.

    Hello

    OS 4.5.x has not décor package yet. It was added only in 4.6 or later. So if you need to write your application for 4.5, you must implement your own domain, possibly replace methods paint (...) and (...) layout of fields.

    If you like about 4.5 and I want to just write your application to 4.6 or higher version, you will need to install the component via the Eclipse Update site 4.6 package. After successful installation, you can switch to the package of 4.6 component via preferences-> settings BlackBerry workspace.

    Hope this helps,

    Daniel

  • ScalableGraphics and net.rim.device.api.ui.Graphics

    I was robbed on a bug in my SVG code for too long and now, I discovered that I can use the bad Graphics class.

    ------------SNIP------------------------
            scalablegraphics.bindTarget(graphics);
    
            for(int i=0;i
    

    In the method object, I'm rendering SVG standard above that works for a little while and finally fails.  I am hunting the failure on mine, but in the process I've stumbled upon the documentation that call the bindTarget(Graphics g) aims to link to one of these graphics implementations:

    (From JDE 4.7 of the ScalableGraphics class documentation, whether)

    The type of the Graphics object depends on the Java profile that this specification is implemented, as follows:

    • javax.microedition.lcdui.Graphics on profiles support LCDUI;
    • java.awt.Graphics on profiles supporting AWT;
    • either of the above on the profiles of LCDUI and AWT support.

    My questions to the people here:

    1. is this simply an artifact of Sun Java documentation not updated to include the "net.rim.device.api.ui.Graphics" as a viable link?
    2. It's pure chance that SVG seems to work with the class Graphics RIM?
    3. Everyone uses the class Graphics RIM with SVG?

    Thank you

    Mike

    It is a question of JavaDoc, which I have updated you.  The net.rim.device.api.ui.Graphics class is supported here.

    Can you elaborate on what stops working?  What model of smartphone BlackBerry and the version of the software BlackBerry device test you on?  You can find this under Options, all on the BlackBerry Smartphone.

  • ADF: commandButton does not reach the target method

    Hi all

    This is my first post here, I hope you can help me, I'm new in the ADF, and now I am facing a problem, let me explain:

    11.1.1.55.36 ADF business components
    jDeveloper 11g Release 1 11.1.1.2.0

    In the application, I have a button that changes the attribute of "render" of a showDetailItem, this subject conatains some commandButons but when I click on these buttons the listener method is never triggered. I don't know what happened in this situation. Any idea is always welcome.

    Thanks in advance,
    Sergio Valdez

    Code:
    commandButton activation online: 58
    showDetailItem on line rendering: 125
    problem commandButtons to lines: 132 & 139
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:c="http://java.sun.com/jsp/jstl/core">
      <c:set var="viewcontrollerBundle"
             value="#{adfBundle['com.axtel.reporteador.MessageBundle']}"/>
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:form id="f1">
            <af:panelStretchLayout topHeight="50px" id="psl1" bottomHeight="26px">
              <f:facet name="top">
                <af:panelGroupLayout layout="scroll"
                                     xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                                     id="pgl2">
                  <af:inputText label="#{viewcontrollerBundle.NOMBRE_DE_ENCUESTA}" id="surveyName"
                                value="#{SurveyMB.surveyName}"/>
                  <af:panelGroupLayout id="pgl3">
                    <af:commandButton text="#{viewcontrollerBundle.CREATE_SURVEY}" id="surveyCreate"
                                      actionListener="#{SurveyMB.createSurveyListener}"/>
                    <af:commandButton text="#{viewcontrollerBundle.RESET_SURVEY}" id="surveyCancel"
                                      actionListener="#{SurveyMB.cancelSurveyListener}"/>
                    <af:commandButton text="#{viewcontrollerBundle.SURVEY_ADD_QUESTION}"
                                      id="addQuestion"
                                      actionListener="#{SurveyMB.addQuestionListener}"
                                      rendered="#{SurveyMB.surveyAlreadyCreated}"
                                      disabled="#{SurveyMB.questionAddEnable}"/>
                  </af:panelGroupLayout>
                </af:panelGroupLayout>
              </f:facet>
              <f:facet name="center">
                <!-- id="af_one_column_header_stretched"  -->
                <af:panelAccordion id="questionAccordionPanel" discloseNone="true"
                                   partialTriggers="addQuestion">
                  <af:forEach items="#{SurveyMB.survey.questions}" var="question"
                              varStatus="i">
                    <af:showDetailItem text="#{question.question}"
                                       id="questionDetailItem"
                                       disclosed="#{( SurveyMB.questionEditEnable) and (i.index eq SurveyMB.questionToBeEdited)}"
                                       disabled="#{(( SurveyMB.questionEditEnable) &amp;&amp; ( SurveyMB.questionToBeEdited ne i.index)) or SurveyMB.questionAddEnable}">
                      <f:facet name="toolbar">
                        <af:group id="g1">
                          <af:outputText value="outputText1" id="ot1"/>
                          <af:commandButton text="#{viewcontrollerBundle.SURVEY_ANSWER_DELETE}"
                                            id="questionDelete"
                                            actionListener="#{SurveyMB.deleteQuestionListener}">
                            <af:clientAttribute name="questionIndex"
                                                value="#{i.index}"/>
                          </af:commandButton>
                          <af:commandButton text="#{viewcontrollerBundle.SURVEY_QUESTION_EDIT}"
                                            id="questionEdit"
                                            actionListener="#{SurveyMB.editQuestionListener}">
                            <af:clientAttribute name="questionIndex"
                                                value="#{i.index}"/>
                          </af:commandButton>
                          <af:commandButton text="#{viewcontrollerBundle.SURVEY_ADD_ANSWER}"
                                            id="questionAddAnswer"
                                            actionListener="#{SurveyMB.addAnswerListener}">
                            <af:clientAttribute name="questionIndex"
                                                value="#{i.index}"/>
                          </af:commandButton>
                        </af:group>
                      </f:facet>
                      <af:panelGroupLayout id="pgl5">
                        <af:panelGroupLayout id="questionEditPanel"
                                             rendered="#{SurveyMB.questionEditEnable}">
                          <af:selectOneChoice label="#{viewcontrollerBundle.SURVEY_QUESTION_TYPE}"
                                              id="questionTypeToEdit">
                            <af:selectItem label="Seleccion Multiple"
                                           value="checkbox" id="selectItem1"/>
                            <af:selectItem label="Seleccion simple"
                                           value="radiobutton" id="selectItem2"/>
                          </af:selectOneChoice>
                          <af:inputText label="#{viewcontrollerBundle.SURVEY_QUESTION}"
                                        id="questionToEdit" rows="2"/>
                          <af:commandButton text="#{viewcontrollerBundle.ADD}"
                                            id="questionEditOk"
                                            actionListener="#{SurveyMB.addQuestionOkListener}"/>
                          <af:commandButton text="#{viewcontrollerBundle.CANCEL}"
                                            id="questionEditCancel"
                                            actionListener="#{SurveyMB.addQuestionCancelListener}"/>
                        </af:panelGroupLayout>
                        <af:panelHeader text="Respuesta 1" id="answerHeader"
                                        size="3">
                          <f:facet name="menuBar">
                            <af:commandLink text="#{viewcontrollerBundle.EDITAR}"
                                            id="answerEdit"
                                            actionListener="#{SurveyMB.deleteAnswerListener}"
                                            disabled="#{requestScope.SurveyMB.editAnswerLinkEnable}"/>
                          </f:facet>
                          <f:facet name="toolbar">
                            <af:commandLink text="#{viewcontrollerBundle.ELIMINAR}"
                                            id="answerDelete"
                                            actionListener="#{SurveyMB.editAnswerListener}"
                                            disabled="#{requestScope.SurveyMB.deleteAnswerLinkEnable}"/>
                          </f:facet>
                          <af:panelGroupLayout id="answerEditPanel"
                                               rendered="#{SurveyMB.answerEditEnable}">
                            <af:inputText label="Label 3" id="answerToEdit"/>
                            <af:commandButton text="#{viewcontrollerBundle.OK}"
                                              id="answerEditOk"/>
                            <af:commandButton text="#{viewcontrollerBundle.CANCEL}"
                                              id="answerEditCancel"/>
                          </af:panelGroupLayout>
                        </af:panelHeader>
                        <af:panelHeader text="#{viewcontrollerBundle.SURVEY_ADD_ANSWER}"
                                        id="panelHeader2" size="3"
                                        rendered="#{SurveyMB.answerAddEnable}">
                          <f:facet name="menuBar"/>
                          <af:panelGroupLayout id="panelGroupLayout1">
                            <af:inputText label="Label 3" id="answerToAdd"/>
                            <af:commandButton text="#{viewcontrollerBundle.OK}"
                                              id="answerAddOk"
                                              actionListener="#{SurveyMB.addAnswerOkListener}"/>
                            <af:commandButton text="#{viewcontrollerBundle.CANCEL}"
                                              id="answerAddEdit"
                                              actionListener="#{SurveyMB.addAnswerCancelListener}"/>
                          </af:panelGroupLayout>
                        </af:panelHeader>
                      </af:panelGroupLayout>
                    </af:showDetailItem>
                  </af:forEach>
                  <af:showDetailItem text="#{viewcontrollerBundle.SURVEY_ADD_QUESTION}"
                                     id="showDetailItem1"
                                     disclosed="true"
                                     rendered="#{SurveyMB.questionAddEnable}"
                                     partialTriggers="addQuestion">
                    <f:facet name="toolbar">
                      <af:group id="group1">
                        <af:commandButton text="#{viewcontrollerBundle.OK}"
                                          id="questionAddOk"
                                          actionListener="#{SurveyMB.addQuestionOkListener}"
                                          immediate="true"
                                          binding="#{SurveyMB.addQuestionOkBinding}"
                                          action="#{SurveyMB.questionAddOkAction}"
                                          partialTriggers="addQuestion"/>
                        <af:commandButton text="#{viewcontrollerBundle.CANCEL}"
                                          id="questionAddCancel"
                                          actionListener="#{SurveyMB.addQuestionCancelListener}"
                                          partialTriggers="addQuestion"/>
                      </af:group>
                    </f:facet>
                    <af:panelGroupLayout id="panelGroupLayout2">
                      <af:panelGroupLayout id="pgl8"
                                           partialTriggers="addQuestion">
                        <af:selectOneChoice label="#{viewcontrollerBundle.SURVEY_QUESTION_TYPE}"
                                            id="questionTypeToAdd">
                          <af:selectItem label="Seleccion Multiple" value="checkbox"
                                         id="si2"/>
                          <af:selectItem label="Seleccion simple"
                                         value="radiobutton" id="si1"/>
                        </af:selectOneChoice>
                        <af:inputText label="#{viewcontrollerBundle.SURVEY_QUESTION}"
                                      id="questionToAdd" rows="2"/>
                      </af:panelGroupLayout>
                    </af:panelGroupLayout>
                  </af:showDetailItem>
                </af:panelAccordion>
              </f:facet>
              <f:facet name="bottom">
                <af:panelGroupLayout id="pgl1">
                  <af:commandButton text="#{viewcontrollerBundle.SURVEY_SAVE}" id="surveySave"
                                    action="#{SurveyMB.surveySaveAction}"/>
                  <af:commandButton text="#{viewcontrollerBundle.CANCEL}"
                                    id="cancelSurvey"
                                    action="#{SurveyMB.cancelSurveyAction}"/>
                </af:panelGroupLayout>
              </f:facet>
            </af:panelStretchLayout>
          </af:form>
        </af:document>
      </f:view>
      <!--oracle-jdev-comment:preferred-managed-bean-name:SurveyMB-->
    </jsp:root>
    Published by: user2931026 on Apr / 10/2010 01:13

    Published by: user2931026 on Apr / 10/2010 09:01

    Sergio,
    good work, now I can read the code :-)
    Strange, nothing appears immediately.
    The buttons in the showDetailItem are the only ones who does not?
    One thing you can try is to use the visible property rather than the rendered attribute. The user interface looks the same, but the properties behave different (rendering = false means components are not on the page, visible = false means components are on the page but do not appear to the user).

    Timo

  • May not substitute the text format in the former document InDesing CS4...

    I opened an InDesign Cs5 document in InDesign Cs4, I created my own paragraph styles, but in trying to apply the text in the document, it will not take the police, just the colors.

    I tried to open the copy in word and Notepad, re - format, then copy and paste again in my InDesign document with no luck. I've used InDesign for many years and I never had this problem before, anyone know how to fix this?

    Thank you

    This really, really looks like there is a style of character applied to this text as well.

    (This style of character can even be selected as default, so whenever you are trying to overwrite everything that you do is re - apply all over again.)

  • Instantiate using 'new' does not not on the init() method

    Hello

    I am instantiating an object using "new" and calling my init() with 4 parameter passing constructor, but I get the error message that the parameters are required (see below). It works by using "createobject", that's fine, but I wanted to use 'new' to create an object. Can someone give some info why it doesn't work? Thank you.

    The SHOPPINGCARTDSN parameter to the INIT function is required but is not passed in.

    < cfscript >
    o = new cfc.shop.discount () .init (shoppingcartdsn: 'test', localDSN: 'timerDelegate', starsDSN: 'testdsn', ProjectName: 'test');
    writeDump (o);
    < / cfscript >

    You do not have to call the init method when you instantiate your object with the new. This is done by the new function itself (even with parameters, pass the parameters to the object, and not to the init function)

    Try this:

    o = new cfc.shop.discount (shoppingcartdsn: 'test', localDSN: 'timerDelegate', starsDSN: 'testdsn', ProjectName: 'test');

    writeDump (o);

  • cannot manage or remove bookmarks. "Show all bookmarks" tab has an empty list and does nothing else. the only thing I can do in the bookmarks is add them but I don't even get given an option of what folder to put it in.

    bookmarks does not. the only thing it will do is add them, impossible to delete or do something else with them. "display the Bookmarks tab all comes in white and nothing else works on this subject." not given the choice of what folder to put bookmarks in when I use "bookmark this page".

    One possible cause is a problem with the places.sqlite file that stores the bookmarks and history.

  • Legend of Java in OSB not showing the available methods

    Hello

    I made a simple jar which contains a class with a static method that connects to our active directory. I use the spring to connect to the ad. The jar is built using maven. When I build the jar, I copied into a directory of Jar in my project of OSB. I created an action JavaCallout in which I can choose the pot, but it does not recognize my static method... There is no methods I choose!

    Can someone maybe tell me what's not here?

    I have compiled the jar using jdk1.5. IM using 11G ps2. The method takes a string as input and returns a list.

    Thanks in advance!

    try to use the Web Console of OSB directly, it is VERY stable and well tested. Here, you have option explicit to create a resource JAR - you can't fail.
    Once do you operate in the Web Console, just the sbconfig.jar to export and import it into Eclipse.

    Honestly when I need to do something that is not the Message flows edition, I much prefer the Web Console, it is very strong (I can't say the same of the eclipse).

Maybe you are looking for

  • Ringtones for my 6 of my iTunes music library

    How to make ringtones for my 6 s of my iTunes music library? I followed a method I Googled, but it does not work. I'm on Windows 10.

  • activate the floating window

    I have a dialog box I want to float, so that it will stay above other windows, allowing interaction with other windows. However, my dialog box can also receive a few keyboard shortcuts, and I can't seem to make the window active and floating. I have

  • DeskJet 6988 lid does not close

    I have problems with the lid without closing on my Deskjet 6988. I just changed the ink cartridges, but the lid won't come down completely - it gets stuck about half an inch short makes it close.  The two ink cartridges are firmly in place with the S

  • I can't receive emails in windows mail. I use laptop and my cox ISV.

    Please help me. I contacted cox and they referred me to Microsoft. I'm not able to receive emails in my windows mail.

  • I get a "General Protection history: appInit. Why?

    It gives me this warning when I try to open 'Harry Potter and the Chamber of Secrets'. I have a computer that is running Windows 7, and I tried to change the compatibility settings, but nothing works. It will give me the same caveat, or not even to o