Enable generics in blackberry jde 4.5.0
Hi, When i compiled my application in blackberry it shows the following error. generics are not supported in -source 1.3 (use -source 5 or higher to enable generics) how to solve this ...
Hi, When i compiled my application in blackberry it shows the following error. generics are not supported in -source 1.3 (use -source 5 or higher to enable generics) how to solve this ...
Hi i am newbie to Blackberry environment. I dont know how to create msn messenger in BB. Is there any tutorial to refer? Please help me.... ...
Hi everyone, I have the following Java ME code that I'd like to port to BlackBerry: Image imgAll = Image.createImage("/fontDigits_200x20.png"); imageDigits = new Image[10]; for(int i = 0; i < imageDigits.length; i++) imageDigits[i] = Image.createImage(imgAll, i * 20, 0, 20, 20, Sprite.TRANS_NONE); Basically, it's one image of ten...
I'd like my user to take a picture as an attachment by using the built in camera. Is there someway to invoke the camera on a button press and save the resulting taken picture? ...
Hi All I'm currently starting in the web mobile development along with come trench brothers. I've done some things for iPhone and Android using jQuery and JQTouch. Recently we've been playing with the idea to also support BlackBerry devices to an application we are developing (which promises a lot of rework). Our initial tests with the ...
Hello, Can anyone please help me out. I have developed an application to send SMS to various mobile devices (referring to Blackberry JDE Samples). Now, the problem is that when i click on the "Send Message" menu item, amount for sending the SMS is deducted from my account but the message is not delievering to some of the mobile device...
i want to put a menu at the bottom of the blackberry, menu items added to horizontal field manager... how to place the menu at the bottom of the screen... ...
Does anyone have a duration field they have created for Blackberry? The field needs to allow the user to select days, hours, minutes; needs to build in OS 4.5 and support touch interface manipulation (on the Storms). ...
Is there any way to connect to an already paired device in j2me using blackberry? ...
I am trying to redirect blackberry users to my mobile site by doing: # redirect for blackberry users RewriteCond %{HTTP_USER_AGENT} ^.BlackBerry.$ RewriteRule ^(.*)$ http://www.domain.com/m/ [R=301] in my .htaccess, but nothing happens when I try to access from the device, I've already deleted cache and cookis and nothing works. I hav...
Hi All, I am developing an app for BB having GPS capability. But the problem is the GPS criteria varies as per the carriers and Devices. So does any one knows the different set criteria which can be used? I tried to use the different links BB support forums but I not getting any assured way which should work for every case. Thanks in Ad...
How do I convert a byte array to a base64 encoded string using the BlackBerry plug-in for Eclipse? ...
I want to create a blackberry application which displays a custom map with many markers. Each marker should be clickable and when clicking on it, more information will display. Also, the map should allow the user to navigate around. ...
I am working on an application in which I need to show all of the address book contacts. Please give me a code snippet or link which will help me do that. ...
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 can not use the toolbar lib even with sdk 6.0 I am using 6.0 Can anyone help me .. i m stuck here ...
Hi Guys, I'm trying to install the BB Component pack 4.6.1 (Eclipse 3.4.1 +Windows Vista) but I got an error message: An error occurred while collecting items to be installed No repository found containing: net.rim.eide.feature.componentpack4.6.1/org.eclipse.update.feature/4.6.1.27 if I check the repository page: http://www...
Hello. I have a mobile site that works on every browser I test it with. Though on a Blackberry the entire page seems to align to the left rather than in the center. Is there a specific way to make it align to the middle like everything else? Can you use conditionals the way you would with IE? Do I need to target the body tag instead? A...
Here is my class, very simple: public class SelectYesNoArea extends Manager { BitmapField yes; BitmapField no; DateField date; Calendar cal; public SelectYesNoArea(long style){ super(style); Bitmap bgPic = Bitmap.getBitmapResource("divBackgrounds.png"); Background bg = Background...
Hello all. I am trying to set a BitmapField's image using the setImage() method. It works fine, but when I try to do it on a thread it throws a IllegalStateException and it doesn't work. Is there any workaround for this. Thanks in advance. ...