BlackBerry 10 not until March are you FREAKING kidding me?

It is a total waste of PRECIOUS BlackBerry marketing dollars to hype a Phone during the Superbowl that won't be available for another month.  Advertising Vaporware won't win customers back.
You guys did it right for UK.  Hyped the phone and you had it on Sale the next day.  Why you didn't limit this "launch" event to UK and Canada is beyond me.
I been lugging around my slow and outdated phone for sometime.  This is a complete slap in the face to the dedicated BlackBerry user and it's not going to impress iPhone or Droid users.
Great job you pissed off one of your best fans!

Whose idea was it to release it in the U.S. in March?  Would you like to chance a guess?
I'll give you a hint:  It wasn't BlackBerry's idea, it was the major U.S. carriers that decided it so perhaps your negativity is misdirected.  Had it been up to BlackBerry, the phones would be on the streets worldwide today (as they already are in the U.K.......as decided by the carriers there)..
Cheers. 
- If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

Similar Messages

  • FormsCentral retiring in July???!!!  Are you freaking kidding me?  My clients use this feature all the time.  What do you suggest I do now?  What service do I go with that is comparable to it?  I need help with this asap!

    FormsCentral retiring in July???!!!  Are you freaking kidding me?  My clients use this feature all the time.  What do you suggest I do now?  What service do I go with that is comparable to it?  I need help with this asap!

    I would suggest checking out http://www.logiforms.com. They have really good PDF support for both hosted PDF's and generating PDFs. You can:
    populate PDF forms from a web form submission
    Merge multiple PDF's together using conditional logic
    Include uploaded images in the generated PDF
    Get Electronic signatures on PDF's
    Use conditional logic when creating PDF's
    Convert HTML to PDF. You design in HTML and CSS and use form field wildcards and generate the PDF
    More of the PDF features are explained here:
    PDF Form Creator | PDF Form Maker | V3.Logiforms.com
    They are also offering a 25% discount to anyone coming from Forms Central...

  • The type or namespace name 'SPSite' could not be found (are you missing a using directive or an assembly reference?)_

    I am creating a Winforms application. I need to upload and download a file from Sharepoint.
     I have added reference to Microsoft.Sharepoint.Client.
    Below is the code to upload file:
    using System.IO;
    using Microsoft.SharePoint;
    private void Button_Click_1(object sender, RoutedEventArgs e)
                String fileToUpload = @"C:\Test.txt";
                String sharePointSite = "https://myshapoint";
                String documentLibraryName = "Test";
                using (SPSite oSite = new SPSite(sharePointSite))
                    using (SPWeb oWeb = oSite.OpenWeb())
                        if (!System.IO.File.Exists(fileToUpload))
                            throw new FileNotFoundException("File not found.", fileToUpload);
                        SPFolder myLibrary = oWeb.Folders[documentLibraryName];
                        // Prepare to upload
                        Boolean replaceExistingFiles = true;
                        String fileName = System.IO.Path.GetFileName(fileToUpload);
                        FileStream fileStream = File.OpenRead(fileToUpload);
                        // Upload document
                        SPFile spfile = myLibrary.Files.Add(fileName, fileStream, replaceExistingFiles);
                        // Commit 
                        myLibrary.Update();
    But i get the error "The type or namespace name 'SPSite' could not be found (are you missing a using directive or an assembly reference?)"
    I am not sure what else I am supposed to do here.

    Hi,
    If you want to develop a WinForm application to be only used in SharePoint Server, we can use Server-Side Object Model(use Microsoft.Sharepoint.dll) to achieve it. 
    If you want to use the WinForm application to be used both in Server side and Client Side, I suggest you use .Net Client Object Model(use Microsoft.Sharepoint.Client.dll) to achieve it.
    Here are two links for your reference:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/c357e3c7-37e9-4ded-83aa-a57beae0b0e4/how-to-upload-download-files-to-sharepoint-2013?forum=sharepointdevelopment
    http://msdn.microsoft.com/en-us/library/ff798388.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • The type or namespace name 'SQLite' could not be found (are you missing a using directive or an assembly reference?)

    Trying to get sql server compact up and running. I connected to a sqlite database and atuo generated the model.cs code.
    however, I get the following error.
    Error    1    The type or namespace name 'SQLite' could not be found (are you missing a using directive or an assembly reference?)    C:\Users\kenny\Documents\Visual Studio 2013\Projects\WindowsFormsApplication2\WindowsFormsApplication1\Model.cs  
     3
    Any help is greatly appreciated. Please provide some detail as I am novice. 
    Thanks

    Ok so I got the past that problem. I had to add the package System.Data.SQLite Core in Manage NuGet.
    Then I changed the auto-generated code "using SQLite" to "using System.Data.SQLite".
    But now I have a new problem, it says "System.Data.SQLite.SQLiteConnection' does not contain a definition for 'CreateTable' "
    Here is the code
    //This code was generated by a tool.
    //Changes to this file will be lost if the code is regenerated.
    //using SQLite;
    using System;
    using System.Data.SQLite;
    using System.Data.SQLite.EF6;
    namespace WindowsFormsApplication2
    public class SQLiteDb
    string _path;
    public SQLiteDb(string path)
    _path = path;
    public void Create()
    using (SQLiteConnection db = new SQLiteConnection(_path))
    db.CreateTable<servers>();
    public partial class servers
    public Int64 server_name { get; set; }
    public Double cpu_usage { get; set; }
    Any ideas why CreateTable is not available?

  • The type or namespace name 'IBM' could not be found (are you missing a using directive or an assembly reference?)

    please help on below error 
    Compilation Error
    Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
    Compiler Error Message: CS0246: The type or namespace name 'IBM' could not be found (are you missing a using directive or an assembly reference?)
    Source Error:
    Line 27: using System.Web.Services;
    Line 28: using System.Net;
    Line 29: using IBM.WMQ;
    Line 30: using System.DirectoryServices.AccountManagement;
    Source File: c:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\NBO\LogComplaint.aspx.cs   
    Line: 29

    Hello,
    >>using IBM.WMQ
    It seems you are using third party dll namespace reference in your project but that dll is not being added in project. Please get the IBM.WMQ dll and add it first in your current visual studio project by right click on project-->add reference.
    You can place this dll in GAC or can directly add to project as suggested by jaydeep.
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Why does this message keep popping up while in my email. This form will be sent in a way that is not secure. Are you sure you want to send it?

    For the last week or so everytime I go into yahoo mail I keep getting this drop down irrating message that says:  This form will be sent in a way that is not secure. Are you sure you want to send it?
    No matter how I answer it, it still keeps coming up. Is this a problem with Safari?

    You can turn that off if you want ..
    From your Safari menu bar top of your screen click Safari > Preferences  then select the Security tab.
    Deselect:   Ask before sendinga a non-secure form from a secure a secure website

  • Outrage leads to Olive Branch: Jobs not Exactly Contrite Are You Satisfied?

    I think that this is a step in the right direction and KUDOS to ALL of us in the Apple community who wrote letters to Jobs and or iphone feedback @ apple instead of just ******** and moaning on this board.
    With that out of the way, notice the thinly veiled realization in Job's wording that he crossed the line by offering a price cut to the skeptics and left the true Apple core (pun intended) to twist in the wind. I think that this has been a lesson in Apple consumer activism for Jobs and a not so subtle hint that he can't play the same slash and burn game that other cell phone companies have played in the past. Apple users expect, and rightfully so, better.
    Kudos to Jobs for reacting to outrage, although a $100 credit is more like an Olive twig then a branch as it only gurantees that you'll spend that "refund" on an Apple product near you - it is a stumble in the right direction, nonetheless.
    Now would be a good time to launch a major software update making the iphone compatible with the WiFi Itunes store, and ...ad2p would be nice while you're at it.
    The question is, are you the enthusiast Apple'sumer who jumped at the chance to be the first on the block to snag that $599 revolution satisfied with Jobs concession?
    Message was edited by: BigDPC

    Well, you can exact your revenge, soon. The next hot sexy gadget will be released by the end of this month, as it is now, IT IS OVERPRICED, and A RIP-OFF. So you can start spreading the gospel and try to educate other people to not buy the ipod touch, and try to talk some sense to them that they will be grossly disappointed coming January when the announcement of the next ipod will come (take that you holiday buyers!!). Let me see if you can do it.... LOL.
    Maybe all these angry consumers will be able to make the ipod touch launch D.O.A.... hah hah hah hah... sorry I don't think that is gonna happen. If you buy something, and made that decision to own electronic products, you should be aware that the second you made the purchase, get ready to be disappointed because after the credit card been charged, your new toy is officially obsolete, outdated, and expired. That is just the way it is.
    The refund is a great effort, a damage control, and a nice gesture. It is good to know that at least Apple listen (and watch their stock plummeted), and yes, people, MONEY (and stock) TALKS!! So all of you disgruntle Apple consumers, you know what to do, don't buy ipod touch Resist if you can.... (ironically, the people who owns iphone probably can, lol).

  • HP Smart Web Printing only works on Explorer not Firefox 4 are you going to update this as I do not want to change back to Explorer.

    I just downloaded the HP Smart Web Printing which is free for those who purchase printers. It provides ability to select and clip or print web pages. It works on Explorer but not Firefox 4. There are many such questions on forums in both HP and Firefox. I love Firefox and would hate to have to go back to Explorer.
    Firefox 4 also does not appear to have "Send to OneNote" either. I used to be able to do this in Firefox 3.

    SEE 72 PEOPLE WITH THE PROBLEM AND 13 NEW. LOOK ON YOUR OWN WEBSITE AND GOOGLE TO FIND THE MANY, MANY OF US WITH THIS PROBLEM.

  • The type or namespace name 'Microsoft.SqlServer.DacServices' could not be found (are you missing a using directive or an assembly reference

    Microsoft.SqlServer.DacServices dll is referenced in a unit test project and the compiler is showing an error - The type or namespace name 'DacServices' could not be found. 
    Although I referenced the dll file in the project visual studio is still errors out as a missing library. I have also tried downloading the file which has the library from http://www.microsoft.com/en-us/download/details.aspx?id=40735
    by installing Microsoft Data-Tier Application Framework for SQl Server.
    Please shade light on this.
    Thanks,
    Manny

    Hi Manny_R,
    According to your description and error message, before you installing Data-Teir Application Framework components, we need to verify if you choose the right version of Data-Tier Application Framework. For more information, see:
    http://alexw.co.uk/2013/05/cannot-find-dac-assembly-microsoft-sqlserver-dac-dll/
    In addition, Microsoft SQL Server  Data-Tier Application Framework requires Microsoft SQL Server System CLR Types, and Microsoft SQL Server Transact-SQL ScriptDom (SQLSysCLRTypes.msi and SQLDOM.msi). You need to install both SQLSysCLRTypes.msi
    and SQLDOM.msi.
    There is a detail about data-tier application (DAC) features in SQL Server 2012, you can review it.
    http://msdn.microsoft.com/en-us/library/cc879339(v=sql.110).aspx
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • This form will be sent in a way that is not secure. Are you sure you want to send it?

    This happens on the same website that I use for work every day, multiple times a day as the system automatically logs me off.  HOW CAN I TURN THIS OFF!!!!!!  ARRRGH! 

    Is there another way to turn off this warning?  I am using Safari 6.0 and in the preferences under security, there is no option to turn this off.  Super annoying.

  • Are you freakin' kidding me??

    The Scenario:
    JUST installed Leopard Server onto clean Mac mini hard drive. Setup two User accounts (one to use and one just in case). Repaired Disk Permissions. Rebooted. Ran Software Update, let it install a slew of things, including 10.5.2 update. Rebooted. Repaired Disk Permissions. Rebooted. Ran Software Update again. Let it install a handful of new updates. Rebooted. Repaired Disk Permissions. Rebooted.
    At Login Window I get the freakin' window shaking its head that it doesn't like either my username or its password. Tried the second User account that I set up "just in case", didn't like it either. Finally logged in as "localadmin" and am typing this here now.
    What. The. Heck?
    This is the 5th time Leopard Server has done this to me. And, as you can see, I did NOTHING out of line this time (not that I did the other 4 times...) and I get the "can't login" problem almost immediately.
    Is it just me or does Leopard Server suck?

    I did an update to 10.5.3 using the stand-alone installer and, after the delay and restarts Apple warned about, I was presented with the Blue Screen Of Death (BSOD). After an hour and confirmation of no hard drive head movement for at least two minutes, I forced a shut down with the power button. Restarted fine and web back on line. Not a confidence-inspiring update. Actually, it's the first time I've seen Server updates do this.
    Then there's Mail. It's now even worse than in 10.5.2. It did not work in 10.5.0, or 10.5.1, or 10.5.2. I was so hoping that Apple would finally make this service work. No such luck. 'Upgrading' turned off SMTP incoming, and there's no way to get it on. Every time I click the button and Save, the button simply unchecks itself.
    In my 26 years as an exclusively Apple user (bigot, actually), I've NEVER seen Apple release software as insanely, woefully buggy as Leopard Server. I've seen a few iffy Apple software products, but never anything even approaching this. I'm told that Tiger Server is way better, but my licence is for Leopard.
    The upgrade notes do not speak of ANY of the bugs I've reported in Mail since 10.5.0, and there's (naturally) no indication the the upgrade may kill Mail, which it does in my case.
    Where does one go to get one's money back, and where does one send the invoice for all the time Apple has wasted by non-consensually making me a beta (alpha) tester of the (ahem) 'bullet-proof, enterprise-level' product? Does Apple not understand that our businesses are at stake, because we base our businesses on reliable, enterprise capable software? Given my experiences with Leopard Server, I just don't see how Apple can claim Server is remotely suitable for enterprise use.
    Grrrr.

  • Android Sub- Are you %#@$ing kidding?

    I log on to the Android Dev console and see that I can now offer a subscription.  Yay.  I create the subscription and auto fill the pricing for other countries.  Easy enough.  I publish it and then see that I CANNOT EDIT OR DELETE THE SUB.  I call Adobe Support, which tells me NOT to auto fill (for some reason I did not comprehend).
    How does stuff like this happen?  Why does following instructions get me in trouble?
    Does anyone know how to remove a subscription from Android's console (or whether it's advisable?)

    I've tested this in the console.
    The 'autofill' doesn't really come into play here, whether I use it or not does not change the fact subscriptions do not have a 'Delete' or 'Unpublish' button as in-app purchases do.
    I'm afraid the only way I found was to delete the APK file and re-upload!
    Not nice but probably a question to ask in Google circles more than here ... although any advice from fellow users is welcome.

  • The type or namespace name 'VisualStudio' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)

    we are using VS 2013. i have created new build definition and run that created build its getting failed and showing error message as "The type or namespace name 'VisualStudio' does not exist in the namespace 'Microsoft' (are you missing an assembly
    reference?)" and "The type or namespace name 'WinComboBox, UITestControl, WinTitleBar.....etc' could not be found (are you missing a using directive or an assembly reference?)". in the error log is showing the error number are "error CS0234
    & error CS0246". 
    Actually i have created build for automation execution from MTM lab environment. i have to assign the build to the test plan. once the build is passed , i will assign to the test plan and run with automation options. 
    if i build the solution its getting successfully build. but when i run the created build definition it show the error message's.  
    Could you guide me how to resolve the above error's ? 
    Thanks in Advance...

    Hello Divakar Ponnada,
    I have checked the error CS0234 from here:
    http://msdn.microsoft.com/en-us/library/0e92xd7b.aspx
    It means your project cannot find the proper reference to your type "Visual Studio" from the namespace Microsoft.
    May I ask this question, does your build definition means something like the following blog described?
    http://www.asp.net/web-forms/overview/deployment/configuring-team-foundation-server-for-web-deployment/creating-a-build-definition-that-supports-deployment
    "A build definition is the mechanism that controls how and when builds occur for team projects in TFS. "
    If that is the problem, may I ask whether your build agent is in the same machine where you build your application?
    The build agent will first search for the reference from its local GAC and if it cannot find it, the error like you said will reports. Please manually build your project from your build agent machine to see the result, or install Visual Studio to your build
    agent machine. In that way I think your problem may fixed.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • TS1702 help, are you having the same problem? iPad 2 calendar, can't get the month of March, can get days in March, but not month view. Any suggestions, thank u.

    help, are you having the same problem? iPad 2 calendar, can't get the month of March, can get days in March, but not month view. Any suggestions, thank u.

    Hi melbernai - not sure if you've solved this problem yet. I had the exact same problem recently with my 2nd Gen iPod Nano. I solved it yesterday by simply updating iTunes to the most recent version, after which I could get rid of the register screen. The only other thing I needed to do to add my custom playlists was select "Manually manage music" on the screen for my iPod, since it had been in an automatic synching mode since the problem occurred.

  • Is there a way to play video clips that use adobe flash and if not when are you going to resolve your problem with them ? I won't buy another apple product until you do and I Know I,m not the online.

    Is there a way to play video clips that use adobe flash and if not when are you going to resolve your problem with them ? I won't buy another apple product until you do and I Know I,m not the only one.

    Use the search feature and type in Flash and there are like thousands of posts on this.
    You seem to think you are addressing Apple with your post.  This is a user forum and we are all users just like you.

