BlackBerry smartphone how to increase the size of database - please help please please

Hi all

I'm new to the world of blackberry and am stuck with problems. The first is that the size of the database of my BB 9000 is 812.3 K, which I think is default. Now, it's full I get many emails on my phone. For this reason my call logs is deleted automatically, and all the data that I left in the call logs are for the last 24 hours only.

I need help to understand if it is possible to change the size of the database, or if my emails can be downloaded on my media card that is 2 GB. If none of the above is possible then please tell me a solution I need to have for at least 1 week call logs.

Help, please

Jousset

jousset wrote:
Sorry for that database thing... I was wrong... Call log stores only 20 entries. any idea y than what is happening?

Look at your Messages folder > Menu > view folder > Call Logs... now do you see more than the last 20 calls?

Tags: BlackBerry Smartphones

Similar Questions

  • How to increase the size of the menu bar?

    My bar menu and all the buttons at the top suddenly, all are much smaller. Any ideas on how to increase the size of the top of the screen? IM talking not about the size of Web pages, just the menus up to the top.

    Don't want to use the menu bar and not the Firefox menu button?

    See also:

    You had previously placed all the items in the Menu bar?

    You can set the layout.css.devPixelsPerPx pref on the topic: config page on 1.0 or Windows 8 to 1.25 and if necessary adjust layout.css.devPixelsPerPx from 1.0 to 0.1 or 0.05 steps (1.1 or 0.9) do the icons to display properly.

    See also:

    An extension allows you to adjust the size of the text in the user interface and zoom the page in the browser window.

    You can watch this extension to adjust the font size for the UI (toolbar).

    You can watch the Default FullZoom Level or NoScript extension if the web pages need to be adjusted after the change of layout.css.devPixelsPerPx.

  • Toshiba 24W1433DG - how to increase the size of the subtitles

    Good evening.

    I bought model lcd 24W1433DG I
    in trouble in subtitles divx, movies meto a pen and turn the LCD screen and all the subtitles of movies are very small and the big give computer... I went to the maximum value and the 30, but the legend is small (I mean the subtitles of attention for divx movies) would like to help

    How to increase the size of the subtitles.

    Thank you

    Message has been translated

    Hello

    As far as I know, the size of the subtitles can be increased.

  • How to increase the size of the button created by programming

    I created a button send programmatically. How to increase the size of the button. Also change the position of the button.

    Thank you
    PC

    The size of the "submit" button cannot be increased. She get automatically extended by the size of the text.

    Thank you
    -Anil

  • How to increase the size of the file

    My application creates .amr files of 0 KB after completing the recording of the voice. How can I increase the size of the file.

    I think I am, but I write my code if you could help me.

    • This is in fact the problem is that it is not written in my .amr file if it is their creation

    whenever I call someone.

    • Furthermore it is also telling me that 'myappname' trying to record media.

    So confirmation registration takes place

    However why write records into mu .amr files intrigues me

    Thanks in advance

    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    
    import javax.microedition.io.Connector;
    import javax.microedition.io.file.FileConnection;
    import javax.microedition.media.Manager;
    import javax.microedition.media.Player;
    import javax.microedition.media.control.RecordControl;
    
    import net.rim.blackberry.api.phone.Phone;
    import net.rim.blackberry.api.phone.PhoneCall;
    import net.rim.blackberry.api.phone.PhoneListener;
    import net.rim.blackberry.api.phone.phonegui.PhoneScreen;
    import net.rim.blackberry.api.phone.phonegui.ScreenModel;
    import net.rim.device.api.i18n.Locale;
    import net.rim.device.api.ui.component.Menu;
    import net.rim.device.api.ui.container.MainScreen;
    
    /**
     * A class extending the MainScreen class, which provides default standard
     * behavior for BlackBerry GUI applications.
     */
    public final class RecordScreen extends MainScreen
    {
        Player player;
        RecordControl recorder;
        private ByteArrayOutputStream output;
        byte[] data;
        boolean yes = false;
        int st;
        /**
         * Creates a new RecordScreen object
         */
        public RecordScreen()
        {
            Phone.addPhoneListener(new PhoneListener() {
    
                public void conferenceCallDisconnected(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callWaiting(int callid) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callResumed(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callRemoved(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callInitiated(int callid) {
                    PhoneCall phoneCall = Phone.getCall(callid);
                    if (phoneCall != null)
                       /* st = Dialog.ask(Dialog.D_YES_NO,
                                "Are you sure to record this call?");
                        if (st == Dialog.YES) */
                            yes = true;
                      /*  else
                            yes = false; */
                        // TODO Auto-generated method stub
    
                }
    
                public void callIncoming(int callId) {
                    // TODO Auto-generated method stub
    
                    // TODO Auto-generated method stub
                   // Dialog.ask(Dialog.D_YES_NO, "Are you sure to record this call?");
    
                    PhoneCall phoneCall = Phone.getCall(callId);
                    if (phoneCall != null)
                        yes=true;
    
                    // TODO Auto-generated method stub
              /*      if (yes) {
                        try {
                            recorder.commit();
    
                        } catch (IOException e) {
                            // TODO Auto-generated catch block
                            System.out.println("====Exception: "+e.getMessage());
                        }
                        player.close();
                        data = output.toByteArray();
                        saveRecordedFile(data);
                    }  */
    
                }
    
                public void callHeld(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callFailed(int callId, int reason) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callEndedByUser(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callDisconnected(int callId) {
                    // TODO Auto-generated method stub
    
                    if (yes)
                    {
                        try {
                            recorder.commit();
                            data = output.toByteArray();
                            saveRecordedFile(data);
                            player.close();
                            }
                        catch (IOException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                        }
                        finally
                        {
    
                             data = output.toByteArray();
                             saveRecordedFile(data);
                             player.close();
                        }
                      //  player.close();
                       // data = output.toByteArray();
                        //saveRecordedFile(data);
    
                        /** _rcontrol.commit();
                       _data = _output.toByteArray();
    
                       saveRecordedFile(_data);
    
                       _output.close();
                       _player.close();**/
                    } 
    
                }
    
                public void callDirectConnectDisconnected(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callDirectConnectConnected(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callConnected(int callId) {
                    // TODO Auto-generated method s
                    //@@ScreenModel scr=new ScreenModel(callId);
    
                    //set language to english
                    //@@Locale.setDefault(Locale.get(Locale.LOCALE_en));
                    //get Menu
                    //@@Menu menu=scr.getPhoneScreen(PhoneScreen.PORTRAIT, PhoneScreen.ACTIVECALL).getMenu(0);
                    /*System.out.println("Menu of BB Dialler - Begin");
                    for (int i = 0, cnt = menu.getSize(); i < cnt; i++)
                        System.out.println("Menu of BB Dialler - "
                            +menu.getItem(i).toString());
                    System.out.println("Menu of BB Dialler - End");     */
                    /**for (int i = 0, cnt = menu.getSize(); i < cnt; i++)
                        if(menu.getItem(i).toString().equalsIgnoreCase("Activate Speakerphone"))
                            menu.getItem(i).run();
                    **/     
    
                    PhoneCall phoneCall = Phone.getCall(callId);
                    if (phoneCall != null) {
                        if (yes)
                            initPlay();
                    }
    
                    if (yes) {
                        try {
                            recorder.commit();
                        } catch (IOException e) {
                            // TODO Auto-generated catch block
                           // System.out.println("====Exception: "+e.getMessage());
                            e.printStackTrace();
                        }
                        data = output.toByteArray();
                        try {
                            output.close();
                        } catch (IOException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                        }
                        //player.close();
                        saveRecordedFile(data);
                        player.close();
                    }
                }
    
                public void callConferenceCallEstablished(int callId) {
                    // TODO Auto-generated method stub
    
                }
    
                public void callAnswered(int callId) {
                    // TODO Auto-generated method stub
    
                    // yes = true;
    
                    // TODO Auto-generated method stub
    
                }
    
                public void callAdded(int callId) {
                    // TODO Auto-generated method stub
    
                }
            });
            // Set the displayed title of the screen
            setTitle("");
        }
    
        private void initPlay() {
            // TODO Auto-generated method stub
            try {
                player = Manager.createPlayer("capture://audio?encoding=amr");
                player.realize();
                recorder = (RecordControl) player.getControl("RecordControl");
                output = new ByteArrayOutputStream();
                recorder.setRecordStream(output);
                recorder.startRecord();
                player.start();
            } catch (Exception e) {
                // TODO: handle exception
                //Dialog.alert(e.getMessage() + "");
                e.printStackTrace();
            }
        }
    
        public boolean saveRecordedFile(byte[] data) {
            try {
    
                String filePath1 = System.getProperty("fileconn.dir.music");
    
                //WRiting into a file
                //String filePath1= "file:///store/home/user/";
    
                String fileName = "Call Recorder(";
                boolean existed = true;
                for (int i = 0; i < Integer.MAX_VALUE; i++) {
                    try {
    
                        FileConnection fc = (FileConnection) Connector
                                .open(filePath1 + fileName + i + ").amr");
    
                        if (!fc.exists()) {
                            existed = false;
                        }
                        fc.close();
                    } catch (IOException e) {
                        //Dialog.alert("Unable to save");
                        e.printStackTrace();
                        return existed;
                    }
                    if (!existed) {
                        fileName += i + ").amr";
                        filePath1 += fileName;
                        break;
                    }
                }//end for
                System.out.println(filePath1);
                // output---file:///store/home/user/pictures/Photo Editor(10).bmp
                System.out.println("");
    
                FileConnection fconn = (FileConnection) Connector.open(filePath1, javax.microedition.io.Connector.READ_WRITE);
                if (fconn.exists())
                    fconn.delete();
    
                fconn.create();
                fconn.setHidden(false);
    
                OutputStream outputStream = fconn.openOutputStream();
                outputStream.write(data);
                outputStream.close();
                fconn.close();
                return true;
            } catch (Exception e) {
                 //System.out.println("====Exception: "+e.getMessage());
                // Dialog.alert("====Exception: "+e.getMessage());
                e.printStackTrace();
            }
            return false;
        }
    
    }
    
  • HP - 50g RPN - how to increase the size of the variable icon in the command screen in the RPN

    Greetings.

    How can I increase the size of the icons 'F' keys for variables in the RPN command line window?

    My reason for this is to be able to see the full name of the variable.

    Thank you.

    Edit: Perhaps sizes of keys to function 'F' is what determines the size of the variable icon. Does this mean that it cannot be increased?

    If you press SHIFT RIGHT and then press the ARROW KEY down, you can see more than 5 characters that are currently displayed for the softkey text.

    a second solution to think abou... to help the CSE function and custom designed GROBs.

    (However, take into account the current size of the police... how small it really is possible and stay legible-

    You must take account of the resolution of the screen of 50 G... it's not a 'Tablet' hi-res-like display)

    See the example on page 20-4 of the 50G users guide.

    a copy of the user guide can be downloaded here:

    http://h20000.www2.HP.com/bizsupport/TechSupport/DocumentIndex.jsp?ContentType=SupportManual & lang = to & CC = US & docIndexId = 64179 & TaskID = 120 & prodTypeId = 215348 & prodSeriesId = 3235173

    Here is the example used on page 20-4

    % HP: T (3) A (R) F (.);
    { {
    21 8 00000EF908FFF900FFF9B3FFF9A2FFF9A3FFF9A0FFF388FF GROB
    "hp"}}

    the list above on the battery... run

    MENU

    If you try to increase the amount of visible characters when running programs, you can use INFORMATION or an application like GUIPLUS located here:

    http://www.HPCalc.org/search.php?query=guiplus

  • How to increase the size of the buffer veristand UDP?

    Hello!

    I'll have some lost data of veristand screen and I want to increase the size of the UDP buffer. This is a new option in veristand 2011 that I can read on this link: http://zone.ni.com/reference/en-XX/help/372846C-01/veristand/whats_new/ (improving the workspace section).

    Someone at - it now haow to do?

    Thanks in advance,

    Miguel.

    Do you mean how to do it from the VeriStand workspace? On your graphical work space click on setup to enter the chart configuration dialog box. In the configuration dialog box, you will see where you can enter a new value for the UDP buffer size.

  • How to increase the size of the buffer

    Hi, I would like to ask how can I increase the size of the buffer?

    My problem is that the generation cannot be started,

    because the buffer size is too small by the way I use DAQ Assistant.

    Choose the size of the buffer: 1

    Minimum required buffer size: 2

    so, how do I solve it?

    Thank you

    Chris

    Hello Chris, can I ask what material you use. Currently the DAQ Assistant in your code example is configured to run continuous Acquisition and thus expects a type of dynamic data. This can be seen by the small red spot known as a point of stress and is shown when LabVIEW must convert the data to a different type. There are two options you can try to solve this problem.

    (1) change the type of Acquisition "(on request) 1 sample" in the DAQ Assistant, he will write your input value for the cDAQ with each iteration of the while loop

    (2) change of data entry strikes at a waveform

    Here are some articles that you might find useful http://zone.ni.com/devzone/cda/tut/p/id/5438

    Hope this is useful

    Philippe

  • How to increase the size of the icons in the notification area (lower right corner of the XP taskbar)

    For some reason when I booted up my laptop, the icons were tiny and too small for my eyes. I think it was related to the installation of TestOut LabSim software on the laptop, because I noticed that the problem after doing so.

    I was not yet aware that it was possible to adjut the size fo the icons in the notification area. All the links I found affect the icons in the start menu, or quick launch menu, but not the notification area.
    The notification area is now two-lines, if it used only one, but the size of the taskbar has not changed. My DPI settings are always set to 'large '. The display resolution is unchanged.

    The thing where you right-click the taskbar, choose 'Properties', then click on "Start menu", then customize, then choosing "large icons" is only the start, not the notification area menu. It is also already on large icons.
    In addition, the thing where you right click on the Quick Launch bar and ends by choose "large icons" affects only the Quick Launch bar, not the right notification icons.

    http://www.Flickr.com/photos/10736018@N05/5876069573/sizes/l/in/photostream/

    How do I do the large icons again so I can actually see them? My eyes are not more perfect, and I would rather not be squinting when using my laptop. I think seriously increase the DPI to 150% in its current form.

    Hi bhermance,

    Method 1

    Try the steps mentioned below and see if it helps.

    one) to open display, click Start, click Control Panel, click appearance and themes, and then click display.

    (b) click on the appearance tab, then Advanced.

    (c) now select buttons of legend in the list of items and increase the size.

    (d) click OK and apply

    Check if that helps.

    Method 2

    If the previous step fails, then I suggest that you uninstall TestOut LabSim software of the computer and check if it helps.

    How to change or remove a program in Windows XP

    http://support.Microsoft.com/kb/307895

  • How to increase the size of the graphics memory by default HD4600 on the envy 15-jt100

    I would like to run Pro Evolution Soccer in my 15 want jt100. However, the game checks the size of the graphics memory by default, and the default value is 32 M, that is so small that the game just does not work, even if the overall performance is enough for this game... Is it possible to increase the size of the graphics memory by default?

    Thank you

    Larry

    Hello lyy,.

    To answer your question about whether you can increase graphics memory by default, it wouldn't be. There are explanations to this here: Graphics Memory FAQ for Microsoft Windows 8 and 8.1*. He also explains that the way that much available is conditioned by the other components of the computer.

    Consider whether, you shouldn't have a problem to play Pro Evolution Soccer, on the laptop. You can check this with: you can run.

    To improve the performance of read this document: improve the performance of system without adding memory (Windows 8).

    I also recommend to test other games with minimum requirements similar or very well.

    Please let me know how it goes.
    Thanks for posting on the HP Forums.

  • How to increase the size of our C drive of 40 GB to 100 GB and the rest as logical drive D without using any third party tool, it is possible in the environment of windows 7 ent

    My dear, we are usning a custom image for our environment with win 7 ent deployed for all our computer network, in our customization take us C 40 GB and D drive 425GB space now, we are facing problem with the most complete C drive we had to move, and increasing the size of our disk of 40 GB to 100 GB and the rest as logical drive D without using any tool from third party , it is possible in windows 7 environment ent if so how please send procedure

    Original title: move/resize

    You will have to go on Support of Windows 7 forums on the following link to help solve your problem: http://social.technet.microsoft.com/Forums/en/category/w7itpro/

  • How to increase the size of the bounding of a picture box?

    I imported two stills, different sizes, AE and placed on two layers in a composition. I'm playing with the reshape effect, and as I enlarge the small image, it gets cropped to its bounding box.

    How can I increase the size of the bounding box without changing the size of the image? I tried utility > push the limits but this does not seem to do what I want.

    I am running CS6.

    Dial prior to comp idenhtical sizes.

    Mylenium

  • How to increase the size of the SYSTEM tablespace.

    Hello

    I tried looking for options to increase the size of the SYSTEM tablespace.

    I got this code

    -Alter tablespace SYSTEM resize 200 M;

    but I got this error "'operation not supported for petit_fichier tablespace SYSTEM" "

    I don't know how to solve this problem

    Thanks in advance for help you

    Rakesh

    Select * from relative_ where nom_tablespace = 'SYSTEM '.

    DBA_DATA_FILES

  • How to increase the size of the disk partition VMware Studio.

    Hello

    I installed the VMWare Studio unit on ESX 4.0 host system. I've been running more disk space for builds, so I wanted to provide more space for the SCSI in ESX, Edit-settings of the Virtual Appliance. I increased the size to 256 GB SCSI disk.

    I then went to the guest VMWare Studio system, and the device/dev/sda5 displays always only 30 GB, and 12 GB is exhausted. How can I make the Guest OS from VMWare Studio unit see the increase in size?

    I tried to use "parted", but this fails because/dev/sda5 is mounted. "' I can't umount/dev/sda5 as/dev/sda5" is ongoing. " I am aware of the 1004047 of the Knowledge Base article, but it is of no use, because is not specifically for VMWare Studio unit.

    Thank you.

    If you have a lot of disk space on the ESX Server, yes creating and adding a new virtual disk (vmdk) to the VM Studio is the way to go. Mount the new drive for the Studio colleagues OS (Ubuntu), and the key is/opt/vmware/www/build simple installation on the new disk to create the new space drive for Studio use. Don't forget to back up your existing data in this directory first. See http://communities.vmware.com/thread/244715?tstart=0 for the similar explanation. Let us know how it goes.

  • How to increase the size of the drive to C:\

    Hello

    I use the latest version of VMware Workstation and have an image of Windows Server 2003 with the default C:\ 8 GB size. How can I increase the size of car?

    Thank you

    This howto should work for WS, too:

    http://HubPages.com/hub/how-to-increase-VMware-hard-disk-space

    Kind regards

    Gerrit Lehr

    If you have found this or other useful information, please consider awarding points to 'Correct' or 'useful '.

Maybe you are looking for

  • My screen is incomplete and does not show all my emails or menu option

    I closed and open TB several times, but every time I open it, not all views coming, including tabs, menu options, folders and send messages. I'm afraid that if I restart my calculation or redownload TB, I lose everything, which is not an option. Is i

  • HP PAvillion M7U61EA #ABH: HDMI port no longer works

    For the last few days I used the HDMI port to stream video and audio to two different TVs LG and Samsung monitor without problems. Directly into TVs or with an AV processor and even if sound was not always easy, I could run BB iPlayer and Netflixs wi

  • Portege R830 - need details template

    Hi - I have a Portege R830 and cannot identify the exact model - I have the serial number 4C047625H, but that's all The sticker on the back was covered by a sticker SUB and I can't get the model number! Help please

  • Qosmio G40 - 120 Integrated TOSHIBA hybrid Analog/PCI DVB - T TV Tuner HOW to

    Hi everyone and thank you in advance for your help.I have a qosmio as in the subject with this hybrid tuner. This seems to work well, but the fact that the only software recognized as dual tuner is windows media center in vista ultimate oem supplied.

  • Ethernet and Modem does not not on Satellite A80

    I bought a laptop Toshiba Satellite A80 with windows XP Home Edition. I have upgarded OS for win XP Professional. Now the ethernet and modem services are not installed. I downloaded the drivers from the toshiba web site and tried to install it. But n