Whats wrong with skype? the dev's from Microsoft dont know make a aplication?

Whats wrong with this Microsoft? just make bad OS, bad OS for smartphones, and now dont know make aplications? this skype seems like alpha version, very bad.. I feel so shame for this company.. would be good, they have money but always make mistakes..

your 101 error timers are problematic.
you only code for one of the error timers and, while there is an index (count), you don't use it for anything meaningful.
bottomline: i can't feature any reason for there to be more than 1 error timer except to introduce additional complexity and memory use.

Similar Messages

  • Whats wrong with skype?????????

    Im online on skype. Suddenly it logs out. Then i cant log in again. That happened in three accounts. Im really angry with this situation. Anyone qcan help? Whats wrong with ur service? Jesus! Please help its unacceptable

    yes they just **bleep** stoped working with skype 5. and 3.8 versions.  they just closed those servers >  what **bleep** why did u disabled 3.8 version.  how about skypeME option ?  how about old computers that doesnt able to install 6.x versions ?
    im actualy thinking to change this piece of **bleep** software and find somting else.
    Use of profanity in posts does not conform conform with the Community Guidelines or Skype's Etiquette Policy.

  • What wrong with the buttery ?

    hallow
    my question about the buttery i don't know what wrong with it . the buttery get finish after one and half hour using .
    please help me
    my Email
    [email protected]
    my mobile
    +966554302679

    Hi kamranh,
    I'd try starting Firefox in [[Safe Mode]]. If you don't have the issue while all of your add-ons, extensions, and themes are disabled, you can try adding them back in one by one until you find the culprit. You should look at the [https://support.mozilla.org/en-US/kb/Troubleshooting-extensions-themes Extensions and Themes troubleshooting guide ] and the [[Troubleshooting plugins]] article as well.
    From the looks of it though, your issue may be because you've been hit with some [https://support.mozilla.org/en-US/kb/Is%20my%20Firefox%20problem%20a%20result%20of%20malware?s=malware&r=0&e=sph&as=s#w_how-do-i-get-rid-of-malware Malware].
    If isn't malware or a plugin issue, you should take a look at the Knowledge Base article [[Search bar]]. Your default search might have been changed by a particular site. Sites like MSN, Yahoo, etc have been know to ask to become your homepage and change your search engine.
    If the address bar search has been changed as well, you might want to take a look at [[Location bar search]].
    If that doesn't work you should look at the article [[Preferences are not saved]].
    Hopefully this helps!

  • My Macbook air keeps getting a message saying that the startup disk is full. I don't have picture, music, or movies on it. Im not sure whats wrong with it.

    My Macbook air keeps getting a message saying that the startup disk is full. I don't have picture, music, or movies on it. Im not sure whats wrong with it.

    The first step is to check and see how much space really is there.  From the desktop right click on the drive in the upper right corner (at least it's there by default) and select "Get Info" to see how much space it reports as free.
    It's not just media files that eat up disk space, though they are often a major contributor.  Do you happen to be running one of the virtual machine programs (Parallels or VMWare Fusion)?  When you create a guest drive there you normally have a fairly decent amount of disk space dedicated to it and that can fill the drive.
    As well, a quick fix that may buy you some time is to empty the trash if you've not done so recently.  Click on the trash folder in your dock and then in the window that comes up select the option to empty the trash.
    If you can free up some space, there are programs that will help you find what files and directories are using disk space.  I've used Space Gremlin (in the App store) for that sort of thing, though there others.  If you run that sort of utlity you'll get some idea about what is really eating up the drive space.

  • TS1702 i if use "search" in music on my ipod touch 5th gen the result just show only album and playlist but nothing song result.whats wrong with it?please help

    i if use "search" in music on my ipod touch 5th gen the result just show only album and playlist but nothing song result.whats wrong with it?please help

    The users guide says:
    Spotlight searches the following:
    Contacts—All content
    Apps—Titles
    Music—Names of songs, artists, and albums, and the titles of podcasts and videos
    Podcasts—Titles
    Videos—Titles
    Audiobooks—Titles
    Notes—Text of notes
    Calendar (Events)—Event titles, invitees, locations, and notes
    Mail—To, From, and Subject fields of all accounts (the text of messages isn’t searched)
    Reminders—Titles
    Messages—Names and text of messages
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsynce all music and resync
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iOS device.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Whats wrong with the servers i cant download update 5.1 firmware

    whats wrong with the servers i cant download update 5.1 firmware ive been trying for 2 days it says i dont have permission to access the requested source

    What says you don't have permission to access the requested source? That is not an error that should come up at all either from iTunes or when attempting an over the air upgrade. At least not an error that has anything to do with the servers.
    It could be a permissions problem on your computer or an issue being caused by your firewall or antivirus software.

  • Whats wrong with the sql query-- giving no rows selected

    i have a table audit_data with 4 columns , eff_m & end_m are declared as timestamp and the time stamp data is different for all the records
    Please advice as soon as possible as this is a production problem
    ORG_GRP_I grn_n ED_EFF_m (timestamp) ED_END_M OFV
    1 999 01-Jan-06 1 03-Aug-06 0 0
    1 999 28-Jul-06 0 04-Aug-06 1 0
    1 999 04-Aug-06 1 04-Aug-06 1 0
    1 999 04-Aug-06 0 6.08
    This query is giving no rows returned,even though there is data in database
    SELECT NVL(OFV,0)
    FROM audit_data ag
    WHERE ag.ORG_GRP_I = 1
    AND ag.GRN_N = 999
    AND (ag.ED_EFF_M,NVL(ag.ED_END_M,SYSDATE)) IN (SELECT MAX(ED_EFF_M),MAX(NVL(ED_END_M,SYSDATE))
    FROM audit_data ag2
    WHERE ag2.ORG_GRP_I= ag.org_grp_i
    AND ag2.grn_n=ag.grn_n
    AND To_Date(To_Char(ag2.ED_EFF_M,'MM/DD/YYYY'),'MM/DD/YYYY') <= TO_DATE(TO_CHAR('08/04/06','MM/DD/YYYY'),'MM/DD/YYYY')
    AND To_Date(To_Char(NVL(ag2.ED_END_M,SYSDATE),'MM/DD/YYYY'),'MM/DD/YYYY') >= TO_DATE(TO_CHAR('08/04/06','MM/DD/YYYY'),'MM/DD/YYYY'));
    This query is giving value 6.08, when made type conversions.
    what wrong with the above query.please advice
    SELECT NVL(OFV,0)
    FROM audit_data ag
    WHERE ag.ORG_GRP_I = 1
    AND ag.GRN_n = 999
    AND (to_date(to_char(ag.ED_EFF_M,'mm/dd/yyyy'),'mm/dd/yyyy'),NVL(to_date(to_char(ag.ED_END_M,'mm/dd/yyyy'),'mm/dd/yyyy'),SYSDATE)) IN
    (SELECT MAX(to_date(to_char(ED_EFF_M,'mm/dd/yyyy'),'mm/dd/yyyy')),MAX(NVL(ED_END_M,SYSDATE))
    FROM audit_data ag2
    WHERE ag2.ORG_GRP_I= ag.org_grp_i
    AND ag2.grn_n=ag.grn_n
    AND To_Date(To_Char(ag2.ED_EFF_M,'MM/DD/YYYY'),'MM/DD/YYYY') <= TO_date('08/04/2006','MM/DD/YYYY')
    AND To_Date(To_Char(NVL(ag2.ED_END_M,SYSDATE),'MM/DD/YYYY'),'MM/DD/YYYY') >= TO_DATE('08/04/2006','MM/DD/YYYY'));

    In the second query you convert a string to a date correctly using TO_DATE(string,date format)
    In the first query you try to make a char of something that already is a char, e.g. TO_CHAR('08/04/06','MM/DD/YYYY').
    The TO_CHAR functions expects either a number or a date as its first parameter. That's why it's giving you a ORA-01722.

  • My gen 4 ipod shuffle is not showing the green light when I switch it on (Green area shown). But when I plug it into the computer there initial orange blink and then solid orange. What wrong with it and how can I fix it.

    My gen 4 ipod shuffle is not showing the green light when I switch it on (Green area shown). But when I plug it into the computer there initial orange blink and then solid orange. What wrong with it and how can I fix it. 

    Hello Korawees,
    I was researching the issue you are describing and had a recommendation. The device is very simple, so the software troubleshooting for it is pretty limitted so I think you shoud restore the iPod shuffle and re sync the content. That way, if it is a software issue, this will fix it. Here is the article named Restoring iPod shuffle to factory settings found here: http://support.apple.com/kb/HT1481.
    Before Starting
    It is important to understand the difference between "update" and "restore." Update does not affect your settings or songs, it simply installs updated software that controls iPod shuffle. Restore erases the disk and restores iPod shuffle to its original factory condition with updated software. If you only need to update iPod shuffle, this should be done on the computer where music is normally synced. Updating on another computer will result in all songs being removed from iPod shuffle.
    Warning: Because Restore erases all songs and files on iPod shuffle, make sure to back up any files you've saved on iPod shuffle. Your songs, podcasts, and audiobooks can be synced back to your iPod shuffle if the items are part of your iTunes library.
    How to restore iPod shuffle
    Ensure that you have an active Internet connection as new versions of iTunes and iPod Software may need to be downloaded to your computer.
    Download and install the latest version of iTunes if you do not already have it installed.
    Open iTunes, and then connect iPod shuffle to your computer.
    After a few moments, iPod shuffle will appear in the Devices section on the left side of the Tunes window.
    Select iPod shuffle under Devices and you will see information about it appear in the main iTunes window under the Summary tab/button for iPod shuffle (3rd and 4th generation) or the Settings tab/button for iPod shuffle (1st or 2nd generation).
    The Version section tells you whether iPod shuffle is up to date or needs a newer version of the software.
    Click the Restore button. You will be presented with one or more restore options that may prompt iTunes to automatically download the latest iPod Software. The 4-possible restore options are:
    Restore Option 1: Restore - Restores with same iPod Software version already on iPod.
    Restore Option 2: Use Same Version - Restores with same iPod Software version already on iPod even though a newer version is available.
    Restore Option 3: Use Newest Version - Restores with the latest iPod Software currently on your computer.
    Restore Option 4: Restore and Update - Restores after downloading the latest iPod Software on your computer.
    If you are using a Mac, a message will appear prompting you to enter an administrator’s name and password.
    A progress indicator will appear on the computer screen indicating that the restore process has started. Do not disconnect iPod shuffle during the restore process.
    After the restore process is complete, the iPod shuffle's status light will flash orange continuously. The iPod Setup Assistant window will appear asking you to name your iPod and choose your syncing preferences as you did when you connected your iPod shuffle for the first time.
    When you come to step 7, I recommend Restore Option 4.
    Take care,
    Sterling

  • When I try powering up my phone it stays on the logo screen for a few seconds then turn off, whats wrong with it?

    When I try to power up my iphone 4 32g, it will stay on the apple screen for a few seconds then turn off. even when I try connecting it to my computer it turns on for a few seconds then turns off. Whats wrong with it? and what do I do about it?

    Have you tried charging it with another known working USB sync cable?  After letting it sit to "charge" for at least 30 minutes, have you tried resetting the device by pressing and holding both the Select/Center and Menu buttons together long enough for the Apple logo to appear.
    B-rock

  • My phone has been asked to be plugged into itunes for the past hour or so, and it has been plugged in the whole time... i have tried holding in both buttons too turn it on and nothing is happening... whats wrong with it and how do i fix this :(?

    My phone has been asked to be plugged into itunes for the past hour or so, and it has been plugged in the whole time... i have tried holding in both buttons too turn it on and nothing is happening... whats wrong with it and how do i fix this :(?

    Does iTunes see your phone?
    Do you have a PC or a Mac?
    ~Lyssa

  • When i open itunes, it gives me a message "the folder itunes is on a locked disk or you do not have write permissions for this folder" i am the only user and it was working a week ago whats wrong with it? it will not open itunes

    when i open itunes, it gives me a message "the folder itunes is on a locked disk or you do not have write permissions for this folder" i am the only user and it was working a week ago whats wrong with it? it will not open itunes

    Hi lvdmerwe!
    I have two articles here for you that should be able to help you troubleshoot this issue further:
    Trouble adding music to iTunes library or importing audio CD
    http://support.apple.com/kb/ts1387
    iTunes: Missing folder or incorrect permissions may prevent authorization
    http://support.apple.com/kb/ts1277
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • HT201210 I have the Iphone 3gs and it said update required and i needed to connect to itunes so i did al that and now everytime i go to restore everything it just says error and then i have to do it again?whats wrong with it?

    I have the Iphone 3gs and it said update required and i needed to connect to itunes so i did al that and now everytime i go to restore everything it just says error and then i have to do it again?whats wrong with it?

    Are you getting an error message number with your error message? If so, what number are you getting?

  • I just got a ipod nano 6th gen, and ive been using it for 2 days, and it seems that the battery just lasts about half a day, on playing 1 to 3 songs in intervals of 1-2 hours. Whats wrong with my ipod?

    I just got a ipod nano 6th gen, and ive been using it for 2 days, and it seems that the battery just lasts about half a day, on playing 1 to 3 songs in intervals of 1-2 hours. Whats wrong with my ipod?

    Your nano would really have nothing to do with it at that point. It is really something between iTunes and whatever server out there on the internet that it is trying to connect to for the update.
    Try posting this one in the iTunes forum, they might have a solution for you.
    i

  • What is wrong with apple, the ios7 is so messed up, half our texts aren't going through!!!

    what is wrong with apple, the ios7 is so messed up, half our texts aren't going through!!!
    Also our ipad charger broke after only 9 months of use!
    And our young son charged stuff on his ipad on our bank card accidentally instead of his itunes card,
    and we called a month ago, and the charge was never refunded!
    Can anyone tell us what's going on and who can help us!
    I never thought we would ever been disappointed with Apple or the products and now within a month we are ready to give up on Apple altogether it's so frustrating and disappointing!
    Message was edited by: patti12345

    For the texts:
    1. Settings > Messages > iMessage = Off
    2. Settings > General > Reset > Reset Network Settings
    3. When the iPhone resets, Settings > Messages > iMessage = On
    For the charger it is covered by warranty, use it. Is it the charger or the cable?
    On the stuff your son charged call AppleCare and ask to be transferred to Customer Service. But do keep in mind when you talk to them they are not responsible for accidents in purchasing that your son made.

  • I have been trying to open itunes that has already been installed. But, the thing is it never opens and when i do right click and trouble shoot also, it doesnt open. I dont whats wrong with itunes and my comp is 64 bit windows 7. Can somebody please help

    I have been trying to open itunes that has already been installed. But, the thing is it never opens and when i do right click and trouble shoot also, it doesnt open. I dont whats wrong with itunes and my comp is 64 bit windows 7. Can somebody please help

    no its 64 bit version of itunes. Can you please help me. I am not able to sync my iphone.

Maybe you are looking for

  • Could not execute the css file

    Hi, I have this code: named: email11.java import javax.servlet.*; import javax.servlet.http.*; import java.sql.*; import java.util.*; import business.User; import data.UserDB; import util.MurachPool; public class EmailServlet extends HttpServlet{ pri

  • LG 55" Smart TV defect

    I would never buy another LG product due to the issues I have had with my LG 55" Smart TV. I purchased the TV in April 2013 and on Sept 9th I had to get it service. The TV was cutting off and then cutting back on by itself. Company came out and fixed

  • How to load a long flat file field into BW

    Hi all, I have a field from flat file with 256 characters to be loaded into BW. As we all know the max length an info object can take is only 60. How can I split the flat file field so that I can load that data into BW and how can I then concatenate

  • Youtube videos do not play in Firefox. I have this error: "You need to upgrade your Adobe Flash Player to watch this video," even after I have followed the link.

    This error message appears when trying to view Youtube videos: "You need to upgrade your Adobe Flash Player to watch this video," even though I have already installed the suggested piece of software. == URL of affected sites == http://www.youtube.com

  • Making first two digits of all cells increment one unit

    hi friends i am not expert in MS Excel & i need an urgent help. i had created a long excel sheet in Excel 2013 which i paste a part of that sheet here: the list is very long. now for some reasons, i have to edit this sheet so that in all cells, the f