blackberry-jde

Error : Detected background switch for net_rim_bb_ribbon_app(58) who has NO tunnels open - defocus NOT called

Hi There Im working in eclipse with bb plugin and the problem is when i click in my app then simulator freezes and I can not do anything. I tried to do something but its still the same And Also I app have a background component (THREAD), here i leave the code when i call the method app have a background component public void callbac...

Blackberry OS 6 Development Environment

Will development for the Blackberry Torch (and other selected OS6 blackberries) be done through a new version of the standard RIM JDE or is there a new environment or focus on the Eclipse side of things? ...

Asking BlackBerry PIN to use inside the app

Hello, Is there anyway to access the BlackBerry PIN inside my app? I would like to have a way to give certain devices unique access to certain things. If the PIN will not work, is there some other sort of unique identifier that would work and I can access? ...

how to add video in blackberry simulator

can anyone help for adding video to blackberry simulator ...

Can someone check/revise my understanding of Blackberry development options?

I'd like my Blackberry devices to get and possibly set data to the server, and am a little confused by all the options: RIM-Push/Pap-Push. Use any library that is able to compose a HTTP GET request to the MDS-CS service (not MDS-IS). This is a one way operation from the server to the device. RIM-Push (Push a URL and or shorcut to a ...

How to authenticate a user in blackberry against an online database?

I am fairly new to Blackberry development and need help in terms of having a simple application. User enters a login/password which is authenticated on a MYSQL database on website. Once authenticated, he/she is shown a listbox/select boxthat is pre populated with some values. Once the user selects a value and hits submit, an email is gen...

how to use global Event listener?

hi, i want to communicate between two applications, whenever blackberry messenger is open then at that time my application can notified that,this blackberry messenger is started. how could i do with the use of global event listener.. thanks a lot. ...

Can't I get my app to work with click and touch (within same project)?

i have developed an application that will basically run on all versions of the blackberry unit (ver 4.5 and above). however, i have noticed that navigationClick() is not consumed with a touch blackberry. i know that i have to use touchEvent method instead, however, my eclipse project is set up to use jde 4.5. so is there any way of just ...

How to send an email once a user completes a form in blackberry application?

I have built a blackberry application that allows a user to fill in information in some fields. Upon submit I want an email to be generated to me with that information filled. What is the best and simplest way of doing that? Thank You ...

ActiveRichTextField and Smileys (Smilies) on BlackBerry

Browsing the JavaDoc for the Blackberry, I see one reference to smileys, under ActiveRichTextField.getText() Retrieves text string from this field. If smileys exist in this field, this method first "decodes" them, and then returns the result. I am wondering how I can enable this "smileys" behavior, to get the ActiveRichTextFi...

Functionality similar to 'Send Address' in native BlackBerry Browser

Right now, I can send users to the compose email application, with a pre-filled email body containing the payment URL. This is done simply with an appropriate mailArgs object and a call to Invoke.invokeApplication(Invoke.APP_TYPE_MESSAGES, mailArgs); However, I notice that in the built-in web browser there is functionality to 'send ...

blackberry java app throwing error while initiating bluetooth

I am trying to initiate a bluetooth device search in my java app. The agent.startInquiry seems to start but an exception is thrown from the catch block, and then I get an alert from deviceDiscovered() saying device discovered1. Is there is an exception, why is that deviceDiscovered is getting called? Can anyone please let me know if I a...

Rhodes app signing for BlackBerry

I read that BlackBerry signing keys can be only installed on one PC. I'm compiling my Rhomobile Rhodes app on one PC. But the BlackBerry signing keys are installed on another PC. What I need to do in order to sign the app on another PC. PS: I've set bbsignpwd in rhobuild.yml. ...

clicking the sym button does not bring up the symbol popup.

I have an EditField in my program. whenever i press the 'sym' key on the keypad the menu comes up instead of the usual symbol page. I am not using keyode method. My program only has a trackwheel click which handles button clicks. protected boolean trackwheelClick(int status, int time) { if(_remMefld.isFocus()){ if(!remebe...

Blackberry JDE component Package 4.6.1 not visible after disabling Vista UAC

I'm running Eclipse version 3.4.1 on a Windows Vista machine. Currently I've installed: BB JDE plug-in for eclipse ver.1.0.0.67 BB Component Pack 4.6.1 BB component pack 4.5.0.16 Usually I work with the UAC enabled and everything was fine till when I needed to sign the application. Everytime I selected the "Request Signatures" functi...

Unable to align fields in black berry development

I am having some challenges aligning fields. I have tried using custom layout managers and just am not having a consistent layout where fields are aligned properly. I have written the following layout manager and even though it aligns items in left column properly, it fails on right column. /* * GridFieldManager.java * * © <your ...

No BlackBerry JRE is installed ?

I installed the blackberry plugin for Eclipse. When I click on new->project-> Blackberry->Blackberry Project When I type project name it says "No BlackBerry JRE is installed. Please click "Configure JREs..." link to configure a BlackBerry JRE" Can anyone help please? ...

Blackberry Push Notifications (Local Notifications)

Can you set up Notifications on the blackberry without a server? I wish to use the equivalent of Push Notifications, but I don't really need a server to decide when to push as it's really just calendar pre-set dates. Any help thoughts /comments most appreciated Cheers ~David ...

How to display RSS feeds in a blackberry using the api?

Any directions or pointers? ...

Unable to send email from BlackBerry - JDE4.7

Store store = Session.getDefaultInstance().getStore(); Folder[] folders = store.list(Folder.SENT); Folder sentfolder = folders[0]; // Create message. Message msg = new Message(sentfolder); // Add TO Recipients. Address toList[] = new Address[1]; try { toList[0]= new Address("[email protected]", "Some Email"); } catch(AddressException e...