Maybe you are looking for

  • ORA-19007: Schema - does not match expected T0090.xsd for non xsd owner

    I have registered an xsd in /home/divload/xsd/T0090.xsd. User "prmt" is the owner of this resource. User prmt can schemavalidate xml against this xsd just as it is now. However, I have package code in "prmt_app" user account that will actually do the

  • CD Drive only loads OS Install DVD

    I have recently installed OS X 10.4.10 from a bona fide disk and since then my drive won't load any software other than the os. I am attempting to load Norton Antivirus and Firewall software but when the disks are inserted the drive just makes a coup

  • Business Area - Substitution Rule?

    Hi Gurus, I need help with creating a substitution rule for a business area. The scenario is as follows- We have multiple company codes in different regions that sell their product system wise to company code XXXX. We are using one business area YYYY

  • WSM00101 error: The specified keystore file /domains/wlsaas/config/fmwconfig/default-keystore.jks cannot be found

    In JCS 13.2, same endpoint testing get this error starting last week oracle.wsm.common.sdk.WSMException: WSM-00101 : The specified keystore file /domains/wlsaas/config/fmwconfig/default-keystore.jks cannot be found; it either does not exist or its pa

  • Adobe AIR Output using Unipane Template - Problem in Publishing

    Hi, I have created new Adobe AIR browser based help using the Unipane template. When I generate the output, I specify a folder path in the Start Page field and click Finish. I can see the output excatly I have prepared when I select the first topic i