Blackberry fields

I would like to create some fields to display in a vertical list, so that when the user clicks on a field, it starts a new screen. I know that this can be achieved with the fieldChangeListener.

I would however like to each field contains some text and a picture. What is the best way to implement this but still be able to use an earpiece that allows to launch a new screen.

One way would be to create your own custom listfield where you would like to paint the picture and the text yourself.

I hope this helps.

Tags: BlackBerry Developers

Similar Questions

  • Fields button

    Hi, I have the following code, in which case I would have some button fields made visible within the application. My code is as follows:

    This is a replacement code that corrects a number of problems with your code.  I suggest you compare that with your code and see if you understand what the parties are trying to do.

    You will find a reference very valuable.

    http://supportforums.BlackBerry.com/T5/Java-development/MainScreen-explained/Ta-p/606644

    Import net.rim.device.api.system.Bitmap;
    Import net.rim.device.api.system.Display;
    Import net.rim.device.api.ui.component.ButtonField;
    Import net.rim.device.api.ui.component.BitmapField;
    Import net.rim.device.api.ui.component.LabelField;
    Import net.rim.device.api.ui.container.MainScreen;
    Import net.rim.device.api.ui.container.VerticalFieldManager;
    Net.rim.device.api.ui import. *;
    SerializableAttribute public class AppLogoMainscreen extends form {}
    public AppLogoMainscreen() {}
    Bitmap logoBitmap = Bitmap.getPredefinedBitmap (Bitmap.EXCLAMATION);
    BMF BitmapField = new BitmapField (logoBitmap, BitmapField.FOCUSABLE)
    {
    protected boolean navigationClick (int status, int time)
    {
    createAndDisplayMainMenu();
    Close();
    Returns true;
    }
    };
    Add (BMF);
    }
    public void createAndDisplayMainMenu() {}
    Screen newScreen = new MainScreen(Manager.NO_VERTICAL_SCROLL |) Manager.NO_VERTICAL_SCROLLBAR);
    VerticalFieldManager backgroundManager = VerticalFieldManager(Manager.USE_ALL_WIDTH | nouveau Manager.USE_ALL_HEIGHT)
    {
    Bitmap logoBitmap2 = Bitmap.getPredefinedBitmap (Bitmap.EXCLAMATION);
    int imgWidth = logoBitmap2.getWidth ();
    int imgHeight = logoBitmap2.getHeight ();
    int imgXPos = 5;
    int imgYPos = 15;
    int imgTop = 0, imgLeft = 0;
    public void paint (Graphics graphics)
    {
    graphics.setBackgroundColor (Color.PALEGREEN);
    Graphics.Clear;
    graphics.setColor (Color.FORESTGREEN);
    graphics.fillRect (0, 0, 480, 80);
    graphics.fillRect (0.0, 20, 360);
    graphics.fillRect (460, 0, 20, 360);
    graphics.fillRect (0, 340, 480, 20);
    graphics.drawBitmap (imgXPos, imgYPos, imgWidth, imgHeight, logoBitmap2, imgLeft, imgTop);
    imgXPos = 425;
    graphics.drawBitmap (imgXPos, imgYPos, imgWidth, imgHeight, logoBitmap2, imgLeft, imgTop);
    Super.Paint (Graphics);
    }
    };
    ButtonField premierButton;
    ButtonField champButton;
    ButtonField div1Button;
    ButtonField div2Button;
    ButtonField confButton;
    premierButton = new ButtonField ("Premiership", ButtonField.CONSUME_CLICK);
    champButton = new ButtonField ("Champtionship", ButtonField.CONSUME_CLICK);
    div1Button = new ButtonField ("L1", ButtonField.CONSUME_CLICK);
    div2Button = new ButtonField ("Leauge 2", ButtonField.CONSUME_CLICK);
    confButton = new ButtonField ("Conférence", ButtonField.CONSUME_CLICK);
    backgroundManager.add (premierButton);
    backgroundManager.add (champButton);
    backgroundManager.add (div1Button);
    backgroundManager.add (div2Button);
    backgroundManager.add (confButton);
    LabelField labelField = new LabelField();
    backgroundManager.add (labelField = new LabelField ("Football Ground App", Field.FIELD_HCENTER)
    {
    protected void paint (Graphics g) {}
    int prevColor = g.getColor ();
    g.setColor (Color.WHITE);
    Super.Paint (g);
    g.setColor (prevColor);
    }
    });
    Font myFont = Font.getDefault (.derive(Font.BOLD |)) Font.ITALIC, 11, Ui.UNITS_pt);
    labelField.setFont (myFont);
    backgroundManager.add (labelField = new LabelField ("For BlackBerry", Field.FIELD_HCENTER)
    {
    protected void paint (Graphics g) {}
    int prevColor = g.getColor ();
    g.setColor (Color.WHITE);
    Super.Paint (g);
    g.setColor (prevColor);
    }
    });
    labelField.setFont (myFont);
    newScreen.add (backgroundManager);
    UiApplication.getUiApplication () .pushScreen (newScreen);
    }
    }

    Good luck...

  • Text field in contacts

    Hello!

    I want to reuse a special text used in BlackBerry field sign on the right + card, one that shows (CC or BCC), also shows dial and uses special subcomponents to display the list of added contacts chosen of ContactPicker.

    Is it still possible?

    Best regards

    SOAman

    I guess you need to develop for yourself.

  • Custom field setBorder() causes a constant refresh

    Hello

    I have a class definining a custom BasicEditField that I spend in two pictures - one image for a focused state and an image of a State not targeted.  When the focus of the field, using setBorder() to change the background image of the BasicEditField.

    It all works very well.

    However, there is a problem.  I got this BasicEditField custom on the same screen as a MapField.  I noticed that the MapField looks like it is refreshing (or flashing) very quickly.  The culprit is the setBorder() in my custom class.  Once I comment out the setBorder(), refreshing / blink no longer occurs.  This could be the cause?  Here is my class:

    Note: I tried to delete the invalidate () onFocus() and onUnfocus(), and this does not solve the problem.

    package com.usps.blackberry.fields;
    
    import net.rim.device.api.system.Bitmap;
    import net.rim.device.api.system.Characters;
    import net.rim.device.api.ui.Color;
    import net.rim.device.api.ui.Graphics;
    import net.rim.device.api.ui.XYEdges;
    import net.rim.device.api.ui.component.BasicEditField;
    import net.rim.device.api.ui.decor.BorderFactory;
    
    public class CustomBasicEditField extends BasicEditField {
    
        private String image;
        private String highlightedImage;
        private String currentImage;
    
        public CustomBasicEditField(String image, String highlightedImage) {
            super(BasicEditField.NO_NEWLINE);
            this.image = image;
            this.highlightedImage = highlightedImage;
            this.currentImage = image;
        }
    
        public void paint(Graphics graphics) {
            setBorder(BorderFactory.createBitmapBorder(new XYEdges(12, 12, 12, 12),
                    Bitmap.getBitmapResource(currentImage)));
            graphics.setColor(Color.BLACK);
            super.paint(graphics);
        }
    
        protected void onFocus(int direction) {
            currentImage = highlightedImage;
            invalidate();
        }
    
        protected void onUnfocus() {
            currentImage = image;
            invalidate();
        }
    
        protected boolean navigationClick(int status, int time) {
            fieldChangeNotify(1);
            return true;
        }
    
        public boolean keyChar(char key, int status, int time) {
            if (key == Characters.ESCAPE) {
                if (getText().length() == 0) {
                    return super.keyChar(key, status, time);
                } else {
                    setText("");
                }
                return true;
            } else {
                return super.keyChar(key, status, time);
            }
        }
    }
    

    Thank you!

    default setBorder causes updateLayout - if you think about it, you'll see why. It is a much heavier than a simple invalidate() operation. And, ironically, you have inside the paint, where these operations should be strictly prohibited!

    Fortunately, there are two ways to solve the problem:

    (1) move your setBorder in onFocus / onUnfocus

    (2) use the setBorder with Boolean indicator updateLayout versions and pass false it

    It is even better: use setBorder (Boolean int visual, border, updateLayout) twice in the constructor - once with Visual Field.VISUAL_STATE_NORMAL, once with VISUAL_STATE_FOCUS, both times with updateLayout as false (as will not change the size of the border) and scratch your onFocus / onUnfocus in total.

  • New error screen

    Hi, I have the following code

    import net.rim.device.api.system.Bitmap;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.BitmapField;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    import net.rim.device.api.ui.*;
    public class AppLogoMainscreen extends MainScreen {
        public AppLogoMainscreen() {
                Bitmap logoBitmap = Bitmap.getBitmapResource("App_Logo.png");
                BitmapField bmf = new BitmapField(logoBitmap, BitmapField.FOCUSABLE)
                {
                    protected boolean navigationClick(int status, int time)
                    {
                        createAndDisplayMainMenu();
                        close();
                        return true;
                    }
                };
                add(bmf);
        }
        public void createAndDisplayMainMenu() {
            MainScreen newScreen = new MainScreen(Manager.NO_VERTICAL_SCROLL|Manager.NO_VERTICAL_SCROLLBAR);
            VerticalFieldManager backgroundManager = new VerticalFieldManager(Manager.USE_ALL_WIDTH|Manager.USE_ALL_HEIGHT)
            {
                Bitmap logoBitmap2 = Bitmap.getBitmapResource("football.jpg");
                Bitmap shirtBitmap1 = Bitmap.getBitmapResource("football.jpg");
                Bitmap shirtBitmap2 = Bitmap.getBitmapResource("football.jpg");
                Bitmap shirtBitmap3 = Bitmap.getBitmapResource("football.jpg");
                Bitmap shirtBitmap4 = Bitmap.getBitmapResource("football.jpg");
                Bitmap shirtBitmap5 = Bitmap.getBitmapResource("football.jpg");
                Bitmap shirtBitmap6 = Bitmap.getBitmapResource("football.jpg");
                Bitmap shirtBitmap7 = Bitmap.getBitmapResource("football.jpg");
                Bitmap shirtBitmap8 = Bitmap.getBitmapResource("football.jpg");
                int imgWidth = logoBitmap2.getWidth();
                int imgHeight = logoBitmap2.getHeight();
                int imgWidth1 = shirtBitmap1.getWidth();
                int imgHeight1 = shirtBitmap1.getHeight();
                int imgXPos = 5;
                int imgYPos = 15;
                int imgTop = 0, imgLeft = 0;
                public void paint(Graphics graphics)
                {
                    graphics.setBackgroundColor(Color.PALEGREEN);
                    graphics.clear();
                    graphics.setColor(Color.FORESTGREEN);
                    graphics.fillRect(0, 0, 480, 80);
                    graphics.fillRect(0,0, 20, 360);
                    graphics.fillRect(460, 0, 20, 360);
                    graphics.fillRect(0, 340, 480, 20);
                    graphics.drawBitmap(imgXPos, imgYPos, imgWidth, imgHeight, logoBitmap2, imgLeft, imgTop);
                    imgXPos = 425;
                    graphics.drawBitmap(imgXPos, imgYPos, imgWidth, imgHeight, logoBitmap2, imgLeft, imgTop);
                    graphics.drawBitmap(45, 95, imgWidth1, imgHeight1, shirtBitmap1, imgLeft, imgTop);
                    imgWidth1 = shirtBitmap2.getWidth();
                    imgHeight1 = shirtBitmap2.getHeight();
                    graphics.drawBitmap(45, 156, imgWidth1, imgHeight1, shirtBitmap2, imgLeft, imgTop);
                    imgWidth1 = shirtBitmap3.getWidth();
                    imgHeight1 = shirtBitmap3.getHeight();
                    graphics.drawBitmap(45, 217, imgWidth1, imgHeight1, shirtBitmap4, imgLeft, imgTop);
                    imgWidth1 = shirtBitmap4.getWidth();
                    imgHeight1 = shirtBitmap4.getHeight();
                    graphics.drawBitmap(45, 278, imgWidth1, imgHeight1, shirtBitmap3, imgLeft, imgTop);
                    imgWidth1 = shirtBitmap5.getWidth();
                    imgHeight1 = shirtBitmap5.getHeight();
                    graphics.drawBitmap(365, 95, imgWidth1, imgHeight1, shirtBitmap7, imgLeft, imgTop);
                    imgWidth1 = shirtBitmap6.getWidth();
                    imgHeight1 = shirtBitmap6.getHeight();
                    graphics.drawBitmap(365, 156, imgWidth1, imgHeight1, shirtBitmap5, imgLeft, imgTop);
                    imgWidth1 = shirtBitmap7.getWidth();
                    imgHeight1 = shirtBitmap7.getHeight();
                    graphics.drawBitmap(365, 217, imgWidth1, imgHeight1, shirtBitmap6, imgLeft, imgTop);
                    imgWidth1 = shirtBitmap8.getWidth();
                    imgHeight1 = shirtBitmap8.getHeight();
                    graphics.drawBitmap(365, 278, imgWidth1, imgHeight1, shirtBitmap8, imgLeft, imgTop);
                    super.paint(graphics);
                }
            };
            ButtonField premierButton;
            ButtonField champButton;
            ButtonField div1Button;
            ButtonField div2Button;
            ButtonField confButton;
            premierButton = new ButtonField("Premiership", Field.FIELD_HCENTER){
                protected boolean navigationClick(int status, int time)
                {
                    createAndDisplayPremiership();
                    getScreen().close();
                    return true;
                }
            };
            champButton = new ButtonField("Championship", ButtonField.CONSUME_CLICK|Field.FIELD_HCENTER);
            div1Button = new ButtonField("League 1", ButtonField.CONSUME_CLICK|Field.FIELD_HCENTER);
            div2Button = new ButtonField("League 2", ButtonField.CONSUME_CLICK|Field.FIELD_HCENTER);
            confButton = new ButtonField("Conference", ButtonField.CONSUME_CLICK|Field.FIELD_HCENTER);
            LabelField labelField = new LabelField();
            backgroundManager.add(labelField =  new LabelField("Football Ground App", Field.FIELD_HCENTER)
            {
                protected void paint(Graphics g) {
                    int prevColor = g.getColor();
                    prevColor = (Color.RED);
                    g.setColor(Color.WHITE);
                    super.paint(g);
                    g.setColor(prevColor);
                    }
            });
            Font myFont = Font.getDefault().derive(Font.BOLD | Font.ITALIC, 11, Ui.UNITS_pt);
            labelField.setFont(myFont);
            backgroundManager.add(labelField = new LabelField("For BlackBerry", Field.FIELD_HCENTER)
            {
                protected void paint(Graphics g) {
                    int prevColor = g.getColor();
                    g.setColor(Color.WHITE);
                    super.paint(g);
                    g.setColor(prevColor);
                }
            });
            labelField.setFont(myFont);
            premierButton.setMargin(10,20,3,20);
            backgroundManager.add(premierButton);
            champButton.setMargin(3,20,2,20);
            backgroundManager.add(champButton);
            div1Button.setMargin(3,20,2,20);
            backgroundManager.add(div1Button);
            div2Button.setMargin(3,20,2,20);
            backgroundManager.add(div2Button);
            confButton.setMargin(3,20,2,20);
            backgroundManager.add(confButton);
            newScreen.add(backgroundManager);
            UiApplication.getUiApplication().pushScreen(newScreen);
        }
        public void createAndDisplayPremiership(){
            MainScreen newScreen1 = new MainScreen(Manager.NO_VERTICAL_SCROLL|Manager.NO_VERTICAL_SCROLLBAR);
            LabelField labelField = new LabelField("For BlackBerry", Field.FIELD_HCENTER);
            newScreen1.add(labelField);
            UiApplication.getUiApplication().pushScreen(newScreen1);
        }
    }
    

    Hello

    Check this code.

    Please mark as resolved messages if you found a solution.
    Feel free to press the Bravo thank the user who has helped you

  • How to load images into memory

    I want to get the jpg of my webcam

    yesterday thanks to you

    I loaded jpg to the Simulator

    , but it has been imported to res java project

    How can I load the jpg into memory and read from the memory in the bb?

    If you know, or you know some post

    hot please answer T T

    This article will tell you how to read the jpg file in your project in memory.

    How - to add plain text or binary files to an application
    Article number: DB-00148
    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800620/How_To _...

    Then, you must convert the bytes into something that the BlackBerry can handle.  To do this, you use:

    EncodedImage.createEncodedImage (.);

    Now you get to get a Bitmap image, whose form the BlackBerry uses to display images on the screen.  This encodedImage object, you have created in the previous step and be used to get the bitmap image, simply use the

    getBitmap()

    method

    Now, the screen BlackBerry fields on the screen, so you must create a field for display, a BitmapField and tell him to use the bitmap image that you created.  It's easy, you just build a new BitmapField:

    BitmapField (bitmap Bitmap)

    Finally, you add the BitmapField to the screen you are viewing.

    There are shorter ways to do this, if you create a png rather than jpg images.

  • BlackBerry 10 Stop displaying recent contacts (max) compose email address fields

    In Blackberry 10, when I try to send an email to a contact (which I do 15 - 20 times per day) filled the top auto address is incorrect (missing the suffex .com). Say the name of contacts is arch and his email is [email protected]. When I type them Ark, 'ark@bunnypop', comes as the address at the top of the page. The actual email ([email protected]) comes to the bottem of the list. There is no contact registered with "ark@bunnypop" as a contact field.

    OS5 - 7 have been simply Remove collected e-mail addresses.

    Thank you

    back on topic...

    Currently, it is not possible to delete these addresses cached, sorry.

    If you select just enough times, it can become the suggested address.

  • BlackBerry touch Z30 responds, keyboard not typing in the fields, how to install?

    As the title suggests. I did a reset of the safety, the touch screen works very well and can move around as usual. It is every time I try to type on the keyboard. It depresses and produces noise, but no character come in the fields. I've recently updated to 10.3.2.xxxx now I can't connect to my BB protect in order to access the phone. Its stuck in the installation program.

    What can I do to overcome this? Any help is very appreciated. I know that my loggin and password. Just can't so can not go back to a full backup in link BB.

    Hello and welcome to the community!

    Given what you describe, I would recommend a reloading very clean BONES and also through the unofficial autoloader methods:

    Hopefully that will clear up the problems you encounter (in condition, of course, that this behavior started directly after you have completed the update you mentioned and haven't started some time before that).

    Good luck and let us know!

  • How to add a field to a position fixed in Blackberry?

    I'm curious to see if it is possible to display a field in a fixed position on the screen and at the bottom most layer if another Manager or field painted on it, except the bottom of the screen. As if this field is added to the background of the screen, but will appear above the actual background that can be set using Screen.setBackground (). Are there any specific manager who can achieve this? Or a combination of them? As far as I can see there may be overlaps between the Manager of the layouts. Is this true?

    Almost impossible to achieve with BlackBerry built-in managers (not sure about AbsoluteFieldManager, available since 6.0.0 API). You can write your own handler, but be prepared for a difficult journey.

    You can try looking for LWUIT - it does not have this concept, I don't know if it's quite ready for BlackBerry.

  • Clear field Q10 blackBerry feature

    We all do begin to type something and then decide to delete the entire paragraph, especially when you write an email. I am disappointed not being able to just click on the menu and select clear field or copy and paste. These features still benefit when texting and I have just the failed or have they got rid of it all together?

    Hello kp0130,

    Welcome to the BlackBerry support community.

    Thank you for your question about select all text in a message on your smartphone BlackBerry Q10.

    You can do it by holding your finger on a word until it appears highlighted, then a second time touch, touch the menu action, if it does not automatically appear (3 points on the bottom right) and select everything in the upper part of the menu. You can then press BACKSPACE to delete any highlighted text.

    Let us know if that helps.

  • Field of browser BlackBerry 2: Crash when loading web page with the County to expand

    I use the browser Blackberry 2 custom field in my application to display local html pages that I load device SD Card. For the few notes I met the application crash.

    I quickly tested behavior Blackberry browser for these pages and found that it crashes too. Steps to reproduce:

    1 torch 9800, operating system. 6.0

    2 copy attached to SD card files

    3. access to these files by using application "files."

    4. try to open the test.html file by clicking on it.

    5 blackberry browser will crash.

    Issues related to the:

    1. scope of browser Blackberry 2 uses the same API as Blackberry browser on platforms 6.0.x?

    2. is there no work around for this problem?

    Mark,

    Thank you for your comments. But I finally found the solution me

    The solution is the following:

    (1) change us html so that it will contain no image resources.

    (2) for each image resources, we create something like

    or any other appropriate HTML element. Here, we will retain certain information that will help us identify how and where we need to charge, a kind of identity.

    (3) first load us the HTML page in the application. It should load without any problems.

    (4) then call us the JavaScript function that will replace our

    items with images using the timer. It is possible with BrowserField2.invokeScript (). When the script will replace an HTML element with element, which could cause some resources load (I mean handleResourceRequest), so you should run with it.

    I tested this solution in my application and crash problems have been solved even when we have a lot of images on the web page stored locally in the device memory or on the SD card.

  • BlackBerry smartphones the display of images in the field of horizontal scrolling in blackberr

    Hi I want to show images in the horizontal field Manager and scrolling from right to left. focused image to see the place.

    What you ask is not trivial and will require a bit of reading as well as essays and substantive errors.

    Start by reading from this base.

    http://supportforums. BlackBerry.com/t5/java-development/mainscreen-explained/ta-p/606644

    http://supportforums. BlackBerry.com/t5/java-development/create-a-custom-layout-manager- for-a-screen /...

    http://supportforums. BlackBerry.com/t5/java-development/how-to-extend-Manager/ta-p/446749

    Once you have been through this, so try a few options and ask questions.

    I'm not aware of a KB article or thread on this forum that corresponds exactly to your needs, but there are lots of similar questions, so search the Forum to find answers too.

    Good luck.

  • BlackBerry Smartphones RESOLVED Yahoo Calendar sync: "access error to the internal field map.

    Hello.

    I received the error "access error to the internal field card" when trying to sync it with my Yahoo calendar.  I couldn't find anything online (including Blackberry support pages) for this error, but another user who has the same problem (http://forums.crackberry.com/f79/new-problem-phone-desktop-synch-57783/). The synchronization was successful in the past.

    Julianna

    Hi and welcome to the forums!

    I would reinstall the desktop software, a map of internal field, I think that would be connected Office:

    http://www.BlackBerry.com/BTSC/search.do?cmd=displayKC&docType=kc&externalId=KB15091&sliceId=SAL_Pub...

    Thank you

    Don't forget to adjust your thread. Put the check mark in the green box containing your answer! Thank you

  • Anniversary field of Smartphones blackBerry in synchronization

    I use the desktop software for my Blackberry to Outlook synchronyze.  It works well, except that the software ignores the anniversary field contacts.  Birthdays in Outlook are not transferred to Blackberry, or birthdays in Blackberry through Outlook.  Does anyone know why and how to remedy?

    I upgraded my Desktop Software v4.5 for version 4.7.  The problem was a bug in version 4.5, now fixed.

  • BlackBerry smartphone data truncated during synchronization - the note field size can be increased?

    I find that some data is truncated on the "BOLD" when my "BOLD" with Outlook synchronization. This is a problem for some of my bigger contact and entries of calendar notes.

    Is it possible to increase the size of these fields on the device must match which allows Outlook (or at all)?

    ... Thank you!

    It turned out that only some 200 entries truncated calendar had an atttachment, but some appeared to have a symbol (small rectangle) character that seems to replace a in the subject line. In my opinion, that they were introduced during a synchronized using an earlier version of Desktop Manager when I was with a Blackberry 8700.

    Re: problem of truncation: when syncing with the "BOLD", I discovered that in each case that a few words at most have been lost from the entries, regardless of the initial term. When I took the time to check them individually, most were not serious for me.

    Then... I still don't understand why it happened, but I was able to fix the problem for now.

    urumilton, thanks for your suggestion-

    rickn

Maybe you are looking for

  • How can I get a list of 'Keywords smart' assigned in firefox?

    I was assigning "Smart Keywords" in the latest Firefox... they are great! I attribute a lot, I begin to forget some of the older keywords... How to generate a list of smart keywords that have already been assigned to sort guest my memory?Bob

  • Cursor flashes quickly between the pointer and the hand when you move the link.

    Whenever it starts occurring, the status bar will start also flickering between showing the value of href of the link target and nothing, and tooltips (which would normally appear on the overview) briefly appear and disappear. The same thing happens

  • entry of the FPGA 9402 trigger cRIO 9064 on DIO does not read

    Hello I have a cRIO 9064 using the Module C 9402 as a quick DIO in a SCTL. I use it in a (GPDD) digital delay pulse generator. I've successfully the GPDD, triggered by a square wave generated internal, clocked at 1 MHz. and I measure the pulse output

  • my cd-rom and the webcam does not work

    For awhile, my CD player has not worked. I get the same response when I try to trouble shoot, the disk is damaged or missing. And just recently I realized that I can't access my web cam. I use a xhooua Pavilion #aba

  • Spore, black screen with sound, Windows 7 64 bit

    Hey,. Since I got my computer windows 7, I could not play Spore. When it installs, I press the launch button. Actually, the game crashes because I can hear the sound but can't see the graphics, its just black. This also occurs with most of my games i