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...
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?
...
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?
...
can anyone help for adding video to blackberry simulator
...
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 ...
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...
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.
...
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 ...
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
...
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...
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 ...
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...
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.
...
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...
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...
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 ...
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?
...
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
...
Any directions or pointers?
...
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...