Memory micro SD card works on phone, but not on the computer, Please HELP!

Help, please

History
(1) I got a 8 GB Micro SD memory card, it worked fine for two years and then became corrupted, I formatted and it worked fine for about two months before, she has become corrupt again
(2) this time when it became corrupt my phone always accepted, but the computer could not detect, weird, I decided to not format and continue to use on my phone
(3) I decided to buy a new memory card and an adapter and then transfer the stuff over the old to the new, but I was shocked when the NEW memory card and a NEW adapter did not work and continued to say needs formatting, hmmm...
(4) I decided to format it, but it says that it cannot be formatted... WHAT!
(5) I put the new card in my phone, it works and I have format it on my phone instead... IT STILL DOES not work! Help me!!!

I still think you should get a new card reader.  The adapters are not likely to be the problem.  On the other hand, I had a player go bad and yet still be "recognized" by the computer.

It is possible, but probably not - IMO that reinstall the driver (if available; in general, however, these devices use drivers that come built-in to Windows) or a firmware update (if available for your drive in particular) could solve the problem.  What is the brand and model of your card reader?

At the very least, you should see if you can find someone with a SDHC card reader and then see if you can read and format the card using your cards.

Tags: Windows

Similar Questions

  • A VCR tape was copied on a DVD. Play on TV, but not on the computer. Can it be fixed?

    A VCR tape was copied on a DVD.   Plays on TV but not on the computer.   This problem can be corrected?

    A VCR tape was copied on a DVD.   Plays on TV but not on the computer.   This problem can be corrected?

    ==============================================
    Can successfully play you commercial DVDs on this computer?

    IF you go to... Start / computer... and left click of the drive letter
    the DVD player is he will play?

    Media Player freeware at the following address may be worth a try... it will be
    play anything:

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    VLC Media Player (32-bit Version)
    http://www.filehippo.com/download_vlc_32/
    (works on XP, Vista, 7, 8)
    (the name of the file to download is: vlc - 2.0.5 - win32.exe)

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    VLC Media Player (64-bit Version)
    http://www.filehippo.com/download_vlc_64/
    (works on XP, Vista, 7, 8)
    (the name of the file to download is: vlc - 2.0.5 - win64.exe)

  • Loading an image works on Z10, but not on the Q5

    I use FilePicker to load an image from the library by using the following code

    Container {
            ...
    
            ImageView {
                id: imgView
                verticalAlignment: VerticalAlignment.Center
                horizontalAlignment: HorizontalAlignment.Center
                scalingMethod: ScalingMethod.AspectFit
                maxHeight: 250
                minHeight: 100
                bottomMargin: 30.0
    
            }
    
        }
        Container {
            verticalAlignment: VerticalAlignment.Bottom
            horizontalAlignment: HorizontalAlignment.Fill
            bottomPadding: 30.0
            leftPadding: 30
            rightPadding: 30
    
            Button {
                id: btnSelectImg
                topPadding: 25
                horizontalAlignment: HorizontalAlignment.Fill
                text: qsTr("Select Image") + Retranslate.onLocaleOrLanguageChanged
                onClicked: {
                    console.log("FilePicker")
                    picker.open()
                }
    
                attachedObjects: [
                    FilePicker { //image picker
                        id: picker
                        property string selectedFile
                        type: FileType.Picture
                        title: qsTr("Select Image") + Retranslate.onLocaleOrLanguageChanged
                        onFileSelected: {
                            imgView.imageSource = "file://" + selectedFiles[0];
                        }
    
                    }
                ]
            }
        }
    }
    

    Copy the following code to display the image correctly on Z10, but not on Q5 however both running the same version.

    No idea what could be the problem?

    It turns out that the problem is exactly as described by dbigham, ImageView can handle images up to a certain size depedning on the device.

    I added a C++ code to resize the image before feeding it to QML

    QML code:

    ImageView {
                id: imgView
                attachedObjects: [
                    ImageTracker {
                        id: imgViewTracker
    
                        onStateChanged: {
                            if (state == ResourceState.Loaded)
                            {
                                imgView.image = imgViewTracker.image
                                console.log("Shared image loaded correctly!")
                            }
                            else if (state == ResourceState.ErrorMemory)
                            {
                                console.log("Shared image load: Error Memory!")
                            }
                            else if (state == ResourceState.ErrorInvalidFormat || state == ResourceState.ErrorNotFound) {
                                console.log("Shared image load: " + state + "!")
                            }
                        }
                    },
                    FilePicker { //image picker
                        id: picker
                        property string selectedFile
                        type: FileType.Picture
                        title: qsTr("Select Image") + Retranslate.onLocaleOrLanguageChanged
                        onFileSelected: {
                            _app.loadImage(selectedFiles[0],300,200)
                            imgViewTracker.image = _app.image;
                        }
    
                    }
                ]
    
            }
    

    C++ code:

    void ApplicationUI::loadImage(QString strImageFileName, int width, int height)
     {
         QImage image;
    
         image.load(strImageFileName);
    
         image = image.scaled(width, height, Qt::KeepAspectRatioByExpanding);
    
         QImage swappedImage = image.rgbSwapped();
         if(swappedImage.format() != QImage::Format_RGB32) {
             swappedImage = swappedImage.convertToFormat(QImage::Format_RGB32);
         }
         const bb::ImageData imageData = bb::ImageData::fromPixels(swappedImage.bits(), bb::PixelFormat::RGBX, swappedImage.width(), swappedImage.height(), swappedImage.bytesPerLine());
    
         m_image = bb::cascades::Image(imageData);
         emit imageChanged();
     }
    
    QVariant ApplicationUI::image() const
     {
         return QVariant::fromValue(m_image);
     }
    

    C++ header:

    class ApplicationUI : public QObject
    {
    ...
    
    Q_PROPERTY(QVariant image READ image NOTIFY imageChanged)
    
    public:
    ...
    
    Q_INVOKABLE void loadImage(QString strImageFileName, int width, int height);
    
    signals:
    ...
    
    void imageChanged();
    
    private:
    ...
        QVariant image() const;
        bb::cascades::Image m_image;
    
  • ContextMenu working on 8120 but not on the 8900

    I have this application running on the OS 8120 v4.3.0.115 and 8900 OS v4.6.1.231 and get a strange problem with the context menu not appearing is not on the 8900 but for 8120 his job very well.

    This is my code:

        /*Override this to add custom menu items.*/
        protected void makeMenu( Menu menu )
            {
                Field focus = UiApplication.getUiApplication().getActiveScreen().getLeafFieldWithFocus();
                if(focus != null)
                    {
                    ContextMenu contextMenu = focus.getContextMenu();
                    if (contextMenu !=null)
                        {
                            menu.add(contextMenu);
                            menu.addSeparator();
                        }
                    }
                menu.addSeparator();
                menu.add(_closeItem);
            }
    

    Any who have similar problems with the context menu for ObjectChoiceField does not not on the 8900?

    figured it out. I have replace him-> public boolean trackwheelClick (int status, int time)
    and this for a reason any did not work with the 8900. Still strange that he worked on the 8100.

    But somehow rewrote this code and now its work on both devices.

  • Client vSphere 5.0 works on network, but not via the SSH tunnel

    Hoping someone can help you.

    Seems that others have this problem as well.

    Can connect to the network, but not through an SSH tunnel.

    On the network, I am invited to accept/ignore a SSL certificate.  This does not happen when trying to connect remotely (via an SSH tunnel).

    During troubleshooting, I port passed almost all the ports TCP, starting w / ports 80, 443 and 902.

    Through the SSH tunnel, via a browser, I can successfully access https://127.0.0.1 (VMware server), but the client software will not complete the connection, w / error message: «...» "The client could not send a request to the server."

    Any help would be appreciated.

    Thank you.

    Managed to understand this myself, having invested in a way more time I should have.

    This announcement in the hope that it will help others.

    In your SSH client, port forward with the help of one local loop, IP OTHER THAN 127.0.0.1 (such as 127.0.0.2 for example).

    Port 127.0.0.2:443 before--> IP:443 target

    127.0.0.2:902--> target IP:902

    127.0.0.2:903--> target IP:903

  • Rh9 link works in preview but not on the generated version

    Question: I have the theme with link to a MS Excel file. When I make a point of view, the link action behaves correctly, by displaying the file download dialog box. When I generate the layout (WebHelp), the link action does not respond.

    Notes:

    • The file appears in the two c:\appname\! SSL! \WebHelp\,rules_summary_1.xls , and c:\appname\Rules_Summary_1.xls

    (not sure if the case of filenames questions)

    • I created a test subject and got the same behavior

    Any ideas?

    Thank you

    -bruce.

    Hello

    It is probably the result of having Mark of The Web (MOTW) activated at the time of publication and that you view using Microsoft Internet Explorer as your browser.

    If you have decided to copy the files on a web server for your end users to open, the links should work properly.

    If you want to test your local PC to ensure that things work, you can disable MOTW and deal with problems of boxes dialog IE or you can relax in the Internet Explorer security to allow to run active content. Your call.

    What version of IE are you using?

    See you soon... Rick

    Useful and practical links

    Wish to RoboHelp form/Bug report form

    Begin to learn RoboHelp HTML 7, 8 or 9 in the day!

    Adobe Certified RoboHelp HTML Training

    SorcerStone blog

    RoboHelp EBooks

  • RAM INSTALLED BUT NOT START THE COMPUTER

    MR. PRESIDENT IS RESPECTED,

    I HAVE G6-2312AX HP PAVILION NOTEBOOK COMPUTER. WINDOWS 8 IS INSTALLED IN. 4 GB OF RAM ALREADY THERE. NOW, I WANT TO ADD 4 GB MORE. I BOUGHT 4 GB OF RAM DDR3 1600 MHZ AND TRIED TO INSTALL IT. BUT THE COMPUTER DOES NOT. KINDLY TELL WHAT TO DO. JAI HIND

    It seems that if you did not put in a pair of identical bars or has not used the memry guaranteed compatible modules. You cannot use the module that was already there, unless you add is identical in every respect.

    Use only guarantee modules in identical pairs if you want your upgrade memory to work right the first time.

  • How do I download Windows xp home edition I hit, but I lost the cd please help me

    I have the original key from Windows xp home edition, but I lost the cd how do I download full window xp home edition please help me

    If your computer was shipped with pre-installed XP it's called OEM.  If you want to re - install in this case you would need a copy of XP OEM.  A detail would not work with your OEM key.

    You have Googled XP Download House?  I found, 5 places immediately the bat.

  • Disable the lock screen sleeps but not when the computer sleeps.

    Hello
    My goal (and thousands of other users of Windows 8) are to save the batteries without be pestered constantly to enter my password - but at the same time to preserve the security of the computer.
    My goal is the following:
    -Screen could sleep in X minutes (to save power) without the computer
    -Lock the computer when the computer goes to sleep in X + Y minutes.
    I intentionally left the details that are not important. Please do not post a response unless you have been able to do successfully is Windows 8 - i.e. only requires a password when the computer goes to sleep, but not the screen.  It was no problem in Windows 7.  Is - this another Windows 8 'development '?
    X and Y are two positive integers. 8-)
    I expect an answer of reg-edit...
    Thank you

    Hello

    1 have had any changes made on the computer before the show?

    2. have you set any screensaver on your computer?

    If you have set a screen saver, I suggest you to follow these steps and check if it works:

    a. right click on the desktop.

    b. click on Customize.

    c. click on screen saver.

    d. in the new window, uncheck the option on the resume, the logon screen.

    e. click apply and OK.

    Let us know the results.

  • My computer will not transfer videos from my camcorder. It lists the camcorder on the tab devices & Printers but not on the computer for automatic download tab

    I have the camcorder connected by an IEEE / Firewire cable.

    Hello

    1. that you get an error trying to transfer files?

    2. What is the brand and model of your camcorder?

    Follow these steps and check if that helps.

    1 - Power on the camcorder, and double-click the name of the software to open it on the computer.

    2 - Click on the 'file' tab on the software to open a folder containing all digital video recordings stored on the camcorder.

    3 - Click on the video file you want to transfer to the computer, then click on "Import", "Transfer", "Copy to PC" or similar expressions, depending on the camcorder model. A copy of the video file are saved on the hard disk of the PC.

    If you have a SD card, then proceed as follows.

    1. fix the card reader with a USB cable to a free USB port on your computer. Skip this step if your computer has an internal card reader.

    2. right click on 'My Computer' and choose 'Explore' in the menu. Find the drive letter that corresponds to your card reader and right-click on it. Choose 'Explorer' from the menu to display the list of the pictures on the card.

    3. highlight each of the photographs that you want to transfer. When you are done highlighting the files, right click and choose 'Copy' from the menu. Find the folder on your hard drive where you want to save photographs. Right click and choose "Paste" from the menu to transfer the files on the hard drive.

    Let us know if you need assistance with this problem of Windows. We will be happy to help you.

  • Why does sound come out of the helmet, but not from the computer?

    Yesterday I moved something in the audio, and now I can't hear the computer without having a wired headset. And now, when I listen to the videos on youtube, I control the volume of the video from the buttons on the computer instead.

    Hi Andriita,

    -What is the brand and model of the computer?

    -What changes do you have on the computer before the show?

    I would suggest trying the following steps and check if it helps.

    Method 1:

    Run the Audio troubleshooter and check if it works.

    Open the troubleshooting of Audio playback

    http://Windows.Microsoft.com/en-us/Windows7/open-the-playing-audio-Troubleshooter

    Method 2:

    Make the computer speakers as default audio output device.

    (a) click Start and then click on Panel.

    (b) click on material and audio.

    (c) click on its icon.

    d) under playback devices tab, right-click on the empty space, and then select the show disabled devices and show disconnected devices.

    (e) right click on the computer speaker device and select set as default device .

    (f) after saving the configuration, close the window and check if the speakers work.

    For reference:

    Tips for solving common audio problems

    http://windows.microsoft.com/en-US/windows7/Tips-for-fixing-common-sound-problems

    No sound in Windows

    http://Windows.Microsoft.com/en-us/Windows/help/no-sound-in-Windows

    Hope this information is useful.

  • Password blackBerry Smartphones Blackberry works for phone, but not for Desktop Manager

    Hi guys,.

    I m a first time user of BB and very satisfied with the purchase. Recently, I set up a password to protect my phone. When it crashes I just type the password and it will unlock. To my surprise when I tried to sync with the Desktop Manager, he asks the password, but when I type on my laptop it doesn´t acknowledge it and starts the 1/10, 2/10 tryes screen. The only solution was to remove the password of the device.

    Where I'm going wrong?

    Appreciate any help.

    Thanx

    Be warned that 10 incorrect password attempts will wipe your device - be careful.

    You have probably a problem of common user where you 'think' you have an uppercase character or a number in the password and you do really, becase that your password is masked by asterisks when you entered first, and you have continued to enter the password ON the device that you think it is.

    Who is? It is a common mistake.

  • Preloader works on homepage, but not on the subpage

    I work for this site is home to the preloder home page works fine. I put the preloader in the upper layer, but here at work page whose link is here works is not work fine same as homepage... would have some advice me what to do? because I did the same thing on the home page, but unfortunately I can't find any reason why his works very well on the WORK page.

    Thank you.

    Even I tested in 3 different browsers, Chrome, Firefox, and Edge, and it works very well in all the!

    Looks like the problem is solved!

  • HP f4480 has worked with dv6 but not with the new dv7 after transfer windows easy

    F4480 will not be printed with the new laptop dv7, I can scan to laptop and the printer works with the old dv6 but it will not print and shows no errors. Print jobs just disappear.

    Have reinstalled several times with the removal of the pilot tool and all the info on this site.

    Me using fixed http://support.hp.com/us-en/document/c02554863 of HP diagnostic tools

    A rather well hidden resource.

  • Series works in Fusion, but not on the site?

    I finally got my license key today and could enter my installed 3 merge (so far, used the temporary key) - but when I login on my VMWare account on the website and try to save the license all I get is an error "invalid series/license.

    Anyone with a similar problem?

    I'd rather have the license working and registered (in case of future updates) of a single semester...

    We are working through some problems with registration for orders at the beginning, but hope to have solved today.

    Pat

Maybe you are looking for