problem with the activity indicator

Hi, I can show activity indicator. But the problem is that I do not know how to deal with another task. I have a screen that show activity indicator and then the application displays this screen is run an initial process to build the database in the SD card. I tried with a thread, but did not work and I have seen other examples, but without success

Thank you

You might find this useful:

http://supportforums.BlackBerry.com/T5/Java-development/sample-quot-Please-wait-quot-screen-part-1/t...

Look for the update in the commentary.  I think the approach that corresponds to what you are looking for.

Tags: BlackBerry Developers

Similar Questions

  • I have a problem with the Activation of the key window expiring.

    Original title: recovery partition

    Hello

    My Windows 7 ultimate activation code has expired, I was wandering if, in case I do a restore system from the recovery partition on my PC I could get it to work again for another year. Thank you.

    Hi Casperthe,

    If you had a real computer of Windows 7, or a valid Windows 7 product key, try these steps and check if it helps. A recent hardware change can cause this problem. I suggest you activate Windows 7 manually (activate by phone) and check if it helps.

    a. click Startand in the search for box type: slui.exe 4
    b. press the 'ENTER' key
    c. Select your 'country ' in the list.
    d. Select the "Phone Activation" option.
    e. stay on the phone and wait for a person to help you with the activation.

    Check out the link for more information:

    How to activate Windows 7 by phone

    http://support.Microsoft.com/default.aspx/KB/950929/en=us

    Hope this information helps. Answer the post with an up-to-date issue report to help you further.

  • I have a problem with the active WiFi Seagate GoFlex TV Media Player asking for a net user ID and a password.

    Original title: Net User ID & Net password

    After the upgrade from Vista to W7-64 CV, I have a problem with an active WiFi Seagate GoFlex TV Media Player asking for a "Net User ID & Net password" to log.  I used all imaginable combinations of IDs & passwords, but they all lead to logon fails. I'm almost certain that it is a W7 security problem because others with the same players who went to W7 face the same problem.  I found many supposed fixes online, but none works.

    I am aware that MS W7 works as it should and Seagate is not their problem, but if anyone can recommend a change of security to help this issue, I guarantee a pass towards the sky.

    PS: All the sharing, etc. continuously.  are installed as they should be.

    The only reference to Net User ID and password I can find is on page 46/47 of the User Guide. If this is not the user name and password of the Windows account that you want to share files with, I don't know what it is.

    I guess patches that you tried to include those that are mentioned here:

    http://forums.Seagate.com/T5/FreeAgent-theater-and-GoFlexTV/logon-fail-home-network-Windows-7/TD-p/70540

    I would have suggested the registry change.

    It might be worth checking that you have the latest firmware, just in case.

    http://knowledge.Seagate.com/articles/en_US/FAQ/216931en?language=en_US

  • Problem with the activation of the Muse

    I have a valid license for Creative cloud (until October 2016). After Muse update tell me, that I have the trial version of 7 days. Before the update, everything was in order. Please help with the activation of Muse (AE give me the same information )

    Please refer to:

    Stop Creative Cloud 2015 to return to the mode of trial

    You run applications after the update is complete?

    I believe that, after an update for Creative Cloud Application Manager, you must open at least one of the apps and let it re - link to its registration information, that has been my experience at least opening one of the applications, it behaves as if it is opened for the first time after such update.

    Concerning

    Stéphane

  • Problems with the activation of Windows XP 2002

    Help!

    Is there someone out there who can help me solve this problem?

    I have a PC with Windows XP Professional 2002, Service Pack 2, control my LC - MS instrument that uses the MS Xcalibur software.  Four weeks ago, I had a PC crash and re installed Windows XP by using the CD of Installation Re.  On Thursday last week, he came a message that Windows must be enabled.  I tried by phone, but my install ID has not been accepted.  This PC came with Win XP is already installed.  I find it very strange that it should be a problem to activate it once more!

    Can someone please help me solve this problem?

    It is very important to me, because the PC is to control the instrument SM - which is the work horse in my business.

    Best regards

    Gunnar Hagelin

    Aquila Pharma Services AS

    Norway

    Moved to other/unknown install, upgrade and activate Forum.

    Hi Gunnar,

    Apologize for the delay in response. You can get the XP operating system correctly using the Activation of phone as described in the following article:

    How to activate a Microsoft product using Microsoft Product Activation Center

    Back to us for assistance.

  • Problem with the activation of the scrolling features

    Hi all:

    I write a game application that takes advantage of two menus api normal (for the initial screen), as well as related graphical rendering tips, once the game is in progress.  One of the menus I have is a statistics screen, implemented as follows:

    class StatisticsScreen extends MainScreen
    {
    
     public StatisticsScreen(SpyderMainApplication p, long style)
      {
        super(style);
    
        parent = p;
        prof = parent.getProfile();
    
        VerticalFieldManager vfm = new VerticalFieldManager(
            Manager.VERTICAL_SCROLLBAR | Manager.VERTICAL_SCROLL);
    
        LabelField title = new LabelField("Statistics", LabelField.FIELD_HCENTER);
        setTitle(title);
    
       // add total statistics
        LabelField totalTitle = new LabelField("Overall Statistics",
            LabelField.FIELD_LEFT);
        vfm.add(totalTitle);
        SeparatorField sft = new SeparatorField();
        vfm.add(sft);
    
        vfm.add(new BasicManager(20)); ... adds a number of other fields inside of vfm, so that it *should* enable scrolling (the whole screen isn't visible) ...
    
        add(vfm);
    
        updateLayout();
        }
    
      protected void sublayout(int width, int height)
      {
        super.sublayout(width, height);
      }
    }
    

    The base Manager is implemented as follows:

    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.system.*;
    
    //import net.rim.device.api.ui.container.*;
    
    class BasicManager extends Manager
    {
            int _managerHeight; // Total height of the manager
    
            // Pass in desired height.  Scrolling is turned off in both directions.
            public BasicManager(int passHeight)
            {
                    super(Manager.NO_HORIZONTAL_SCROLL | Manager.VERTICAL_SCROLL);
                    _managerHeight = passHeight;
            }   
    
            protected void sublayout(int width, int height)
            {
                    BasicTextField field;
    
                    // Loop through all the fields contained with the layout manager
                    for (int lcv = 0; lcv < getFieldCount(); lcv++)
                    {
                            //Get the field.
                            field = (BasicTextField)getField(lcv);
    
                            //Obtain the custom x and y coordinates for
                            //the field and set the position for
                            //the field.
                            switch (field.getCustomStyle())
                            {
                            // Custom style 1 is for the left side of the text to be at 1/8th the width
                            // of the screen
                            case 1:
                                    setPositionChild(field, width / 8 , field.getY());
                                    break;
    
                                    // Custom style 2 is for the right side of the text to be at 7/8ths the width
                                    // of the screen
                            case 2:
                                    setPositionChild(field, width * 7 / 8 - field.getPreferredWidth(), field.getY());
                                    break;
    
                                    // Any other custom style gets position strictly from X,Y
                            default:
                                    setPositionChild(field, field.getX(), field.getY());  
    
                            }
    
                            //Layout the field.
                            layoutChild(field, width, height);
                    }
    
                    //Set the manager's dimensions
                    setExtent(width, _managerHeight);
            }
    }
    
    class BasicTextField extends LabelField
    {
            int _xPos, _yPos, _customStyle; // coordinates and style
    
            // We pass in the coordinates and the custom style
            BasicTextField(String passLabel, int passStyle, int passX, int passY)
            {
                    super(passLabel);
                    _xPos = passX;
                    _yPos = passY;
                    _customStyle = passStyle;
            }    
    
            // Getters for position and style
            int getX() { return _xPos; }
            int getY() { return _yPos; }
            int getCustomStyle() { return _customStyle; }
    
            public int getPreferredWidth()
            {
                    return Display.getWidth();
            }
    
            public int getPreferredHeight()
            {
                    return Display.getHeight();
            }
    }
    

    Now, the problem I have is that on any platform (curve 8330, pearl 8130, etc...), he will not allow the user to scroll to the bottom of the page.  I did something wrong in my application?  I can't get to allow scrolling...

    Thanks in advance for any help!

    ~ Scott

    A quick response - it's late for me.  Default LabelField is not active, so the BB has no place where to focus on when you try to scroll down.  The fastest solution is to be the subject of the LabelField FOCUS.  Otherwise, announces a few NullFields that are focusable.  Let us know if you need more.

  • problem with the activation of the lists?

    I continue to enjoy to find and collaborate with ICE. It works very well with the customer, with the fact that I'm testing.

    I encountered a small problem that I can't solve. Initially, I didn't create ordered and unordered for my client lists. But they wanted to create lists bulleted on a particular page, so I checked the box for this and uploaded to the page with the parameters of ice published. However, the bulleted in the ice button is always disabled and a list cannot be created on the page.

    The clues why? I have re-uploaded and connected to several times to be sure I was working with an outdated version of the page.

    Dig and experiment a little solved the mystery. For anyone who runs into the same problem...

    There was a project already in process at the time wherever I activated this ice editing capability. I guess that the project is based on the editing at the time parameters wherever the project was done. That's why when you edit a project, it uses the same parameters. Rejecting the project and re - download page with the updated ice settings and then do a new edition worked in adding a list.

  • Problem with the Active Directory plugin

    I am trying to create some decom workflow automation based on the Microsoft/AD plugin (version 1.0.5) on my box of vCO 5.5.2. I'm running into a weird error and I hope that someone can help you.

    Right now, just trying to take advantage of the ActiveDirectory.searchExactmatch () function to return an AD:ComputerAD object. The script is the following:

    var computers = ActiveDirectory.searchExactmatch("ComputerAD", Name, 1);
    if (computers != null){
       var actionResult = computers[0]; 
    }
    

    My workflow takes as input of type string, type ActiveDirectory AD:ActiveDirectory name and has an attribute of type actionResult AD:ComputerAD. I am constantly getting this error - TypeError: cannot find searchExactmatch function in the object notfound. (Workflow: fast / Scriptable task (item1) #54823) - apparently, which indicates that the AD:ActiveDirectory object is not found.


    Maybe there is something to permissions for this, but I ran the workflow as a domain administrator and I still have this error. When I run the workflow, I am able to successfully navigate my AD resource:

    selectAD.png

    Any ideas?

    Are you really sure that you have an input parameter named ActiveDirectory? ActiveDirectory is a singleton object script, so it's not really appropriate for the input parameter. Singletons are visible everywhere in the script code, and you can use . (...) to call its methods.

    BTW, by setting convention names must not start with the capital letter; for example. Name should be the name. Please stick to this convention in order to avoid name conflicts.

    Then it seems that you misspelled the name of the method that call you. Instead of searchExactmatch we searchExactMatch (with capital "M").

  • SERIOUS problems with the activation of Windows key, Windows on Macbook via the activation key (hard to read now) / windows (Parallels) "IS VALID", but I did "" Installation disc. IMMEDIATE assistance.

    I bought Parallels for my Macbook and moved my Windows to him, but after a month or two, I was invited for a product key that I have written, but was rejected and I have since then been locked my window and my data lost as a result, I have an installation disc and product key that I "KNOW" is correct doesn't work ' ". Someone please tell me what the matter, is because I'm seriously at my wits end.

    The problem is not a software but a licensing of one.

    Your existing OEM license cannot be transferred to a new machine--and it is difficult to do a upgrade to a non-genuine system (by design).

    You always have your machine 'physical Windows' available? He's still in the original configuration that you want to transfer?

    Apply you the full Ultimate who license and activate it, then repeat the virtualization

    The new virtual machine will still complain of activation status initially, but you will be able to reactivate in the virtual environment.

    You then have to take back the physical machine to the Home Premium of origin by a reinstall license using recovery madia or sale at retail or restore an image from before the upggrade.

  • Problems with the Activation of Windows 7 Professional

    Hello, for a long time, my windows was genuine, but then I ran SpyHunter 4 to end a virus in my computer. But then I had to reset the computer, and then, the windows became a pirate and showing 7601 compilation and I started getting messages that I might be victim of falsification of software. Then, I clicked on the link to activate the window again. And then, I downloaded the WindowsActivationUpdate.exe, and when it ended, I have zero crashed my computer and I received this message, but the windows was always not authentic. Then I went to microsoft.com/genuine and tried to launch the legitcheck.hta, it starts and says that the validation of the window is current and recommended that I do not have to navigate beyond this page. But then, after awhile, it gets with and shows the following script errors:

    Line 14

    Character 41318

    Line 11

    Character 102675

    Line 1

    Character 15126

    Line 6

    Character 31

    Line 0

    Character 0

    Line 2

    Character 1

    And then it becomes white forever. I tried to run the MGADiag.exe and here is my diagnosis:

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 50
    Validation caching Code online: n/a, hr = 0xc004f012
    Windows product key: *-* - CM74G - RPHKF-PW487
    Windows product key hash: 71BRYMECVaSXedfumfu8zryHJVY =
    Windows product ID: 00371-177-0000061-85051
    Windows product ID type: 5
    Windows license type: retail
    The Windows OS version: 6.1.7601.2.00010100.1.0.048
    ID: {163752C2-0AB7-4A81-9190-57AC32A7D366} (1)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Professional
    Architecture: 0 x 00000009
    Build lab: 7601.win7sp1_ldr.160408 - 2045
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 109 n/a
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program Files (x86)\Opera\launcher.exe
    Download signed ActiveX controls: allowed
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->

    Other data-->
    Office details: {163752C2-0AB7-4A81-9190-57AC32A7D366}1.9.0027.06.1.7601.2.00010100.1.0.048x 64*-*-*-*-PW4875S-1-5-21-1838812046-2382835335-2825030358the system manufacturer,System Product NameAmerican Megatrends Inc. 00371-177-0000061-85051 3604 20120223000000.000000 + 0001EEC3907018400FE04160416Hora oficial Brasil(GMT-03:00)03109

    Content Spsys.log: 0 x 80070002

    License data-->
    Versão Serviço licença software: 6.1.7601.17514

    Name: Windows 7 Professional edition
    Description: operating system Windows - Windows (r) 7, retail channel
    Identificacao da Ativacao: e838d943-63ed-4a0b-9fb1-47152908acc9
    Identificacao da size: 55c92734-d682-4d71-983e-d6ec3f16059f
    Estendido PID: 00371-00170-177-000006-00-1046-7601.0000-0242016
    Identificacao da Instalacao: 011474361013629363953701508091790880199835132104999472
    Do Certificado Processador URL: http://go.microsoft.com/fwlink/?LinkID=88338
    URL Certificado da Máquina: http://go.microsoft.com/fwlink/?LinkID=88339
    Da licença of Uso of the URL: http://go.microsoft.com/fwlink/?LinkID=88341
    URL do Certificado da Chave Produto (product key): http://go.microsoft.com/fwlink/?LinkID=88340
    Chave Produto (product key) Parcial: PW487
    Status da licença: calculated
    Razão da calculated: 0xC004F009 (o periodo Armony expirou).
    Contagem remaining rearmacao do Windows: 0
    Confiavel Hora: 14/07/2016 13:31:27

    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: 0xC004C532
    Beyond: 0 x 0000000000000000
    Event timestamp: 7:14:2016 13:23
    ActiveX: Registered, Version: 7.1.7600.16395
    The admin service: recorded, Version: 7.1.7600.16395
    Output beyond bitmask:

    --> HWID data
    Current HWID of Hash: PAAAAAEABgABAAEAAQADAAAAAgABAAEAln36/sIWNidiNErd9OPg2 + oC4DRyVhqAumU + k7dYSBLGni5z

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes, but no SLIC table
    Windows marker version: N/A
    OEMID and OEMTableID consistent: n/a
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    ALASKA APIC HAS M I
    FACP ALASKA A M I
    HPET ALASKA A M I
    ALASKA MCFG A M I
    SSDT IdeRef IdeTable
    SSDT IdeRef IdeTable
    SSDT IdeRef IdeTable
    ADELINE ALASKA A M I

    And I can't press the button 'solve '. Could you help me please?

    PS: I downloaded all of the Opera browser, also, I am of the Brazil.

    My father lost the key. But I managed to post anyway. I did this: before, my computer has lost its properties of activation, I saved the installer of Windows 10 and then, I got a Windows 10 key program necessary to update to Windows 10, and now she's authentic. But thanks for the help guys! Should I delete this post or something like that?

  • Problem with the activation of windows 7

    Hi, my laptop is using Windows 7 starter 32 bit. He saw error and had been repaired once, but still having some questions such as:

    1. cannot install some applications & he said... 'is not a valid Win32 application ".

    2. keyboard Fn key cannot be used

    3. He said that my Windows 7 not genuine

    4. sometimes, can connect to the projector via a VGA cable and sometimes impossible to connect

    5. sometimes the Microsoft Office applications cannot be opened, but sometimes it can be opened

    I have a few questions:

    1. how to make reactive my original Windows 7 starter edition? Since I can remember, technitian which difficulty my laptop had been tempted to reactive my original Windows, but it will be not active & still ask for activation of the Windows operating system

    2. how to fix the keyboard Fn key?

    3. is there need of all drivers to install for VGA projector & to install all the applications that I want?

    4. by setting activation of Windows 7, Microsoft Office can always be opened without any problem?

    Sorry for my English is not my mother tongue. I wish I can get the answer as soon as POSSIBLE. Thank you

    Honestly, it looks that your system needs a new reinstall of Windows 7. It should reinstall applications such as Microsoft Office and drivers for devices such as your scanner, printer. If you wish not to do this, follow these steps:

    Check your hard drive for errors:

    Click Start

    Type: CMD, according to the results, right-click CMD

    Click on "Run as Administrator"

    At the command prompt, type: chkdsk /f /r

    When you restart your system, your computer will be scanned for errors and will try to correct them.

    then


    Click Start
    Type: CMD, according to the results, right-click CMD
    Click on "Run as Administrator"
    At the command prompt, type: sfc/scannow
    This will check for any breach of integrity

    Restart your system

    Also to perform a clean boot and see if things improve:

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

    You should also check to see if you have installed any rogue programs:

    Click Start, type: programs and features

    Press enter

    See the list and uninstall programs, you are sure that you may not be installed.

    See also:

    How to speed up your Windows 7 system:

    http://techingiteasy.WordPress.com/2010/01/11/speed-up-your-system-for-the-new-year/

    Regarding the reactivation:

    Try the following:

    Click Start, right click on computer

    Click on properties

    Scroll down to the Windows Activation

    Click on the link 'change product key '.

    Enter the product key located on the COA sticker attached to the bottom of your laptop or in the battery compartment. Click next to activate via the Internet.

    COA certificate of authenticity:

    http://www.Microsoft.com/howtotell/content.aspx?PG=COA

    ??

    What is the certificate of authenticity for Windows?

    http://Windows.Microsoft.com/en-us/Windows7/what-is-the-Windows-certificate-of-authenticity

    You should also check the updates for your drivers:

    http://Windows.Microsoft.com/en-us/Windows7/tips-for-fixing-common-driver-problems

    http://Windows.Microsoft.com/en-us/Windows7/update-a-driver-for-hardware-that-isn ' t-work correctly

  • problems with the activation of the product

    Hello, I pay the annual plan of photoshop and the receipt of electronic mail of confirmation of order but don't know the next step. I expect a protudo activation code?

    Some general information for a subscription of cloud

    Cloud programs don't use serial... numbers you, connect you to your cloud account paying to download & install & activate... you may need to sign out of the cloud and restart your computer and log into the cloud for things to work

    Your subscription to cloud shows correctly on your account page?

    If you have more than one email, you will be sure that you use the right Adobe ID?

    https://www.adobe.com/account.html for subscriptions on your page from Adobe

    .

    If Yes

    Sign out of your account of cloud... Restart your computer... Connect to your paid account of cloud

    -Connect using http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html

    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html

    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html

    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp

    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html

    .

    If no

    This is an open forum, Adobe support... you need Adobe personnel to help

    Adobe contact information - http://helpx.adobe.com/contact.html

    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    -Select your product and what you need help with

    -Click on the blue box "still need help? Contact us. "

  • Problems with the activation of the creative cloud.

    I registered the creative cloud with Photoshop and Lightroom. I signed up with my Adobe, ID but they continue in trial version of 30 days be able to expire. I'm unable to solve the problem, anyone know any solution.

    Already, thank you.

    Check your subscription payment has been processed and your adobe id is correct, https://www.adobe.com/account.html

    log out and then back to your office to cc using the same adobe id allowing you to check your subscription is current, https://helpx.adobe.com/creative-cloud/help/sign-in-out-activate-apps.html

  • Having a problem with the activation of Windows 7 Home Premium

    Is there a way to "activate" my Windows 7 Home Premium 64 - bit legitely after installing upgrade as full version copy, but it was only a CD upgrade, using the old hard drive to check the previous version of Windows (XP) or do I have to buy a full copy of detail? I own is no longer my Windows XP cd that I had used on the original hard drive I recently replaced due to failure.

    problem solved :).

  • problem with the activation of my subscription of the cc

    Hey nice community.

    I bought the cc study version 10 days before and I am in the trial version now. But when I want to the the license product, PDApp finds no subscription. And when I want to check my subscription in the browser fine. Here, I can see that I have payd for it and that I can download. So why cc can't find my subscription in programs but in the browser to my profile?

    I hope someone can help me solve my problem.

    Thank you very much

    Greetz Jan

    Hello

    First of all, disconnect, then back into creative cloud, using adobe id to pay for your subscription.

    https://helpx.Adobe.com/creative-cloud/help/sign-in-out-activate-apps.html

    Then, if you launch any product of CC 2015 and the pop up still shows a trial message window, please check this link for the resolution:

    https://helpx.Adobe.com/manage-account-membership/CC-reverts-to-trial.html

    Hope this helps!

Maybe you are looking for

  • Can my keychain Mac record passwords used in firefox?

    The keychain on my Mac doesn't seem to save the passwords used on Firefox

  • pass USB Bluetooth for car audio

    I have a CR - V Honda Touring 2015 model.  Initially playing audio through bluetooth worked flawlessly, phone calls and messages worked very well too. I tried to get the album in shuffle mode to work (see other posts by me) on my iPhone 6.  I got an

  • Worst mistake ever - how to re - activate all devices in hardward?

    I messed up really bad. I was using DevCon (http://support.microsoft.com/kb/311272) to disable a USB device and accidentally entered "devcon disable!"  Each unique device on my computer has been turned off instantly.  Now I can't even start on a rest

  • Problem with Nexus 7 connection with the computer.

    I have a Nexus 7 (2013) and I am unable to connect wireless to my PC Windows 7 Home Premium.  I can connect via a USB cable, but I really need to have a wifi connection. The PC does not recognize the wireless device, "add a device"produced nothing."

  • How to get several standard via ipsec vpn subnet?

    Dear all, I have this scenario: A - Hand router Cisco 881 private network: 10.10.10.0/24 private address: 10.10.10.2 address: xxx.xxx.xxx.xxx B branch office router DrayTek vigor 2600 private network: 100.100.100.0/24 private address: 100.100.100.1 s