Resolving differences/bugs between Z10 and Q10

A BB10 version of Magmic's New York Times Crossword was finally released last week.  The app was awesome and worked flawlessly on the 9930.  I downloaded it on Thursday and immediately encountered several bugs that make me think this is a Z10-only app.  (Total lack of support for the physical keyboard, inability to scroll down/resolve screen elements and commands on lower half of screen, etc.).  I have contacted Magmic support directly regarding a fix or update, but I have some general questions for the community at large.
Have many apps developed for the Z been subsequently optimized for the Q?  Is there any reason to believe that a developer would not work out the kinks between the platforms?  Or are developers simply adopting a one-size-fits-all philosophy for BB10 that ignores crtitical differences between the Z and Q?
While I am by no means a hardcore gamer, I do hope that gaming on the Q is not destined for failure.

I like Q10, it has been a long time since I used a mobile phone with physical keyboard. That is a special feeling to use a smartphone with a keyboard again.
Z10 looks great but not that special or unique.

Similar Messages

  • What is the best strategy to use both Z10 and Q10?

    Assume I have both a Z10 and Q10 and I'd like to use it on alternate days, what's the best strategy to do so?
    BBM should be fine with the same BlackBerry ID and it can just keep switching between the 2 devices.
    If I am using local contacts and calendars, is there an easy switch to keep them sync on both Z10 and Q10?
    There are also other information to sync in Password Keeper, Remember...etc.
    Is there a solution?

    Hello,
    For calendar and contacts, there is this:
    http://supportforums.blackberry.com/t5/BlackBerry-Q10/How-To-OTA-Sync-BB10-and-non-BES-Outlook-Overv...
    With that, I actually keep all of the following in sync:
    Two instances of Desktop Outlook (2007 and 2010)
    Z10
    PlayBook
    Outlook.com
    And, before I decommissioned it, also an Android device. Any device that can synchronize with Outlook.com can use this solution to keep in sync for calendar and contacts. You, of course, need to not use solely local contacts and calendar but instead keep them synchronizing with Outlook.com.
    For the other things you mention, I know of no solutions other than backup/restore...but I do not recall if LINK offers the selective method for those.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Difference in between J1IH and J1IS

    Dear Gurus,
            I know that J1IH is used JV posting for excise invoices.
    And for J1IS we create the excise invoice and release account posting in J1IV.
    I want to know what is the basic difference in between J1IH and J1IS, though in both cases we capture and post the excises. Please suggest with some couples of examples.
    Regards,
    Shyam

    Hi,
    J1IH is used to post the Excise JV.
    Use: - You use these functions if you need to make an adjustment posting to any of your CENVAT accounts. You can make adjustment postings to account for:
    - Scrap
    - Materials that you have not used in production
    - Additional excise paid by vendors
    - Money that you have transferred to your personal ledger account
    - Other transactions
    - You can also use this function to cancel excise invoices -out going excise invoices.
    J1IS is used to create the excise invoice for other movements like Subcontracting & Stock transfer order.
    Can i use J1IH for canceling vendor excise invoice, the one I captured in J1IEX
    You can refer below link more detail,
    [J1IH & J1IS|J1IH and J1IS]
    Edited by: tej yadav on Feb 3, 2012 1:29 PM

  • I want to find the difference(duration) between logon and logoff time?

    i want to find the difference(duration) between logon and logoff time of below table?
    can any one tell the query to find using self join?
    USR     LOGON_TIME     LOGOFF_TIME
    HR     31-AUG-04 03.04.04.000000 AM     -
    HR     - 31-AUG-04 03.04.14.000000 AM
    Edited by: 794244 on Nov 1, 2010 10:47 PM

    No selfjoin, just analytical functions.
    CREATE TABLe log_time
    (username varchar(20),
    LOGON_TIME timestamp,
    LOGOFF_TIME timestamp);
    insert into  log_time (username,LOGON_TIME,LOGOFF_TIME) values ('HR',sysdate,null);
    insert into  log_time (username,LOGON_TIME,LOGOFF_TIME) values ('HR',null,sysdate+1/38);
    insert into  log_time (username,LOGON_TIME,LOGOFF_TIME) values ('HR',sysdate+2,null);
    insert into  log_time (username,LOGON_TIME,LOGOFF_TIME) values ('HR',null,sysdate+2+14/20);
    commit;
    SELECT username,logon_time,logoff_time, my_logoff_time, my_logoff_time -logon_time,
           time_to_sort
    FROM (
            SELECT username,logon_time, logoff_time,
                   LEAD(logoff_time,1,logon_time) OVER (PARTITION BY username ORDER BY time_to_sort) my_logoff_time,
                   time_to_sort
            FROM (SELECT username,logon_time,logoff_time,NVL(logon_time,logoff_time) time_to_sort
                  FROM log_time)
    where LOGON_TIME is not null     
    ORDER BY  time_to_sort; 
    USERNAME     LOGON_TIME     LOGOFF_TIME     MY_LOGOFF_TIME     MY_LOGOFF_TIME-LOGON_TIME     TIME_TO_SORT
    HR     02.11.10 11:34:56.000000000          02.11.10 12:12:50.000000000     0 0:37:54.0     02.11.10 11:34:56.000000000
    HR     04.11.10 11:34:56.000000000          05.11.10 04:22:56.000000000     0 16:48:0.0     04.11.10 11:34:56.000000000But, if that code which fills that table should better UPDATE than INSERT. You can cover much more issues. (e.g the DB crashes and you get 2 logon but no logoff in a sequence and.....)
    -- andy

  • Difference/relationship between XML and XSD

    Hi All,
    Correct me if i am wrong,
    When we create a source and a target datatype in IR automatically objects will be created in XSD.
    The same way it does when we create message type.
    In message mapping, We map source and target message type and when we test with sample data, we can view source and target in xml
    My question is what is the difference/relationship between XML and XSD ?
    Thanks,
    ss

    Hi,
    XML (Extensible Markup Language) is a W3C initiative that allows information and services to be encoded with meaningful structure and semantics that computers and humans can understand. XML is great for information exchange, and can easily be extended to include user-specified and industry-specified tags.
    Whereas
    An XML Schema Definition (XSD) is an instance of an XML schema written in the XML Schema language. An XSD defines a type of XML document in terms of constraints upon what elements and attributes may appear, their relationship to each other, what types of data may be in them, and other things. It can be used with validation software in order to ascertain whether a particular XML document is of that type, and to produce a Post-Schema Validation Infoset.
    I hope this clarifies.
    Regards.
    Praveen

  • Z10 and Q10 not receiving 365 exchange emails

    I have a Z10 and a Q10 user who mentioned they are not able to receive Mircrosoft 365 Exchange Online emails. They have to disconnect from the mobile network and reconnect to the mobile network and Exchange emails start coming in.
    This issue happens 4-5 times a day for each user. However these two users also had their POP3 account setup on the phones and those emails flow in quite consistently. (thus not an ISP issue)
    Other Z10 and Q10 users in the same organization have no such issue. All BB10 users are connecting to Mircrosoft 365 Exchange Online with Exchange ActiveSync. This organization doesn't have BES servers.
    Called MS365 support who blames the phones.
    Has anyone experienced similar issue?
    Thanks!

    are the users with long names or very complex passwords?
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • What is the difference/comparison between AppRf and WebCC ?

    Q: What is the difference/comparison between AppRf and WebCC ?
    A:  
    Comparison between AppRf and WebCC:
    AppRF
    WebCC
    2300+ Apps under 21 app categories
    Millions of URLs under 80+ categories
    Need up to 7 packets to classify
    Classified once HTTP GET is received
    Classification
    Classification + Reputation
    Need AOS upgrade to get new Apps
    Dynamic update of WebCC database
    Static content based classification
    Dynamic content based categorization / reputation

    Or put another way:
    Albums organise Photos
    Folders organise Albums
    A Photo cannot be in a Folder, only in an Album.

  • Difference(s) between Fieldpoint and RIO?

    Hello,
    I am pretty new to to PACs. I am finding it really hard to find the difference(s) between cFP and RIO. Where should i choose cFP over RIO?
    Some kind of practical comparison here shall be highly appreciated.
    Regards,

    Hi Mirza,
    Your specific application is going to determine which equipment is best. I found a couple of online presentations about CompactRIO and FieldPoint which should provide you with more insight about the functionality of each product:
    CompactRIO Presentation
    FieldPoint Presentation
    Also, here are the links to the product pages for FieldPoint and CompactRIO. I hope that you find this information helpful.
    Regards,
    Hal L.

  • HT1178 What the difference is between WPA and WPA2 and how are these settings affecting the access of other computers to the internet through my Time Capsule

    I have a Time Capsule of the 4th generation and I am pretty impressed since I just had a fried harddrive on my 3 month old Imac and Time Capsule restored it fully including all programs etc. without having me to put in all serial numbers etc. for that I give it an A+. However what I find very frustrating is the very short and incomplete user manual and setup instructions. I give those a D-. It does not explain the consequences of certain choices to a normel non computer gig user like me:
    I do not understand what the consequences and difference is between the security setting WPA/WPA2 and WPA2 when setting it up. It would be helpful if the manual would explain something like: If you set it onto WPA2 then computers older than XXX years will not able to hook up to the internet through your router...or the likes, since I slowly supect this may be the reason for some of my troubles.
    I also have a 5 year old PC with vista connected to the Time Capsule. It can wireless connect to the Time Capsule and access the printer (I have managed that after some painful hours...) but it cannot access the internet with that PC through the timecapsule wireless, only if I hook it up with a cable. Why? Does that have to do with the fact that I have set the TIme Capsule to WPA2?
    Our PS3 can connect wireless, no problem. However, I friend of mine tried it with a quite new Toshiba Notebook and he could see the Time Capsule but again it shows the line from the Time Capsule to the internet blocked. All other computers linked with data cable to the Time Capsule are connected to the internet no problem. What have we done wrong? Should I change the security setting to WPA/WPA2?
    I tried the latter, but then another problem does come up, which was there from beginning on: When I change the settings for my Time Capsule my Imac suddenly cannot find the Timne Capsule anymore, even so I am only 3feet away from it. When I set it up for the first time 3 month ago it drove me crazy. The very first time it found the Time Capsule right away. But when I discuverd a mistake in my initial setup and I went through the settings again to change stuff it suddenly could not find the Time Capsule anymore. Only after frustrating 20 times or so with turning wi-fi on and off several times inbetween did it suddenly find the Time Capsule in the set up menu. However, when I tried changing my security setting to WPA/WPA2 today to see whether this solves my other problems again it could not find the Time Capsule when I was finished with the settings and I had to give up/cancel. Why is that???
    I would really appreciate some help here. But please I am not a computer gig and normally always had assistance with these things. On the other hand I am not all stupid either (even so these manuals assuming we all grew up sleeping on a computer make me feel stupid).....
    Thank you all in advance

    Hello Schimi. The Time Capsule is a kind of product that offer you two possibility:
    - To use the TC as a router or as an external HD.
    The difference between WPA and WPA 2 are:
    - They are two kinds of internet connection.
    WPA uses dynamic key encryption , which means that the key is constantly changing and makes the invasion of a wireless network more difficult than WEP . WPA is considered one of the highest levels of wireless security for your network and is recommended if your devices support this kind of encryption . Newer routers offer WPA2 security . WPA2 is compatible with WPA , but offers higher security level . In fact, it meets the high standards of many government agencies . If the router and computer support WPA2 , this should be your choice.
    If you need any help or if you find some difficult setting up it you can contact Apple Support.
    I am sure that they can help you with that.
    I am sory for the delay. I holpe that you solve your issue.

  • Difference​s between User and built-in HDD password

    I wolud like to set a HDD password on my Satellite.
    But when I get inside BIOS to set HDD password, I see two HDD passwords,
    one says USER HDD Pasword and the other says Built-in HDD Password.
    Can you tel me the difference between them and/or what is each one.
    Thanks in advance for your help,
    Edward

    Cezzy, welcome to the forum,
    I am sorry, but regardless of the circumstances this subject is not allowed to be discussed here as stated in the forum rules
    No posts shall include instructions or directions intended to subvert security measures, including passwords, locking mechanisms, fingerprint scans, etc, nor shall any posts provide descriptions to the location of, nor direct links to content related to these topics.
    Thread locked.
    Thanks for understanding
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Z10 and Q10 frequently asking for Office 365 password

    I have an AT&T Z10, and a client has a Verizon Z10 and 2 Verizon Q10s.  Both of us use Office 365 as our email service.  With the lack of BB10 support in BBCS (Blackberry Cloud Service for Office 365) I was forced to set up all these devices on ActiveSync.  For the most part this is working OK.  However each user has either been prompted for the Office 365 password multiple times in a day, or they don't notice the prompt and the ActiveSync account is marked as invalid on the Accounts list in setup.
    I have looked everywhere within the Office 365 administration console and can find nothing related to asking for the password frequently.  I did find settings to control if the device has a password, but nothing related to the device prompting for the Exchange password.
    I am only annoyed by it, but my client is getting quite frustrated and is questioning whether they will bother upgrading their other 20 Blackberry devices to BB10s, or look at other devices.  Either some direction to solve this ActiveSync problem, or a likely date for BBCS to be BES10 would be helpful.

    My user with a Q10 has had this same issue with our Office 365 account. Seems to work fine for a few days then randomly stops getting new email. Go in and reenter his Office 365 password and all is well again... for a few days when it seems to lose it again.
    We have about 15 iPhone's of various flavor and 3 Android HTC One's with no issues on O365.

  • Bug between bootcamp and recent W7 update ?

    Hello,
    I have a Mac Pro with several hard drives, one being partionned:
    - Snow Leopard 10.6.8 kernel 64 bits
    - Window 7 64 bits, bootcamp 3.3
    This configuration has been running perfectly since more than 24 monthes, even with all the W7 updates.
    Today I installed some recent W7 updates, several dealing with .NET or IE, and two with so-called 'driver architecture V1.1'.
    After this update, being loggeg on W7 partition, when I try to copy a file from the OS X partition to some folder on the W7 partition, I have regurlarly a crash of W7 with a blue screen. I never had that before.
    I tried to uninstall the two W7 updates dealing with this pilot architecture V1.1, one is named 'kernel-driven ....', and one is named 'user-driven ...'. After removing these txo updates, everything is OK again. I was able to copy many files from OS X to W7 without crash or blue screen.
    Hence I suppose there is some bug between the Apple bootcamp drivers, especially the one which allows to mount and read HFS+ partitions, and this W7 update.

    I have investigated this bug furthermore, and read many forums. At the end, I am suspecting some bad interaction between these two W7 updates, and Kaspersky Internet Security 2013.
    I have :
    - set my network connexion to "automatic", in order it could be active duiring the "reboot / finishing installation" phase after W7 update
    - disactivated KIS 2013, and set the preferences in order it does not launch automatically during W7 boot.
    Then I installed the first suspected KB "infrastructure user-driven ...". After W7 reboot, no bug (bleu screen) during copying a file from the OS X partition towards the W7 partition. Then I reactived KIS, and reboot, some tests, no bug either.
    I did then the same procedure with the other suspected KB "insfrastructure kernel-driven ...". Same thing. No bug after reboot. Then I reactived KIS and reboot, no bug either.
    Hence it seems that Bootcamp in not the culprit, at least not by itself alone. Maybe only in combination with these two W7 updates, and with KIS 2013.
    Nevertheless, it's much more probable that there is some bad interaction between KIS 2013 and these two W7 updates. Performing these updates with both KIS 2013 disactivated (and not launched at boot), and the internet connexion set on "automatic", seems to prevent the problem.
    I need to perform some more intensive tests, but the bug seems to have disappeared, or at less is became fal less frequent.

  • What is(are) the difference(s) between iphoto and imovie apps for the imac as against ipad3?

    What is (are) the difference(s) between iphoto/imovie apps for the ipad as against imac?

    The Mac version would be more complex and be able to do more stuff, while the iPad version can do more simple things due to the lower processing power and the fact that it's an iPad.

  • Is there a difference between the Z10 and Q10, except the keyboard?

    Since now it was simple, BlackBerry had 3 lines left till now: Curve (lower), Torch (touch screen, no idea how powerful is the machine) and Bold (the strongest machine).
    What about the new Z and Q lines?
    Is there a difference , except the keyboard for the Q line or the machines really differ in power and features?
    Thanks

    My understanding is that the devices will be the same. The screen size will be different (1024 x 768 vs 720 x 720 pixels), but other than that and the obvious difference of virtual vs. physical keyboard, they should both be the same with the same features.
    I hope that info helps!
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • What is the difference in between folder and album in iPhoto?  Is a folder a part of an album or vice versa?

    What is the difference in iPhoto between a folder and an album? Are folders part of an album or vice versa?

    Or put another way:
    Albums organise Photos
    Folders organise Albums
    A Photo cannot be in a Folder, only in an Album.

Maybe you are looking for