Data on blackBerry Smartphones moving between two blackberry curves

Please help - I'm trying to move from a blackberry curve to another and can not see how to transfer my info from one to another - I tried using backup to the desktop manager and restoration, but he won't cooperate.

Can you be more specific about the problem?

Assuming you want to use both at the same time, you must use Assistant to switch from Desktop Manager Device in any case.  It automatically save your old curve and restore it to the new.

Tags: BlackBerry Smartphones

Similar Questions

  • get all the date of end of months between two dates

    Hi all, I'll try to find together the date of end of months between two dates.
    I have the following data in a table

    WITH AS's Data1
    (
    SELECT To_Date('4/30/2009','mm/dd/yyyy') dt, 'TEST' lname FROM dual UNION ALL
    SELECT To_Date('5/01/2009','mm/dd/yyyy') dt, "TEST2" lname FROM dual UNION all
    SELECT To_Date('5/02/2009','mm/dd/yyyy') dt, "TEST3" lname FROM dual UNION all
    SELECT To_Date('5/03/2009','mm/dd/yyyy') dt, "TEST4" lname FROM dual UNION all
    SELECT To_Date('5/04/2009','mm/dd/yyyy') dt, "TEST5" lname FROM dual UNION all
    SELECT To_Date('5/05/2009','mm/dd/yyyy') dt, "TEST6" lname FROM dual UNION ALL
    SELECT To_Date('5/31/2009','mm/dd/yyyy') dt, 'TEST7' lname FROM dual UNION all
    SELECT To_Date('6/01/2009','mm/dd/yyyy') dt, 'TEST' lname FROM dual

    )

    I would like to write an application that gives you all the end date for months between two dates
    for example, if you give the date 9/1/4 and 5/6/9, the output should be
    DT          LNAME
    -------------------
    4/30/2009   TEST
    IF I give you the dates 01/04/09 AND 01/06/09, THEN output should be
    DT          LNAME
    -------------------
    4/30/2009   TEST
    5/31/2009   TEST7
    as you can see, I want all the end dates of months between two dates by giving the output.

    If I give you 06/05/09 and 05/06/09, and then does so no output because there is no end of month between these two dates.
    Similarly, if I give you 30/04/09 and 30/04/09 then output should be 30/04/09 because it is an end of month date

    anyone can help to write a query. Thank you very much

    Jin
    Not sure if you need subquery, analytical functions for this.
    According to me, which should solve your purpose.

    WITH data1 AS
    (
    SELECT To_Date('4/30/2009','mm/dd/yyyy') dt, 'TEST' lname FROM dual UNION ALL
    SELECT To_Date('5/01/2009','mm/dd/yyyy') dt, 'TEST2' lname FROM dual UNION all
    SELECT To_Date('5/02/2009','mm/dd/yyyy') dt, 'TEST3' lname FROM dual UNION all
    SELECT To_Date('5/03/2009','mm/dd/yyyy') dt, 'TEST4' lname FROM dual UNION all
    SELECT To_Date('5/04/2009','mm/dd/yyyy') dt, 'TEST5' lname FROM dual UNION all
    SELECT To_Date('5/05/2009','mm/dd/yyyy') dt, 'TEST6' lname FROM dual UNION ALL
    SELECT To_Date('5/31/2009','mm/dd/yyyy') dt, 'TEST7' lname FROM dual UNION all
    SELECT To_Date('6/01/2009','mm/dd/yyyy') dt, 'TEST' lname FROM dual 
    
    )
    select distinct last_day(dt) dt,lname
      from data1
     where dt between &start_date and &end_date
       and last_day(dt) <= &end_date
    
    also, i have another request. how would i do this without using the data i provided. lets say,
     i tell you, give me alll the months end between two dates using dual in the from clause of a query.
    how would you do this in a query or pl/sql? thanks again
    

    Can be like that

    with data1 as(
    select &start_date+level-1 dt from dual
    connect by level <= &end_date-&start_date+1)
    select distinct last_day(dt)
      from data1
     where dt between &start_date and &end_date
       and last_day(dt) <= &end_date
     order by last_day(dt)
    

    See you soon!
    Bobin

    Published by: Buga added query for updated the need

  • Type of data resulting from the difference between two timestamps

    Hi, I have a simple question.
    I have two TIMESTAMP A and B variables. Now I want to subtract one B - A. What type of data as a result of this subtraction?
    Would Shouln t TIMESTAMP again?

    Consider this example:
    DECLARE
       vdat_Begin        TIMESTAMP;
       vdat_End          TIMESTAMP;
       vdat_Difference   TIMESTAMP;
    BEGIN
       vdat_Difference := vdat_End - vdat_Begin;   -- this doesn't work
       vdat_Difference := TO_TIMESTAMP(vdat_End - vdat_Begin);   -- this works
    END;
    /
    
    PLS-00382: expression is of wrong type
    Thanks for help.

    xxsawer wrote:
    Hi, I have a simple question.
    I have two TIMESTAMP A and B variables. Now I want to subtract one B - A. What type of data as a result of this subtraction?
    Would Shouln t TIMESTAMP again?

    Consider this example:

    DECLARE
    vdat_Begin        TIMESTAMP;
    vdat_End          TIMESTAMP;
    vdat_Difference   TIMESTAMP;
    BEGIN
    vdat_Difference := vdat_End - vdat_Begin;   -- this doesn't work
    vdat_Difference := TO_TIMESTAMP(vdat_End - vdat_Begin);   -- this works
    END;
    /
    
    PLS-00382: expression is of wrong type
    

    Thanks for help.

    No, as stated, there will be an interval.

  • SQL to generate the intervals from date of 6 months each, between two date ranges

    Hi all

    I looked in the forums, if someone uses CREATE_CHUNKS_BY_SQL for dates, but no luck.
    I want to update a table using pieces of dates.
    I need to generate date ranges to divide them by pieces.

    I have a table where I know that max (sales_date) and min (sales_date).
    Lets say max (sales_date): min (sales_date) 01/01/2008: 31/10/2010

    I want to break in intervals of 6 months (180 days) as below:
    chunk_id     start_date     end_date
    --------     ----------     --------
      1          01/01/2008     06/30/2008
      2          01/07/2008     12/31/2008
      3          01/01/2009     06/30/2009
      4          01/07/2009     12/31/2009
      5          01/01/2010     06/30/2010
      6          01/07/2010     10/31/2010
    He didn't exactly finish end of the month. Basically, I need these beaches of dates at apart 180 days.

    I appreciate if someone can throw some ideas on this.

    Thank you
    Raj.

    Hi, Raj,

    Sorry, it is unclear what you are asking.

    To generate a list of dates starting with min_sales_date and including all the 180 days after that up to (but not beyond) max_sales_date:

    WITH     got_params     AS
    (
         SELECT     DATE '2008-01-01'     AS min_sales_date
         ,     DATE '2010-10-31'     AS max_sales_date
         FROM     dual
    )
    SELECT     min_sales_date + (180 * (LEVEL - 1))     AS grp_start_date
    FROM     got_params
    CONNECT BY     LEVEL <= CEIL ( ( (max_sales_date - min_sales_date)
                                    + 1
                           )
                         / 180
                         )
    ;
    

    Output:

    GRP_START_D
    -----------
    01-Jan-2008
    29-Jun-2008
    26-Dec-2008
    24-Jun-2009
    21-Dec-2009
    19-Jun-2010
    

    December 16, 2010 is 180 days after June 19, 2010, but it is not displayed, because is after max_sales_date, which is 31 October 2010.

    I hope this helps you.
    Whenever you have any questions, post a small example of data (CREATE TABLE and INSERT statements) and the results desired from these data.

  • 17 GB of invisible data seems to have moved between disks from one day to the next, with 10 additional GB removed F:.

    Yesterday, I took measures to try to free as much space as possible, hoping to upgrade to Windows 10. When all was said and done (delete the old restore points, deleting old graphics driver installation files, etc.) my C: fell from 13.5 GB of free space to 27 GB, with orders F: to about 624 GB of free space. When I closed my computer for the night, I shut it down normally (ie. He would not download/install updates).

    When I started again this morning, it starts normally (no not wrap updates began the last stop down), but when finished loading office there is a message in the Windows taskbar to say * fact * install the updates. Out of curiosity, I check my free space on both my drives and my C: went up to 10 GB of free space, with my F: in GB 645. The kicker? When I clear space yesterday, I took a glance at each weight (including hidden files) folder. Today when I did the same thing, nothing seemed out of the ordinary. In other words, each folder in C: root seem to occupy the same weight. I didn't even move anything from my C: to my F: when you try to free up space, I just deleted everything I wanted more.

    Just to be sure, I went back and cleared again restore points, but he did exactly the same thing that happened yesterday: nothing. There was no progress bar and no space was saved. I also checked on Puran Defrag, but my C: earn barely any fragmentation, indeed, I've defragmented it yesterday. I've also already disabled the hibernation and removed the hibernation file earlier, which helped a little. On the other hand, this means that I have absolutely no idea whence this 17 Go invisible and how to get rid of.

    Any help would be appreciated.

    Edited to simplify the title.

    You are welcome.

    See this tutorial

    Swap file

  • BlackBerry smartphones, that I need help to transfer data from a 9870 "BOLD" for a Blackberry Curve 9300 Blackberry

    Hi, I have used a Bold 9870 for a few months now. I've been saving my camera on my computer periodically. Unfortunately, it has been exposed to water the weekend and unresponsive. I transferred my acct (by Sasktel) to the Blackberry curve of my son he no longer uses. (I'm drying my "BOLD" in a bag of rice and I hope that it will work again in the coming days?!).

    My question is did anyone know how I can get all my information backups "BOLD" (contacts, emails, texts, bbm surveys) and get only their transferred on the curve that I currently use. I feel completely lost without it!

    Thank you for your time.

    Hi shelran,

    Welcome to the BlackBerry support community forums.

    It's very sad to hear of your soaked BB device. I hope it still works!

    Check the article below to learn how to restore the data on the device-

    • KB03953  How to back up and restore data to a new BlackBerry smartphone
    • KB13428  Transfer files from one BlackBerry smartphone to another backup by using the backup and restore tool
    • KB10339  How to use BlackBerry Desktop Manager to restore the data to a BlackBerry smartphone from a backup file
  • An other 'Wifi without data plan"blackBerry smartphones Question - Rogers Canada

    Hey guys, I'm new to this forum and blackberries in general... Please bear with me.

    I am a student. Currently, I have a voice plan base on a LG Xenon with Rogers in the Canada. It includes minutes and unlimited texting. Enough for me.

    I am looking to buy a Blackberry Curve 3 G/9300 off someone. I just want to throw my SIM in there so I can use my normal plan with the phone. My understanding is that I can phone Rogers and tell them to block all data, if I get no charge on my Bill. Fine. However, I also understand that the 9300 is a wi - fi phone.

    Let's say that I get the 9300, contact Rogers and tell them to block all data on my plan.
    Can I still use my browser in a Wi - Fi hotspot? How should I do? (I know that I read somewhere that you need to configure to be about to access and not talkspot... If someone could help me with this that would be great).

    Also, I read that, so that I am still able to use a wi - fi connection, I need to have data 'on' in the phone. If the data is 'on' in the phone, but I've blocked data with Rogers, can I still use a wi - fi connection? This would prevent the costs of data on my Bill?

    In addition, I understand that I will not be able to receive multimedia messages without a data plan. Once again, if I'm in a wi - fi hotspot... Can I receive these messages from photos?

    I'm sure it's a question very well known and well hated to you all and I'm really sorry to ask, but I just need some clarification. I don't want to be stuck with a big Bill with I ever intend on paying data charges. If someone could help me with this, I would really appreciate it.

    Thank you very much!

    Stefanie

    stefspeaks wrote:

    Hey guys, I'm new to this forum and blackberries in general... Please bear with me.

    I am a student. Currently, I have a voice plan base on a LG Xenon with Rogers in the Canada. It includes minutes and unlimited texting. Enough for me.

    I am looking to buy a Blackberry Curve 3 G/9300 off someone. I just want to throw my SIM in there so I can use my normal plan with the phone. My understanding is that I can phone Rogers and tell them to block all data, if I get no charge on my Bill. Fine. However, I also understand that the 9300 is a wi - fi phone.

    Let's say that I get the 9300, contact Rogers and tell them to block all data on my plan.
    Can I still use my browser in a Wi - Fi hotspot? How should I do? (I know that I read somewhere that you have to configure it to be on the verge of access and not talkspot... If someone could help me with this that would be great.) Simply choose hot browser OEPM.

    KB16463 - how to change the default browser on a BlackBerry smartphone

     

    Also, I read that, so that I am still able to use a wi - fi connection, I need to have data 'on' in the phone. If the data is 'on' in the phone, but I've blocked data with Rogers, can I still use a wi - fi connection? This would prevent the costs of data on my Bill? Rogers could see your phone and charge you for a plan anyway. AT & T to do this, if you add in a smart phone with out telling them.

    In addition, I understand that I will not be able to receive multimedia messages without a data plan. Once again, if I'm in a wi - fi hotspot... Can I receive these messages from photos? No only simple navigation cannot be made and Pandora can be used in mode Wi - Fi.

    I'm sure it's a question very well known and well hated to you all and I'm really sorry to ask, but I just need some clarification. I don't want to be stuck with a big Bill with I ever intend on paying data charges. If someone could help me with this, I would really appreciate it.

    Thank you very much!

    Stefanie

  • BlackBerry Smartphones update Blackberry Curve 8310 and lost all data

    Help, please!

    I received a text message that I needed to update my Blackberry Curve 8310 4.3 (I think).  I went to my computer and connected to blackberry.com and did the update.  The message then said that I had to update my Desktop Manager.  I've done both.  But she erased ALL my contacts and data.  No emails and worse still no address. My screen is completely different.  My Office Manager was not my old data.

    It was a bad day, has laid off and now all my contacts are gone.

    If someone knows a way to retrieve my contacts, I would be very grateful.

    Hallelujah!

    It worked!  It's a good day, found the RPI buried on the disk and retrieved.  I must somehow be saved from a month ago.

    Thank you!!!

  • BlackBerry Smartphones Compatability between blackberry and Microsoft Mail

    I bought a computer with windows Vista 64 bit. The seller has convinced me that I don't have outlook, as it had Microsoft mail. I tried to sync contacts and calendar, but have problems. Contacts seem to be picking up information from the fields, so I lose a lot on the blackberry or the spread between home info and info office. I have not been able to tt sync until the calendar to the alll. I am using Desktop manager V5.0, the version of the platform is 3.4and application versiin is 4.5.0.131. Is this an inherent compatibility or it should work?

    The phone is the Blackberry Curve 8330.

    Hi and welcome to the Forums!

    This is the KB that deals with PIM DTM software compatibility:

    KB12268 Applications supported by BlackBerry Desktop Manager to synchronize

    I can't see Microsoft Mail there anywhere.

  • Restoring data problems blackBerry smartphones

    I have problems with the restoration of data on my Blackberry Curve 8330. I am running BB DM 5.0.0.11 and on my v4.5.0.160 of the device.

    I have a backup file recorded since the time that I am trying to restore my contact list and my list of messages of. I'll list my procedure below to get the error message:

    Open the Desktop Manager, type password device, click Backup and restore, click Advanced, click on the file-> open, select the file and open it and I get a message that says "Error - data was not recognized by the office."

    Recently I reinstalled windows to fix my slow computer, I reinstalled DM on Blackberry.com website. And it won't let me open the file.

    Does anyone have advice on this? Thank you!

    You're right, that's exactly the same problem. I'm surprised I missed this thread, I've combed over here for an hour! To keep an eye, thank you!

  • Update blackBerry Curve 9360 OS 7.1 smartphone problems

    Could not find discussions with this problem, so here goes...

    I'm moving my T - Mobile Curve 9360 to OS 7.1, so I try updates, either the wireless or connected to the desktop computer by using the site Web of BB and Desktop v7 software.  Each time, he tells me that my phone is up-to-date, even if I'm running OS 7.0.0.319.  The only other version indicated available is only one I have already.

    You can provide any help would be greatly appreciated!

    Hello!

    Please see the download portal official to know what OS packages each carrier has released and therefore supports:

    In addition, at the top of each forum device, there should be some 'sticky' threads dealing with the level of the OS available for each model. You can use as a reference as you go along.

    From a PC, you can install any compatible OS package (for example, for your BB model exact number) of a BB via this procedure:

    Note Although written to "recharge" and the storm, it can be used to upgrade, downgrade or recharge any BB device model - depends on the operating system package you download and install on your PC. You can even use a different OS package carriers simply insert, between steps 1 and 2, the deletion, on your PC, a file named PROVIDER. XML. remember that you remove from your PC, no matter what other packages devices OS BB as having more than one installed on the PC can cause conflicts with this procedure.

    If you are on a MAC, you are limited to only your sanctioned carriers OS packages... but can still use any level they currently have to sanction. See this procedure:

    • KB19915 How to perform a clean reload of the smartphone BlackBerry using BlackBerry Desktop Software application software

    Good luck and let us know!

  • Smartphones blackBerry how to solve this problem "Eception exception: dssma: state (5) invalid: 25 in blackberry curve 8520?"

    HELLO, I have the blackberry curve 8520. I got error on my phone. the error is ' Eception exception: DSSMA: state (5) not valid: 25. I am unable to open my Inbox messages and unable to view the phone's call history. the phone displays the same message over and over again "Eception exceptionMASA: state (5) invalid: 25'." Please help me how to solve? I am unable to read text messages on my phone. Please help me.

    Hello and welcome to the community!

    There is virtually no diagnosis of those - they are the equivalent of random errors in Windows for which trace the root cause is futile. Basically, here's the last out in the programming code - some event occurred for which there is no event handler in the code. The patch is an update of the code that handles the event... but, again, what is the event is almost impossible. So, there are a few things to try:

    Sometimes, the code simply is damaged and needs to be updated - just like a reboot:

    • Each time a random strange behavior or slow creeps, the first thing to do is a battery pop reboot. With power ON, remove the hood back and remove the battery. Wait a minute, then replace the battery and cover. Power on and wait patiently through the long reboot - about 5 minutes. See if things return to functioning. Like all computing devices, BB suffers from memory leaks and others... with a hard reboot is the best remedy.

    If it doesn't boot properly, then you need to try Safe Mode:

    • KB17877 How to start a BlackBerry smartphone in safe mode

    There may be a code updated to the value of the carrier - check out them through this Portal:

    The toughest possible causes are a bad application behave. To find it, there are two options. Is to see if you can read the log file:

    Go to the home screen. Hold down the "alt" key and type "lglg". (You won't see anything as you type). This will bring up the log file. Scroll down (probably a lot of pages) until you see a line that says "eception execption. Click on this line. The application name will be in the info. Alternative methods to implement the newspapers are in this KB:

    • KB05349 How to activate, view, and extract the the event logs on a BlackBerry smartphone

    The other method is to remove the apps one at a time, wait a while between the two (I usually recommend a week), until the problem stops... revealing the offending application. Yet another method is to recharge the BB OS itself, leaving little time between the addition of other applications on the BB in order to be able to determine exactly what is the cause.

    Good luck and let us know!

  • Blackberry Curve 8320 unlocked blackBerry smartphones

    Hello

    I have not actually bought my Blackberry yet, but I'm looking into it right now. I want to buy a unlocked Blackberry Curve 8320 which was previously on AT & T or T-mobile (I'm a couple more different). Anyway, I wanted to buy a Blackberry and place it on a data plan with Rogers Canada. I'm doing this because I want to be able to use BBM, so I think I need a data plan.

    I buy the Blackberry separately because I want to be able to use overseas when I use another GSM SIM card for example. I know doing it on contract is cheaper, but I don't want to do that because I will be locked on a 3 year contract and I won't be at the Canada for 3 years.

    I just want to know if the Rogers data network will work with a Blackberry unlocked as I described above. I asked Rogers customer service and they said that they cannot confirm that the Rogers data network will be to 'connect' with the unlocked Blackberry because it once belonged to another provider and I should buy a Blackberry from Rogers. I don't know if they just said that if I would buy the Blackberry from Rogers rather than elsewhere. I know the unlocked Blackberry should work fine with a regular for calls and SMS GSM SIM card and all that but I want to know specifically about BBM - ing.

    Sorry, my question is so long. Thanks a lot for your help!

    While Canadian companies may be different from their American counterarts I do not that the differences are only significant to materially affect my response.

    When you buy a 'new' locked onto a support device will be offered the device at a price at a price significantly lower than the retail price recommended for her.  That's what prescribed contractual lock in as they recover for the duration of the contract, the difference between what you pay and the cost.  They're subsidizing the price in order to collect a healthy monthly fees for access.

    All U.S. carriers require a data plan for smartphones in addition to any general "plans" for just minutes and text packages etc.  I guess that Canadian businesses require the same.

    In order to use BBM you need a dataplan carriers which is what allows your device use the features of the BIS (Blackberry Internet service) requiring Blackberry data push, e-mail, all what is "data".

    This is a new in the box device purchased by your friends at Rogers.  They sold you a Blackberry and they dance as they listen to the registry will chaching.  This is music to their ears.  This is an item being sold and it is "locked" to Rogers.  Of course, for each month of your servitude under contract happen to dance again once the Registry continues to provide them with more chaching.

    You bought a camera from them, you can use it at this stage only with them.  They will be as you might or might not be aware subject to various and assorted penalties if you tire of their service or their absence and take your business elsewhere, or try.  Costs of early termination can easily exceed your initial cost plus for a premium, in a credit institution, violating laws governing wear.

    It's what keeps dissatisfied customers even with the carriers that are less satisfactory.  It is just too expensive to leave while allowing some, but not all carriers for you 'sell' the balance of your contract to another.  If Rogers of permits that are unknown to me.

    If you buy an "unlocked" device it is expected of the band is compatible with Rogers (GSM/CDMA as the case may be) perfectly capable to be activated on their network.

    Their after-sales service is to use a euphemism, blowing smoke.  They know perfectly well that a device unlocked regardless of its origin.  They won't make you a device for which they do not receive rewarding chaching first and make run on their network.  Since you did not pay a subsidized price for the device that you are not obliged to a three-year plan or some length Rogers requires for locked for new devices.

    While they play stupid indeed hoping you will buy them and locked himself in a service contract.  It's guaranteed money for thirty-six months.  It's a lot of money.

    Assuming you get to admit only a 8320 unlocked (GSM) will play well with their network that you can buy a phone, monthly data on the plan without being locked in a period of time.

    You will absolutely need the dataplan however, at least the minimum plan they offer will prevent access to the services that make it a Blackberry.

    Of major importance for you in as long as purchaser of a used instrument is the only one not is indeed "unlocked" but the PIN was released by the former owner and the access to its carrier, T-Mobile or AT & T.  Every Blackberry is assigned a unique PIN that lives with her forever.  For example, if I want to sell my unlocked Blackberry Storm I will have to make arrangements for the release of the Verizon PIN so that a subsequent purchaser can activate the storm on Verizon (my service provider) or such that it is unlocked any service provider, as it really is a universal device capable of activation on a CDMA/GSM/UMTS network or Global.

    I would like to buy a used if and only if it is verifiable that the PIN was released by the previous owner/carrier.  With the instrument in hand, it can be checked on the device or not it is unlocked.  The output of the SPINDLE must be verified by the previous carrier and I'm too cynical, but I wouldn't take the word of the seller unless it was a very trustworthy family member and even then, I would like to politely ask for verification.

    Rogers wants money on your part.  They want the money upfront to sell you a Blackberry and they want the contract guaranteed money for the long term for the months down the line.  For Rogers, it's win/win.

    You can, even if it's an expensive to buy a new device of Rogers at the MSRP and not you will not lock in a three-year contract.  The majority of carriers who does not advertise that the difference is more than lost long-term do not lock you in their.

    I hope this helps.  If I appear cynical, it's because I am.  Carriers are there to increase their profits and integrity is lost in the maze.

  • Smartphones blackBerry curve 9300 internet browser does not properly

    IV had my phone for a little over a month and since iv had the phone internet browser did not work properly. I have a blackberry curve 9300. If I take my phone it will work perfectly fine but then after less than and hour, it won't let me open a tab, it will say loading but then close. Can someone help me, so fast!

    Hello jhurford,

    Welcome to the forums.

    Looks like you may have a problem with the database of service book. Try to clear your service book database, and then return Service directories and test again.

    How to clear data from the BlackBerry Smartphone user
    http://BTSC.webapps.BlackBerry.com/BTSC/search.do?cmd=displayKC&docType=kc&externalId=KB10167

    How to send service directories using the configuration of messaging on the BlackBerry smartphone application
    http://BTSC.webapps.BlackBerry.com/BTSC/search.do?cmd=displayKC&docType=kc&externalId=KB15402

    I hope this helps. Nice day.

  • New blackBerry for Blackberry Curve smartphones

    Hello! I just got a Blackberry Curve yesterday and now I have a few questions. How you can delete text messages all at the same time without having to remove them one at a time? In addition, if you want to send a text message to several people, how do you do that? Thanks for any help!

    You can do two ways.

    1. First is a prerequisite to delete - select the date, the menu and choose Delete before. This will remove all messages before and including the selected date.
    2. Or if you just want to delete a block of messages, just hold down the SHIFT key (lower left/right keys), and select messages, view the menu and choose Delete Messages

    To send to more than one person, after choosing the first person, the menu and choose Add a recipient

Maybe you are looking for