SMS problem

I can not send SMS... When I try I, it sends only the first letter of my message. I'm doing something wrong?

Help, please

Thank you

I contacted customer service and my problem was solved easily

(1) completely to close the Skype application. To do this, right click on the Skype icon in
the tray at the bottom of the screen. Select leave.
(2) on your desktop, click on the button 'start '. It's the small round
button in the lower left corner of your screen that has a Windows flag on it.
(3) type Run, in the field "search programs and files", and then click Run.
(4) in the box, type "%AppData%" and click the OK"" button.
(5) a window appears, find "Skype" folder and open it.
(6) look for the file "shared.xml" (this file is named as)
'shared' with an .xml document extension) and delete it.
(7) always on the same folder, find your Skype username folder and open it.
(8) look for the "config.xml" file (this file is named as)
'config' with an .xml document extension).
(9) remove the file "config.xml".

(10) restart Skype.

Tags: Skype

Similar Questions

  • After the OS and IOS updates SMS problems

    I recently updated to IOS 9.3 and OS x 10.11.4. Since these updates, I had difficulties to send SMS.  iMessages forward vigorously. But I often get errors failure-to-send three and four times in a row when trying to send an SMS message longer than one short sentence. NOTE: I'm announcing this issue in section OS X El Capitan, but this applies to generated no SMS messages only on my iMac, but also on my iPhone 6 and iPad Air2, with 9.3 updated IOS updated.

    I have friends with non-Apple devices I have text frequently. Before the latest updates, my SMS messages would pass them quickly. Not now.  I don't know how to make Apple aware of this situation. I sent a direct message to @AppleSupport on Twitter. Not sure how that will be effective.

    Does anyone else have this problem?

    Note to moderators: don't know where this question from the list. Please go to the Board. Thank you.

    Hello

    Make sure the iPhone is on the same network local (he will exploit Wifi)

    Check the settings of text transfer.

    If everything looks OK, but it does not reset the text Forwarding (turn it off for a few moments and then On Again to generate and new Code on the Mac).

    22:00 Monday. March 28, 2016

     iMac 2.5 Ghz i5 2011 (El Capitan)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro (Snow Leopard 10.6.8) 2 GB
     Mac OS X (10.6.8).
     a few iPhones and an iPad

  • SMS problem after software update

    Hello

    I've updated the android on my phone (dual-Z3, D6633) from 5.0.1 to 5.1.1.

    I can't send and receive SMS no SIM card. I get a text: transmission failure. SMS Center phone numbers are correct.

    With 5.0.1 android, although SMS service worked.

    What is the problem?

    If this behavior persists with another SIM card and appeared after a software update, I suggest that you perform a repair using PC Companion software. This will reinstall the latest version of the software and do not forget to backup your data. When the repair is done, you can expect to restore a backup or install applications > Send a text message to see if the same thing happens.

  • General blackBerry Z10 sms problems

    Hello. I can't send sms messages on my Z10. I can receive it but when I want to send sms I can't always do, but it is sometimes possible and only to someone. I have manually set the advanced settings for sms, I registered my device in settings/topic/network... and I have the brand new SIM card from my ISP (Orange Slovakia). This problem started a few weeks after the official update and tried factory reset, go down to spread, upgrade to the latest leak, back to the official version which I use now (10.3.1.1779 OS 10.3.1.2576 radio 10.3.1.2577) before the update official everything was ok, but now I can send mms only and I don't know why. Please help me. I'm the only person who has this problem?

    It is resolved! I found out that it happened thank you sync. My Hotmail account was incorect numbers for example 4219... instead of + 4219... What is a prefix for the Slovakia + 421, so I was using incorrect numbers on my device. But thank you for your advice.

  • Coding SMS problem

    Hi guys,.

    Here is my code. When I send a sms via Simulator 8900 with the Chinese language, msg was wrong. It's unreadable code. (not only?)

    Datagram d = _dc.newDatagram(_dc.getMaximumLength());
    ...
    String msg = new String(d.getData(),"UTF-8");
    
    Dialog.Alert(msg);
    

    1. in fact, my Simulator can input and Chinese appears correctly. I see even Chinese words in the display of sms. I think that maybe there is a problem of encoding converting msg to the Chinese police.

    2 and I found that if I change the format UTF-8-GB2312, will give a UnsupportedEncodingException.

    How can I get the right encoding here?

    Any suggestion?

    Ok. I found UTF-16BE.

  • Contact retrieve and send sms problem

    Note: i have change some funtion

    Hi all

    I started a thread of smsListening incoming when private number send sms I called the contact of recovery funtion.i am not able to send sms.

      private  class ListeningThread extends Thread   {       public void run()      {
    
              try {
    
                   iContact=new ContactUtility();                (iContact).Retieveallcontact(address);            } catch (PIMException e) {                // TODO Auto-generated catch block                e.printStackTrace();          }
    
            }
    

    It is in a way I am recovery contact and send sms method...

    void Retieveallcontact(String address) throws PIMException    {    Enumeration e=contactList.items();       _sender = new SendThread();       _sender.openmessage(address);         _sender.start();              while(e.hasMoreElements())        {             _sender.send(innerStream.toString());                       }                 _sender.stop();    
    
        }     private class SendThread extends Thread    {        private volatile boolean _start = false;        String msg;        private volatile boolean _stop=false;        String Address;        String address = "sms://";                               MessageConnection smsconn = null;        // Requests are queued.        private synchronized void openmessage(String ddress)        {         Address=ddress;
    
                try {             smsconn = (MessageConnection)Connector.open(address);         } catch (IOException e) {             // TODO Auto-generated catch block                e.printStackTrace();          }           _stop = false;        }
    
            // Requests are queued.        private synchronized void send(String message)        {            _start = true;            msg=message;            _stop = false;        }        // Shutdown the thread.        private synchronized void stop()        {             if (smsconn != null) {                 try {                     smsconn.close();                  } catch (IOException ioe) {                       System.out.println("Closing connection caught: ");                    ioe.printStackTrace();                }             }
    
                 _stop = true;        }        public void run()        {
    
                for(;;)            {             if(_stop)             {                 return;               }                if ( _start )                {
    
                          TextMessage txtmessage =                              (TextMessage)smsconn.newMessage(MessageConnection.TEXT_MESSAGE , "//" + Address);
    
                              txtmessage.setPayloadText(msg);                           try {                             smsconn.send(txtmessage);                         } catch (InterruptedIOException e) {                              // TODO Auto-generated catch block                                e.printStackTrace();                          } catch (IOException e) {                             // TODO Auto-generated catch block                                e.printStackTrace();                          }
    
                        _start=false;                }     
    
                }        }    }
    

    Thank you

    Hi bbdeveloper,.

    I had solved the problem with the help of invokelater.thx for your answer anyway.

    THX,

    Ketan

  • BlackBerry Smartphones SMS problems

    Hello, I have a 8330 and I have a problem with my TEXT. It started today released anywhere I sent my friend an SMS message and in almost a second, I received a response on his part I read that and he said this, "message to 813XXXXXXX secceeded." At the beginning I didn't know if it was his service or what. Then I realized he does for everyone got the message. I went to options and checked the option notify was not and it was. I put Yes and then not, saved, just to make sure, and yet he never does this message I am sending. How can I get it?

    try to set to Yes, then save, remove your battery for 20 seconds, change to no, save and test, otherwise, once again pull the battery for 20 seconds

  • 9.2.1 IOS iphone 4S sms problem

    I have an iphone 4 s 64 gb recently upgraded to iOS 9.2.1.

    I noticed that I can't send a normal sms more long 110 tank.

    Please help me.

    Check with your cell provider. While you're waiting with them do forced a reboot on your phone: press and hold the home and sleep buttons, wait for the Apple logo, release the buttons.

  • Q10 blackBerry SMS problem

    After upgrading my oS to 10.3.2.440, I couldn't send or receive text messages. Phone and e-mail work fine. Any suggestions? I can't find anything online.

    Thank you.

    Thank you. Ok...

    With a strong carrier network (for example, not only WiFi), I suggest the following steps, in order, even if they seem redundant to what you have already tried (step 1 should translate a message from your BB... Please wait just before moving on to the next step):

    1) register HRT

    • KB00510 How to register a BlackBerry smartphone with wireless network
    • Please wait a 'recording' message

    2) restart

    • Pre-BB10 ONLY devices. 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.
    • Peripheral BB10. Hold the top button until the counter reaches zero. Wait for the unit to be completely stopped (for example, nothing appears on the screen, no lights, etc.). Hold the top button until the red light. Wait through the entire boot process. IF this fails, you can try the method of battery-pull above, but it is normally NOT recommended unless nothing else works.
    • 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.

    I hope that will move things again for you!

    If this isn't the case, then you should probably perform a reload of the OS:

    Failure help, you should probably try a more energetic reload, or even an update (this method, unlike the prior agreement, is not controlled by your carrier as to what OS version offered you):

    Otherwise, you should contact your mobile provider for formal support.

    Good luck!

  • BlackBerry Smartphones SMS problem

    Hello

    My Blacberry curve 9360 don't text more!

    I can receive texts but when I try to text someone it does not send and it is written in red "invalid mandatory information.

    Please answer

    Thank you

    Sheldon

    Try to put 1 after the +. Please let me know if it works for you.

  • Problem blackBerry Smartphones SMS alert

    Hello

    I have a blackberry torch 9860.It no more alerts not received text messages (SMS), I consulted the menu messaging and activated alerts in received messages (in all profiles) and still it does not give an alert when an SMS arrives and I have to manually access the SMS Inbox to see received messages.

    I'll also take the opportunity to ask, I don't have the blackberry package in my blackberry mobile. So I can't access the internet even if I connect to a Wi - Fi network?

    I thank all those who can help me.

    Try a battery pull to fix the SMS problem. With your phone, remove the battery and then replace it.
    You can always access the internet without BlackBerry data. Do a search for the Opera mini browser for surfing via Wi - Fi.

    See you soon.

  • BlackBerry Smartphones SMS outgoing sometimes fails, and outgoing telephone calls sometimes fail, too.

    I bought my "BOLD" a few days ago. The first, receiver & sending SMS are OK. But soon the SMS transmission becomes a problem: it fails and the message is assigned an icon of the clock ("pending"). I can't return it. Then someone told me to "reboot" the device (update turned off, remove the battery and put it in again). It works, and I can send SMS "on hold". But it happens almost every day, while I have to restart the device almost every day, too.

    Then, yesterday, I tried to call someone. There was no answer. I tried to call my house, also unanswered. I restart the unit, and the problem has been resolved. to perform a call was OK. So far, it was the only time that I had a hard time making a call.

    There is no problem with incoming SMS and incoming calls. I have not yet activated my Blackberry Internet Service.

    Could someone help me if there is a way to fix the SMS problem once and for all? Thanks for your advice. Hudoyo

    Open Blackberry Desktop Manager on the laptop and connect the device, the upgrade is made by himself

  • My husband gets my SMS on his phone.  I do not receive text Messages on my phone, unless it is sent as a group.  How we solve this problem?  Thank you

    My husband gets my SMS on his phone.  I do not receive text Messages on my phone, unless it is sent as a group.  How we solve this problem?  Thank you

    Stop sharing an iCloud account.

  • receive SMS from iPhone no problem

    I am a relatively new user of iPhone, but I noticed the few days I was not do check SMS from different sites, and I had to resort to receive calls.  It's not a big deal but not very practical, I hope someone can point me in the direction of something to help me with my problem.

    SMS and MMS messaging is a function of carrier. Contact your operator.

  • URGENT REQUEST - X 200 problems running SMS ZTI build - hangs after agpcpq.sys

    I work for a major public sector division and we just started having a laptop Lenovo (X 200), through a system of Government.

    We drive on XP SP2 by using SMS and a Zero Touch installation.

    The machine connects very well and all the image will load but on reboot it will straight to a black screen on safe mode, it stops at AGPCPQ.sys but I think that's all that is subsequently which is suspended. Our preliminary investigation suggests that it is ACPI. The machine seems to have problems picking up the correct HAL.

    Are there patches to do this before I get all cancelled orders of Lenovos, because it must be built with SMS or that they are of no use to us.

    Panic at the wire. It turns out that our consultant had created another package acpi laptops and this ok bulds. It's to do with the fact that hal swapping does not always work in BDD2.5.

Maybe you are looking for

  • Portege Z930-101 - Win 8 - WiFi disconnects constantly

    I have windows 8 pro and disconnects constantly wifi networkto get it working again, I have to re - load the driver. Any solution?

  • I have a MacBook 4.1 worm 10.6.8 can it be upgraded to a more recent operating system

    I have a Mac Book 4.1.  I upgraded the OS from the original to the 10.6.8.  I want to update a more recent operating system but do not know which would work.

  • 0 x 00000096 - point work not valid

    Hi all... I get the BSOD above... I have sauvΘs MINIDUMPS: (file MAY.zip) http://CID-38fcdae7e4eae3b8.SkyDrive.live.com/redir.aspx?RESID=38FCDAE7E4EAE3B8! 114 Thank you Rob

  • Cannot find the server

    I just hung a new Linksys WRT160N router and a Linksys WMP300N Adpater card.  Router works fine and adapters see the router. I can connect to the network created by the router wireless. When I try to explore or browsers Fireox both return 'cannot fin

  • Turbo memory slot

    I am justifiable assuming on the T400 turbo memory slot is hidden by the battery?  If this is true, is the map of small supposed to stay inside the white plastic?  Also, what film of plastic with the arrows?  I guess it is used for purposes of insert