Home on the storm screen problem

I use SDK 4.7 and try to set the background image for the home screen.
my app compiles fine but when I try to run it on the SIM I got

the exception error msg says:

class net.rim.blackberry.api.homescreen.HomeScreen not found

no idea why? I used homescreen with 4.3 SDK and it works fine.

the same application works on the storm, but not when you compile with 4.7.

what I wanted was the same project compiles with the 4.2 SDK and it works on 4.7 but if I

recompile the application with the SDK 4.7 I get error msg on sims 4.2 and 4.7

I just downloaded the SDK 4.7.0.39 the other day.

Tags: BlackBerry Developers

Similar Questions

  • Satellite A210 PSAFGC - Bios Update to get rid of the white screen problem

    I also have the white screen problem and I would like to update my bios to version 1.30, it came with.
    The problem I have is that I have a number of room A210 model PSAFGC.
    Support bulletin 98082422 for the update of the Bios does not have my room exactly number and I can not find something for my model.
    The 2 updates are at 1.70 and 1.90. I read the text of these two, and they seem quite different.
    Don't know what to do. Here is the info of the bulletin.

    Resolution:

    Update the BIOS of the computer to resolve this problem, by clicking on the link in the following list for your computer model.

    -Satellite A210 / A215, Ref. PSAFGU: BIOS version 1.70
    -Satellite A210 / A215, Ref. PSAEGU and PSAELU: BIOS version 1.90
    -Satellite Pro A210 / A215, Ref. PSAFHU: BIOS version 1.70
    -Satellite P200D / P205D, Ref. PSPBLU and PSPBQU: BIOS version 1.40

    REF. of the computer it is printed on a label on the underside of the case.

    Any help?

    Hello

    The Satellite * A210 PSAFGC * series seems to be a Toshiba * Canadian * series and I would recommend checking the Canadian driver Toshiba page if you want to download the compatible BIOS for your laptop.

    Here is the link to the page:
    http://support.Toshiba.ca/support/download/ln_bymodel.asp

    Best regards

  • Press twice at home to the bottom screen does not

    Since updating my iPhone 6 iOS 10, I lost the ability to double tap the home screen (no press) in order to cut the icons for you can reach them.

    Is it possible to recover this feature?

    Thank you.

    Go to settings > general > accessibility and scroll down to accessibility. Make sure that this option is enabled. If it is enabled and does not work, turn this setting off and back on and test again.

  • 15 - t235ne: Nvidia Geforce 820 M driver, leads to the blue screen problem

    Hello

    I have to computer laptop 15-r235ne, windows 7 64 bit, I am faced with because of the driver of Nvidia Geforce 820 M,

    When I tried to use the nvidia Control Panel options, blue screen appears and windows crashes.

    Also please help on this issue

    concerning

    NASIR

    I have the same problem, uninstall the Nvidia Geforce and re-download drivers hp upgrade sooner or later, you can use official site Nvidia http://www.geforce.com/drivers and it will automatic update your drivers and software also.

  • Walkman player of 8.3.A.0.7 on the lock screen problem

    I have a problem with the walkman, as seen on the screen

    He always blink and make me can not access the camera, another shortcut screen locking and even cannot watch what time is

    Start button / stop also does not respond when the screen is off and I have to remove the battery and restart it to access the phone

    Help, please

    I think it's a bug in lockscreen

    not the walkman apps

    cause I did this experiment on another music player

    Thanks for the reply

  • BitmapField on the touch screen problem

    Hello

    I have a simple form with two fields of bitmap and I want to take the events of button CLICK on each field. But the problem is that my program behaves like I always click on the first button even if I click on the other.

    How can I solve this, what someone has any ideas?

    The code is below. Thank you...

    public final class TouchEventInjectorScreen extends MainScreen {
        private LabelField labelField;
        private BitmapField button1;
        private BitmapField button2;
    
        public TouchEventInjectorScreen() {
    
            setTitle("Touch Demo");
    
            labelField = new LabelField("");
            add(labelField);
            button1 = new BitmapField(Bitmap.getBitmapResource("1.png"),BitmapField.FOCUSABLE){
                protected void onFocus(int direction) {
    
                    super.onFocus(direction);
                }
                protected boolean touchEvent(TouchEvent message) {
                    if(message.getEvent() == TouchEvent.CLICK){
    
                        System.out.println("1");
                    }
                    return true;
                }
            };
            button2 = new BitmapField(Bitmap.getBitmapResource("2.png"),BitmapField.FOCUSABLE){
                protected void onFocus(int direction) {
    
                    super.onFocus(direction);
                }
    
                protected boolean touchEvent(TouchEvent message) {
                    if(message.getEvent() == TouchEvent.CLICK){
    
                        System.out.println("2");
                    }
                    return true;
                }
            };
            HorizontalFieldManager h1 = new HorizontalFieldManager();
            h1.add(button1);
            add(h1);
            add(new LabelField(""));
            HorizontalFieldManager h2 = new HorizontalFieldManager();
            h2.add(button2);
            add(h2);
    
        }
    
    }
    

    When I shot the screen always 1 is printed in the system.out

    If you try to manage the events button on the two fields that have defined the style as focusable, then there are two ways to handle them.

    1. management of the key by its parent event. Is to say, add 2 focusable components Manager then manage the key event in the Manager himself. Here is the code snippet

    class MyManager extends VerticalFieldManager
    {
    protected boolean touchEvent (TouchEvent message)
    {
    switch (message.getEvent ())
    {
    case TouchEvent.CLICK:
    int x = message.getX (1);
    int y = message.getY (1);
    int index = getFieldAtLocation (x, y);
    Field field = getField (index);
    System.out.println ("field->" + index);
    field.setFocus ();
    break;
    }
    Returns true;
    }
    }

    class touch screen extends screen
    {
    Private button1 As BitmapField;
    private BitmapField button2;

    public TouchScreen()
    {
    Button1 = new BitmapField (Bitmap.getBitmapResource ("1.png"), BitmapField.FOCUSABLE);
    Button2 = new BitmapField (Bitmap.getBitmapResource ("2.png"), BitmapField.FOCUSABLE);
    Manager of MyManager = new MyManager();
    Manager.Add (button1);
    Manager.Add (button2);
    Add (Director);
    }
    }

    2. This step is to manage the key event at the level of the component itself. In this case, you must first make sure that this place where we clicked on belongs to the targeted component. because the targeted component key event will be called first by default. This is possible by getting the x, the position and the region where we clicked and check if it is located in the region of this element, otherwise returns false, the event goes to the next component. If the x position is located in the region of a component, handle touch event in this case.

    Here is the code snippet

    class MyBitmapField extends BitmapField
    {
    protected boolean touchEvent (TouchEvent message)
    {
    switch (message.getEvent ())
    {
    case TouchEvent.CLICK:
    If (message.getY (1))<>
    Returns false;
    If (message.getY (1) > getHeight())
    Returns false;
    If (message.getX (1))<>
    Returns false;
    If (message.getX (1) > getWidth())
    Returns false;

    you code here
    break;
    }
    Returns true;
    }
    }

  • Signature of the blue screen problem

    This continues to occur several times a day.  Had a virus deposited in the register but removed.

     

    Signature of the problem

    Problem event name: BlueScreen

    OS version: 6.1.7601.2.1.0.768.3

    Locale ID: 1033

    Additional information about the problem

    We need the DMP file because it contains the single record of the sequence of events that led to the accident, what drivers have been loaded, and what has been loaded.
    You may be able to get the DMP files without crashing by booting in SafeMode (F8) with networking.
    If you are overclocking stop.  (chances are if you are unsure if you are, you are not) a
    To allow us to help you with symptoms BSOD on your computer, download the contents of your folder "\Windows\Minidump".  We need at least 2 FILES DMP to diagnose and confirm


    The procedure:

    * Copy the contents of \Windows\Minidump to another location (temporary) somewhere on your machine.
    * Zip up the copy.
    * Join ZIP archive to your message by using the button (attachments) "trombone". (if available on your site, MS has this)
    * Please download to a service like Skydrive or "Rapidshare" to share files and put a link to them in your answer.
    Link to find out how to download below.
    http://www.WikiHow.com/use-SkyDrive

    To ensure the minidumps are enabled:

    * Click Start, in the search box, type: sysdm.cpl, press ENTER.
    * On the Advanced tab, click Startup and recovery... Settings button.
    * Make sure that automatically restart is unchecked.
    * Under the writing debugging information header, select image partial memory (256 KB) in the list box drop-down (varies from 256kb).
    * Ensure to that small Dump Directory is listed as % systemroot%\Minidump.
    * OK your way out.
    * Reboot if changes have been made.

    Please also run MSinfo32 and download the output as well.
    To run MSinfo32 please go to start > run > MSinfo32
    Go to 'file', 'save' and download the PDF is saved with the DMP
    System specs are extremely useful then please include everything you know.
  • video card and the black screen problems.

    Hello world! My desk top compaq presario sr1411nx don't seem to support a video card, I've recently tried

    to install. I put the card in one of the three open slots connected to the motherboard, and it seems to fit very well.

    The operating system I have is a Microsoft Windows XP Edition family version 2002 service pack 3, Celeron (R) CPU 2.80 ghz, 248 MB of ram.

    The graphics card is an ATI Radeon X1300PCI 256 MB. After I installed the card the following continues to happen.

    I turn the hard drive and follow on. The windows start menu back to the top.

    A message box appears telling me to close all programs. Restart the computer if the installation of the video card

    can be updated and completed.

    I then, restart the computer. After that I'm doing it just a black screen and white pointer popup. As I move the mouse

    There is no beep sounds. Browser menu and start the internet windows does not load upward.

    I then remove the video card and restart the computer and everything works fine.

    Question: What could be the cause, and I can fix it?

    Thank you

    Frogman

    Try to go into the cmos setup in the bios and see if there is any option to disable the onboard video as memory goes against zero or as allowing the pci. If not try to change the graphics card to the other pci slot

  • Recommendations on the shiny screen problems

    Last week, I bought a new E530 as a supplement to my E420.  I use these for a small consulting practice.

    The E530 seemed to be a lot of OfficeMax... $499, with an i5, 500 GB HD, 6 GB RAM, brushed aluminum on it.  In there wasn't one in stock in a box, I bought and was unpleasantly surprised when I opened the box and found it to have a glossy screen.

    Understand that some people prefer bright screens, I hate them.  There are reflections in all possible scenarios and my eyes fatigue quickly their use.  Personally, I do not understand why computer companies seem to prefer the latter, because I think they really reduce the usability of the laptop.

    In any case, I need to fix this somehow.  I would appreciate advice on making the most sense of the three following options:

    1. find and use an anti-glare filter.  I can't find one locally, but found them online.  I am concerned about the reduction of light and air in the filter bubbles that make it just as unusable.

    2. buy a matte screen replacement and install it.  They are available for about $75 on line.  The replacement seems simple enough, but the risk will be there to install it correctly.

    3. the most obvious solution would be to return this computer and get another with a matte screen.  It's harder than it sounds because I'll buy only a machine with a trackpoint.  If I look to get the exact machine direct from Lenovo, just with a matte screen (which is the same cost as a glossy screen), the price is $769, a huge difference than the sum of $499 I paid at Office Max.  I can't find anything else that represents the value of this machine (even if it is accepted that it is because I got a very good deal).

    I guess there is always the 4th option that says I live with this...

    Recommendations on the best way to remedy this situation?

    The T series is the bread and butter of the Thinkpad, which says a lot about this laptop. Currently I use the i5 T420 - 2520 m with resolution of 1600 x 900, and I can say that it is a great machine.

    I'm not too fan of the T430 because of the new formula of keyboard, as I'm used to all the shortcuts (e.g. power setting change, Hibernate, etc.).

    If you can allow a T420 then it's certainly a better buy then the E530 or E420 also. The quality is better and the keyboard is also better.

    Finally, the T420 resale value is better than the E530 long-term.

  • How is - this hard I can reset my iPhone 5 with the broken home button and the touch screen is not responding.

    My iPhone 5, iOS 9.0.2 does not respond to touch. (broken touchscreen) and my home button is broken. my battery is fully charged so that it would take too long to wait until it turns off. I need a way to Hard reset it without a button at home and the touch screen. I know there are 3rd party apps that could do this, but I can't open my phone (no password protection) to 'trust' on this computer. If there are applications that could work around this? Any help is appreciated.

    There is no way to do it. You have 2 hardware problems. Time to replace the phone.

  • Strange black screen problem Inspiron 1526

    Dell Inspiron 1526 - Windows Vista Home Premium (32 bit) - Service Pack 2 (problem started all with SP1) - AMD Turion (TM) 64 X 2 Mobile Technology TL-60 2.00 GHz - ATI Radeon X 1200 Series

    This is probably the strangest problem that I've never seen or heard of.  I've owned this phone for about a year and a half without any problem, then one day, I decided to put my computer into sleep mode by closing the lid (I've done several times before without problem.).  When I lifted the lid, the computer woke up, but the screen refused to show.  Thinking it was an easily solvable problem, I restarted the computer.  The computer turned on, but the screen was black.  After having turned the computer works enough times (probably 20), finally displayed screen and the error message say 'RTC Mode Fixed.  Date and time can be wrong. "I couldn't help but think"What the... ". "I ran into my share of issues of computer before, but nothing as weird as this.

    Assuming that everything was fine, I let the computer start normally and shortly after the BIOS, the computer screen suddenly turns off.  The only way I could get the boot sequence to pass the BIOS screen and start normally, I had to remove all the devices (including the power cord.)  After the computer has finally loaded completely, I was able to function normally.  Almost every time that I cut it however, the black screen problem happen again.

    A solution will be greatly appreciated.

    If you still experience the problem, or if you arrived after doing a search for the same problem with your Inspiron1526 (or other). The solution is to replace the CMOS battery. There was some problems with the connector of the screen becomes loose, but if reinstalling the display connector does not solve your problem, then the battery is dead.  The Mitsubishi CR2032 batteries from CHINA are down less than 1.5 volts in only 1-2 years. Looking at the battery that looks like they're a cheap copy of bootleg and probably not at all Mitsubishi. They all have the "Made In CHINA" stamp on the bottom edge. Unfortunately to get to the CMOS battery, you will need to disassemble the laptop computer entire almost to have access, but by replacing the bad battery with a reputable CR2032 3 v battery will solve the problem. After the first reboot, you need to give time for the BIOS to reconfigure and you need to reset the time system and date but the laptop will resume its normal operation after that.

    Unfortunately many calls to Dell technical service gave no help to this problem either. Technicians have even claimed to have no knowledge of what the CAPS and the blinking NUM LOCK lights meant. If you are lucky, you may be able to restart a couple times before the laptop doesn't start is not at all, but the time system must be reset - if this happened to you, it's a dead giveaway that the CMOS battery is about to fail. Once you hear the voltage of the battery drops to initial power engage readers and the fan will run for a few moments and then the unit will completely disable. Nothing appears on the screen.

  • Medical id on the locked screen IOS10

    Hello

    Can someone let me know how to get the medical ID coordinates on the screen locked as they have disappeared since the update of IOS10?

    Thank you

    Alison

    If you double click the home button the password screen appears, press on emergency in the lower left corner, then Medical ID is in the lower left corner.

  • The gray bar appear on the new screen

    Hi Apple,

    I am facing problem of gray bar on the top of the touchscreen iPhone page. I have been using iPhone for 2012 and very loyal user. For the past two weeks, the touch screen problem is disable and I have to press the top of the screen face hard to exploit the iPhone. My warranty of phone was actually more than 6 months ago. I need another faulty phone. My cousins had the same problem but luckily covered 1 year manufactured warranty. I had already changed my phone twice in the year last because of the same issue. Unfortunately, I have to buy a new device with no choice. If any of you have a good solution please let me know.

    Thank you.

    < published by host >

    Hello

    Your profile says your iPhone is running iOS 7.1.1.

    If that is correct, you can update your iPhone by tapping settings > general > software update (via Wi - Fi) or connect your iPhone to a computer and update via iTunes.

    And try the troubleshooting steps here > If the screen of your iPhone, iPad or iPod touch does not respond to touch - Apple Support

  • When you define the virtual measure of the Manager, the entire screen scrolable

    Hi all,

    My original CD is what is displayed in this thread

    http://supportforums.BlackBerry.com/T5/Java-development/fields-alignment-in-Manager/m-p/1297121

    I got a solution for this case are not the last field added to VFM in short my repainting issue is resolved

    But now I have another problem

    It's that I should give my vfm an area specified on the screen.

    I found two ways

    setExtent() and setVirtualExtent()

    If I use setExtent() prblm it gives my is that kind of area hard is the for the optimization of the resources on the screen, if the area of fields its ok. But if the field is less than the assigned area there is empty space below them, which is kind of wrong.

    So he made me use setVirtualExtent(), it sort the problm setExtent() was given, but raised a new now if fields added consume more VFM my entire screen area is set to scrolable, but actually only the VFM must scroll.

    so, please help me to sort out one of the question is the issue of the emptyspace so that I can use the setExtent()

    or the scrolling screen problem so i can use setVirtualExtent()

    A big thank you in advance to all the world.

    Respect of

    Thank you peter for your answers.

    My problem is now solved. I just do a check in the subLayout() of my VFM on basis of the number of fields to adjust the height in setExtent(). Now my domain is added in the optimization of resources, but the field 1 is always at the top new fields are added below and I have to scroll to access. but my of paint and other problems are now solved.

    (No idea of what is happening in particulr but thank God my problm is now resolved)

    Concerning

  • X 230 screen problem

    Hello

    I just got my second x 230 laptop and problems with the screen. The screen is constantly shimmering and it is much more obvious when the background is dark gray. This is the replacement that I just got and it still has the same problem. On the first trackpad was loose and had the flashing screen problem so I asked a replacement and the same issue of screen and also the battery does not fit in correctly even when I lock both sides it is always a big gap on one side and it is very vague. I m totally disappointed with the Lenovo quality control. but also tired of send them back as I believe that the following will probably be some other problems. What I tried:

    1 - Updated BIOS updated

    2. all the updated video drivers updated

    3. increase of 16 GB ram

    None of them solved the problem. It is also an IPS display.

    I would appreciate an answer if someone had the same problem and managed to fix it somehow.

    Thank you

    ALE

    Change with the increase in brightness? You may be sensitive to slow pulse modulation to control the brightness of the LED backlighting.

    Regarding the flicker with certain model I see as well on my X 220. Even my professional monitor NEC 2090 UXi was the question when slowly turned on but it disappears in a few hours. The reason is fully explained here http://www.lagom.nl/lcd-test/inversion.php and there is probably no solution for this in the laptop display segment. It is unlikely that you have two boxes with the question that will be just a bad luck, but there could be a lot of poster that shows the issue more than others.

    Another reason could be used to simulate colors 8 bits resolution per channel FRC . X 220 display / X 230 is very likely e - IPS, technology, which is limited to 6 bits only. The particular implementation of the FRC may also present effects of annoying flicker for some combinations of color.

    Sorry, I don't have any good advice. Buying an LCD monitor is always a nightmare for me because there are too many possible questions that would bore me. On the other hand, X 230 is currently the only Lenovo laptop which has a decent view. Other models have TN craps only.

Maybe you are looking for

  • low surrogate char

    I get this error message when you try to click on the url and other things "low tank of substitution without previous tank substitute extended to index: 9 Make sure the string is coded correctly. » I do not use fish clown or something like that and I

  • clock alarm clock in pre 3 allows only 1 ringtone

    Hellomy clock is normally dozens alarm in pre 2. Every 15 minutes from 05:00 to 19:00. Together with your old phone and alarm fullvolume alarm and I have everything that I need very quickly.However you just bought a pre 3 and she is transferred to my

  • How to lock programs pinned to desktop

    How to lock programs pinned to the start menu?  I arranged programs pinned in a specific order, so I could find them easily.  Lately, whenever I start the computer, all the icons are aligned along the left side of the screen in a different order.

  • How can I fix my runningtime?

    I tried to download a few programes and leave programs scan my computer and when I want to solve the problem they want me to buy the progrem.is their thing I can do to fix this problem without having to pay for it thanks

  • Where can I get a file Miss Solution Center for Vista Home Premium: 7zS2677?

    Solution Center does not lack the missing file. Message says cannot find the file '7zS2677 '. Help, please.