Which type of Software support

Hi, i m using nokia asha 305 since 1 yr. I want to install maze lock software to my phone and which type of software does asha 305 support and which format type of file is to be installed 

Java software is supported. Formate: .jar

Similar Messages

  • I have tried to view videos created in premiere elements 10 and I get the following message: "this file type is not supported, or the required codec is  not installed.  When it opens there is a red screen in the monitor panel with Korean writing which als

    I have tried to view videos created in premiere elements 10 and I get the following message: "this file type is not supported, or the required codec is  not installed.  When it opens there is a red screen in the monitor panel with Korean writing which also appears in the place of each clip in the video.  I tried uninstalling and reinstalling premiere elements 10, but that did not have any effect on the video.  Do you have any suggestions?  I researched codec, but do not understand them at all.

    gloucester
    In case you did not find it, the following is a copy/paste of the Announcement on Premiere Elements 19/NVIDIA GeForce
    that appears at the top of this forum.
    Premiere Elements 10 NVIDIA Video Card Driver Roll Back
    If you are a Premiere Elements 10 user whose Windows computer uses a NVIDIA GeForce video card and you are experiencing
    Premiere Elements 10 display and/or unexplained program behavior, then your first line of troubleshooting needs to be rolling
    back the video card driver version instead of assuring that it is up to date.
    Since October 2013 to the present, there have been a growing number of reports about display and unexplained workflow
    glitches specific to the Premiere Elements 10 user whose Windows computer has a NVIDIA GeForce video card. If this applies
    to you, then the “user to user” remedy is to roll back the NVIDIA GeForce video card driver as far as is necessary to get rid of
    the problems. The typical driver roll back has gone back as far as March – July 2013 in order to get a working Premiere
    Elements 10. Neither NVIDIA nor Adobe has taken any corrective action in this regard to date, and none is expected moving forward.
    Since October 2013, the following thread has tried to keep up with the Premiere Elements 10 NVIDIA reports
    http://forums.adobe.com/thread/1317675
    Older NVIDIA GeForce drivers can be found
    http://www.nvidia.com/Download/Find.aspx?lang=en-us
    A February 2014 overview of the situation as well as how to use the older NVIDIA GeForce drivers for the driver roll back can be found
    http://atr935.blogspot.com/2014/02/pe10-nvidia-video-card-roll-back.html
    ATR

  • In my application I am using input type = "time" but in Firefox 30.0 its showing plain text box. Can anyone tell me which version of Firefox supports it.

    In my application I am using <input type = "time"> but in Firefox 30.0 its showing plain text box. Can anyone tell me which version of Firefox supports this feature?
    <input type = "time"> is added in HTML5.

    See:
    *https://developer.mozilla.org/Web/HTML/Element/Input#Browser_compatibility
    <i>Please do not comment in bug reports<br>https://bugzilla.mozilla.org/page.cgi?id=etiquette.html</i>

  • JDBC-ODBC Bridge to SPSS data files - Result Set Type is not supported

    Hello,
    As mentioned in the subject I am trying to read SPSS data files using the SPSS 32-Bit data driver, ODBC and the JDBC-ODBC Bridge.
    Using this SPSS Driver I manged to read the data directly into an MS-SQL Server using:
    SELECT [...] FROM
    OPENROWSET(''MSDASQL.1'',''DRIVER={SPSS 32-BIT Data Driver (*.sav)};DBQ=' SomePathWhereTheFilesAre';SERVER=NotTheServer'', ''SELECT 'SomeSPSSColumn' FROM "'SomeSPSSFileNameWithoutExt'"'') AS a
    This works fine!
    Using Access and an ODBC System DNS works for IMPORTING but NOT for LINKING.
    It is even possible to read the data using the very slow SPSS API.
    However, when it comes to JDBC-ODBC the below code does only work in part. The driver is loaded successfully, but when it comes to transferring data into the resultset object the error
    SQLState: null
    Result Set Type is not supported
    Vendor: 0
    occurs.
    The official answer from SPSS is to use .Net or to use their implementation with Python in their new version 14.0. But this is obviously not an option when you want to use only Java.
    Does anybody have experience with SPSS and JDBC-ODBC??? I have tried the possible ResultSet Types, which I took from:
    http://publib.boulder.ibm.com/infocenter/db2luw/v8/index.jsp?topic=/com.ibm.db2.udb.doc/ad/rjvdsprp.htm
    and none of them worked.
    Thank you in advance for your ideas and input & stay happy!
    Here the code without all the rest of the class arround it:
    // Module:  SimpleSelect.java
    // Description: Test program for ODBC API interface.  This java application
    // will connect to a JDBC driver, issue a select statement
    // and display all result columns and rows
    // Product: JDBC to ODBC Bridge
    // Author:  Karl Moss
    // Date:  February, 1996
    // Copyright: 1990-1996 INTERSOLV, Inc.
    // This software contains confidential and proprietary
    // information of INTERSOLV, Inc.
    public static void main1() {
      String url   = "jdbc:odbc:SomeSystemDNS";
      String query = "SELECT SomeSPSSColumn FROM 'SomeSPSSFileName'";
      try {
        // Load the jdbc-odbc bridge driver
        Class.forName ("sun.jdbc.odbc.JdbcOdbcDriver");
        DriverManager.setLogStream(System.out);
        // Attempt to connect to a driver.  Each one
        // of the registered drivers will be loaded until
        // one is found that can process this URL
        Connection con = DriverManager.getConnection (url);
        // If we were unable to connect, an exception
        // would have been thrown.  So, if we get here,
        // we are successfully connected to the URL
        // Check for, and display and warnings generated
        // by the connect.
        checkForWarning (con.getWarnings ());
        // Get the DatabaseMetaData object and display
        // some information about the connection
        DatabaseMetaData dma = con.getMetaData ();
        System.out.println("\nConnected to " + dma.getURL());
        System.out.println("Driver       " +
          dma.getDriverName());
        System.out.println("Version      " +
          dma.getDriverVersion());
        System.out.println("");
        // Create a Statement object so we can submit
        // SQL statements to the driver
        Statement stmt = con.createStatement(ResultSet.TYPE_FORWARD_ONLY ,ResultSet.CONCUR_READ_ONLY);
        // Submit a query, creating a ResultSet object
        ResultSet rs = stmt.executeQuery (query);
        // Display all columns and rows from the result set
        dispResultSet (rs);
        // Close the result set
        rs.close();
        // Close the statement
        stmt.close();
        // Close the connection
        con.close();
      }

    Thank you for your reply StuDerby!
    Actually the above script was before, as you suggested, leaving the ResultSetTeype default. This did not work...
    I am getting gray hair with SPSS - in terms of connectivity and "integratebility" none of their solutions offered is sufficient from my point of view.
    Variable definitions can only be read by the slow API, data can only be read by Python or Microsoft Products... and if you want to combine both you are in big trouble. I can only assume that this is a company strategy to sell their Dimensions Platform to companies versus having companies developping their applications according to business needs.
    Thanks again for any furthur suggestions and I hope, that some SPSS Developper will see this post!
    Cheers!!

  • Oracle Version 10.1.0: Data type is not supported

    Hi,
    I am getting "Data Type is not supported" whenever I try to access tables with lob column in Toad.
    Oracle server version is 10.1.0 and using toad version 7.6. Sql net version 9.2.0
    Any pointers towards the resolution?
    Thanks in advance.
    Bhavesh

    You could take this opportunity to upgrade your Toad to version 10 of sqlplus.
    Failing that there are mail lists for those less productive souls struggling with the amphibious software at which can be found at.
    http://www.toadsoft.com/maillist.htm

  • Crm consultant handles which types of tickets

    crm consultant handles which types of tickets?

    Yes you are correct that a CRM consultant doesn't normally handle production support tickets due to the cost.  That being said for those of us on the good side, we get to deal with almost everything.  I can honestly say the only lifecycle functions I haven't done in a CRM project is install hardware, install OS, install db software, instal CRM from source cds, apply a support package, and install an upgrade software.   I'm talking about the physical basis tasks and not the projects related to those activities.
    I think those of us doing support+projects have more fun.  It's the only situation where I could discuss new business requirements, talk to basis about profile parameters in the same day, fix the SAP GUI and internet explorer and debate with other developers about whether to do something recursively in the same day.  I really wish I had the luxury of consultants of having only to code or configure or write documentation .
    Take care,
    Stephen

  • The Group Policy Client service failed the sign-in The universal unique identifier (UUID) type is not supported

    Hi guys,
    we created a custom WIM Image (Windows 8 Enterprise) with MDT 2012.
    Sysprept the Image, Deployed via SCCM 2012 SP1.
    Computers are Domainjoined. Error with standard Domain User.
    On some computers (not every computer) and not with every user on the first logon following error message arises:
    The Group Policy Client service failed the sign-in The universal unique identifier (UUID) type is not supported
    It works, when you log in a second time but this error isn't very nice. 
    Is there a solution for that?
    Kind Regards
    Martin

    Hi,
    The service is responsible for applying settings configured by administrators for the computer and users through the Group Policy component. This issue can be caused by various reasons based on the computer environment.
    Can you find any information in event log about this issue?
    Here is the related blog in which the steps can solve most of such issues if the issue continuously happen.
    http://blogs.msdn.com/b/moiqubal/archive/2012/03/04/how-to-fix-quot-the-group-policy-client-service-failed-the-logon-access-denied-quot-error.aspx
    Also, you can refer to the similar thread about this issue:
    http://social.technet.microsoft.com/Forums/en-US/4a644219-50ee-494d-b965-e64a8555109e/the-group-policy-client-service-failed-the-signin-the-universal-unique-identifier-uuid-type-is
    Since this issue can be related to SCCM, to better help you, please submit a new thread for further help:
    https://social.technet.microsoft.com/Forums/en-US/home?category=systemcenter2012configurationmanager
    Hope these could be helpful.
    Kate Li
    TechNet Community Support

  • My instant watch for netflixs is not working on my macbook pro. I just shows a black screen. I know that the problem is not Silverlight, so what other type of software or upgrades am I missing?

    Go figure both Apple support and Netflixs support "have never seen a problem quite like mine" the same day my free trial has ended. And no the, problem is not with my Netflixs account because they charged my debit card just fine. I'm trying to play instant movies on my netflixs account and every time I click on a movie or show it just shows up a black screen with no play controls. According to Netflixs I'm either missing a peice of software or I need to uninstall and reinstall a program or plug-in or something. At first they thought it was Microsoft Silverlight, but I've tried uninstalling and reinstalling that several times and nothing has changed, plus since I had no play controls as well the problem is definetly not Silverlight. So I was wondering what other types of software or plug-ins are needed to play Netflixs movies or if anyones else has had the same issue and knew how to fix it. And I know that it is a problem with my Macbook Pro, because my netflixs accout still works on my sister's computers. I've tried restarting my computer, restarting Firefox, signing out and back in on Netflixs, praying to God, clearing my cookies and chache, saying nice things to my laptop, yelling at my laptop, and pretty much everything under the sun. Nothing I do is fixing it. Please someone help me figure this out.

    MacBook Pro  / Mozilla Firefox / Netflix / Silverlight Update solved - DON'T DWNLOAD FROM NETFLIX
    I solved this problem tonight. I have a MacBook Pro with 10.5.8. I know, it's old. But I love my Netflix and I recently noticed that Firefox plays Netflix much better.  Then I suddenly got this message that I needed to download the latest Silverlight - it only takes 30 seconds! - WRONG.   However, after much searching, I finally did the steps in order and it worked.  
    This was after repeatedly downloading Silverlight from the Netflix site without success.  So here's what I did:
    1. Went to http://www.microsoft.com/getsilverlight/Get-Started/Install/Default.aspx
    2. Followed the directions. I felt like such an idiot for not doing it right before.
    3. Go to your hard drive and search for "Silverlight" to locate ANY existing Silverlight files: .dmg, etc.
        [also check your Libary/ Internet Plug-ins, but the above search is faster]
    4. Drag it all to the trash and empty it.
    5. Go back to the Get  Silverlight page and click on the Install on that page, not the Netflix site.
    6. Note the steps for Safari or Mozilla Firefox - I wanted Firefox, so I follwed those instructions.
    7. Once it's installed, close all the browsers and Restart that bad boy. Right away.
    8. Open a browser, go to Netflix and proceed to joyfully rot your brain with Netflix content. Yay!

  • Compaq Presario v6346ea: Which type of SATA controller?

    I've recently bought an Intel X25-M/G2 Solid State Drive and was expecting read speeds of 200 MB/s on my Compaq Presario v6346ea notebook. Instead of that the maximum speed I get from CrystalDiskMark is 135 MB/s.
    Now I'm suspecting the SATA controller of my notebook to not being able to handle the speeds of this Solid State Drive.
    I've looked on HP's website to find out which type of SATA controller is used in my Compaq Presario v6346ea but can't find find any clear info on that subject.
    From what I read at http://en.wikipedia.org/wiki/Serial_ATA there are 3 types:
    SATA Revision 1.0 (SATA 1.5Gb/s, max 150 MB/s throughput minus overhead.)
    SATA Revision 2.0 (SATA 3Gb/s, max 300 MB/s minus overhead.)
    SATA Revision 3.0 (SATA 6Gb/s, max 600 MB/s and up minus overhead)
    Does anybody know which type of SATA controller is used in this Compaq Presario v6346ea notebook?

    Thank you for the additional info. I ran SISoft Snadra and found some interesting stuff. For instance, it IDed the chipset as a mcp78s not a mcp77. It also indicates that it can use DDR3 memory. I'm not sure if that's accurate, as it conflicts with specs I've read elsewhere. If true, I wish I'd known that when I upgraded my RAM to 8GB. :-p Anyway, I've tried to determine the SATA revision, but I'm not sure if I'm going about it the right way. I went to "Storage Devices" and clicked the only available button: "Physical Disks , Storage adapters and devices". From there I can choose my internal hard drive from a menu, and it shows the maximum SATA mode as G2 / SATA300. But I'm not sure if this is in reference to the controller or the drive. I know that the drive is a SATA-II, so it would show that if it's displaying the drive's capabilities. It certainly tells me everything else I'd ever want to know about the drive. When I switch to my external USB HDD, it shows the maximum SATA as G3 / SATA600. For the DVD drive it shows G1 / SATA150. So I kind of think it's showing me the maximum capabilities of the drives, not the controllers.  Is there some other way to check the maximum SATA capabilities of the hard drive controller? Sorry. I'm not too familiar with SISoft Sandra, and it's not really obvious to me. And given what it's turned up about the chipset and the memory support, I want to be sure here. Thanks.

  • I have a new Linksys router.  When I load the accompanying CD it informs me that it supports OS 10.5.8 or later, OS 10.6.1 or later, and OS 10.7 or later.  I am running 10.9.2, which apparently isn't supported by this Router.  Any suggestions?

    I have a new Linksys router.  When I load the accompanying CD it informs me that it supports OS 10.5.8 or later, OS 10.6.1 or later, and OS 10.7 or later.  I am running 10.9.2, which apparently isn't supported by this Router.  Any suggestions?

    No they should be agnostic about what is behind them, but as to support for IP6, or whether any computers or tablets can use AC... and hasn't Apple's own units sometimes stop being supported with new Mac and new versions of OS X? seems so.
    I said above, why would anyone install any kind of software to use a router? although Netgear's GEnie is or was installed on my systems that adds a nice way to log in and manage the router, so I have to take that back a notch.
    Support for modems and ISPs is a concern, my modem is not certified fully with DOCSIS 3.0 or  FIOS.
    Look around and you can find routers having trouble with some network services like Airplay, printing and scanning, the software bundled with router.
    However, ethernet chips, and the driver, can be a factor. Problems with Intel networking chip and high bandwidth streaming and not being able to handle the load when used by wifi euipment like notebooks and other devices.
    I have only seen the LARGE number of complaints on MacBook forums about wifi issues to suspect something is wrong but not sure what. And those are people that depend on wifi I assume, though some could use their Thunderbolt equipped Mac to use ethernet to get around the problems. And I am seeing the same thing with some Windows users and maybe they all have common Intel chips???
    MacBook Pro constantly losing wireless connectivity
    I use Windows 8.1 primarily. I also don't know enough or as much to know "Why is the sky blue" either.
    Just pass along this example:
    If you're setting up a new PC for the first time, check if your router is fully compatible with Windows. Because of the new networking features in Windows (8.1), some older network routers aren't fully compatible and can cause problems. For a list of routers that are compatible with Windows 8.1 and Windows RT 8.1, go to the Windows Compatibility Center.
    Anyone remember when 10.4.0 had so many issues with LAN that it could not be used, work on fix was going on and wasn't complete until 10.4.2/4.3 (and first time we got a new full 10.4.3 DVD because customers needed a reliable system.

  • I have a problem: every time when i want to download free apple applications in the apple store, apple store asks me which type of credit card i want to use. Why did it ask this question?

    i have a problem: every time when i want to download free apple applications in the apple store, apple store asks me which type of credit card i want to use. Why did it ask this question?

    If you are within 14 days of purchase you can still return the iPhone and get the phone that suits your needs, however, I think you will find that no matter which phone you get the content provider will want to know how you are going to pay for future purchases. For Android phones it is Google, and they will certainly want to know.
    To create an Apple account without a credit card see: http://support.apple.com/kb/HT2534

  • Which type of HDMI cable?

    i have Hp  pavillion dv6-6121tx laptop and i want it to connect with my TV through HDMI cable.Which type of cable should i buy 1.3B or 1.4B or they just don't matter?please tell me

    Please see this Wikipedia article entitled "HDMI" for a comparision of the different revision numbers. For most applications, it doesn't matter if you use v1.3b or 1.4b.... But getting the newest revision gives you the flexibility to use the latest and greatest if you choose to.
    Please send KUDOs
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • Which type of documents are used in a project

    which type of documents are used in a project whether it may be implementation or development or upgradation or supporting
    and pls send the procedure how we can proceed in these cases as abaper
    thanks in advance

    Hi Praveen,
    Generally we have FS(Functional Specification) is created by Functional people.
    And technical designer develop the TS(Technical Specification).
    Developer gets the TS and write ABAP code for development.
    There are other documents like:
    1. TR file for tracking all transports
    2. TCR(technical change request) for change later if FS change.
    Hope it will clear the process.
    Regards
    Krishnendu

  • Which project management software is best, which project management software is best

    Which project management software is best for my macbook pro?

    In order to give you a solid recommendation, we'd need to know what needs you have.
    What type of project are you planning on managing?
    What size of team?
    Timeline?
    Extent?
    What are some things you need to manage (emails, phone calls, stages, tasks, phases, etc)?
    Without any of this, it's hard to give you a recommendation, as EVERYTHING will work on your MacBook Pro, especially if you have Windows dualbooted.
    However, I can tell you that the best project management software I've used to date (and continue using) is JobNimbus. It's both CRM and project management software, very easy to use, and the pricing is way lower than others I've seen.
    Give that a try (they have a 30-day trial) and try to reply back with more info so we can help you out a little bit better.
    Cheers

  • Which type of attachments can i open from Mail for...

    which type of attachments can i open from Mail for Exchange in Nokia E 7. ( e.g.MS Office Word , Excel , PowerPoint Latest versions , PDF , Jpeg Etc ) 
    Regards,
    COMDINI
    Regards,
    COMDINI

    As per the specifications..
    Email and messaging
    Easy-to-use email client with attachment support for e.g. images, videos, music and documents .doc, .xls, .ppt, .pdf, .zip

Maybe you are looking for