BlackBerry Forums Support Community
              

Showing results 1 to 31 of 31
Search took 0.01 seconds.
Search: Posts Made By: pooja.a.maheshwari
Forum: Developer Forum 02-22-2010, 02:26 AM
Replies: 1
Views: 883
Posted By pooja.a.maheshwari
Where are you using this code? If it is in the...

Where are you using this code? If it is in the onClose method of your application, you need to make sure that the user closes the application (through menu) before trying to uninstall.
Forum: Developer Forum 02-22-2010, 02:22 AM
Replies: 1
Views: 948
Posted By pooja.a.maheshwari
You need to create your own derived class from...

You need to create your own derived class from ListField/ObjectListField class and override at minimum the keyChar & navigationClick methods of the same.

For list item descriptions, You need to...
Forum: Developer Forum 02-16-2010, 05:28 AM
Replies: 13
Views: 2,709
Posted By pooja.a.maheshwari
Problem is not clear for the above code. Please...

Problem is not clear for the above code. Please try to change your timer frequency value and post the results if you observe any change in the output.

However, to get a fast working timer task...
Forum: Developer Forum 02-15-2010, 04:35 AM
Replies: 2
Views: 2,393
Posted By pooja.a.maheshwari
Two possible reasons: 1. Either main class name...

Two possible reasons:
1. Either main class name is not mentioned in your build script, or if no settign is present in build file, then the main class(UiApplication) name is not same as the cod file...
Forum: Developer Forum 02-08-2010, 02:38 AM
Replies: 2
Views: 841
Posted By pooja.a.maheshwari
Please check that you are adding the field to...

Please check that you are adding the field to correct manager. Add the fields to the main manager, using mainScreenObject.getMainManager().add(Field).
Forum: Developer Forum 02-05-2010, 01:14 PM
Replies: 2
Views: 1,216
Posted By pooja.a.maheshwari
You should post this problem on bes-admin-corner:...

You should post this problem on bes-admin-corner:
BES Admin Corner - BlackBerryForums.com : Your Number One BlackBerry Community (http://www.blackberryforums.com/bes-admin-corner/)
Forum: Developer Forum 02-05-2010, 01:07 PM
Replies: 5
Views: 2,003
Posted By pooja.a.maheshwari
Yes, getString returns the policy database data. ...

Yes, getString returns the policy database data.

For the e-mails, BB doesn't seem to have a direct field for user-defined attribute/header fields. You may want to use the name field of Message for...
Forum: Developer Forum 02-05-2010, 04:01 AM
Replies: 5
Views: 2,003
Posted By pooja.a.maheshwari
For 1), getString and other get* provide you...

For 1), getString and other get* provide you value for specified IT Policy attribute.

For 2), an attachment may be useful without disturbing any user data.
Forum: Developer Forum 02-05-2010, 03:53 AM
Replies: 5
Views: 2,003
Posted By pooja.a.maheshwari
Can you clarify this more. Are you looking for...

Can you clarify this more. Are you looking for pushing default/user-defined attributes through IT Policy to the user's device and then based on those values, performing some classification?
Forum: Developer Forum 02-05-2010, 03:44 AM
Replies: 2
Views: 1,437
Posted By pooja.a.maheshwari
Use ApplicationMenuItem.

Use ApplicationMenuItem.
Forum: Developer Forum 02-05-2010, 03:41 AM
Replies: 8
Views: 1,561
Posted By pooja.a.maheshwari
Adding custom menu items to pre-existing...

Adding custom menu items to pre-existing applications should be done using ApplicationMenuItem as you were using previously.

On reviewing your previous code, the problem of screen not getting...
Forum: Developer Forum 02-04-2010, 08:20 AM
Replies: 8
Views: 1,561
Posted By pooja.a.maheshwari
You should be using MenuItem class for creating...

You should be using MenuItem class for creating menu items just like in the sample code. Next you must also call addMenuItem on the application and define a run for the MenuItem.

You are using...
Forum: Developer Forum 02-04-2010, 03:09 AM
Replies: 2
Views: 2,066
Posted By pooja.a.maheshwari
May try a hack around this problem: Register...

May try a hack around this problem:

Register for AlertListener/AlertListener2 and once you get midiDone or audioDone alert, then you can check the time elapsed since the audio was started versus...
Forum: Developer Forum 02-04-2010, 02:45 AM
Replies: 5
Views: 1,150
Posted By pooja.a.maheshwari
I think you may not add radio listener to already...

I think you may not add radio listener to already installed BB applications.

Mark (Sohm), can you please confirm this. thanks.
Forum: Developer Forum 02-04-2010, 02:42 AM
Replies: 6
Views: 1,095
Posted By pooja.a.maheshwari
In addition to using onFocus, you may want to set...

In addition to using onFocus, you may want to set a dirty flag in your initial screen through the topmost screen in case there was a change made that needs refresh of the list on initial screen.
Forum: Developer Forum 02-04-2010, 02:37 AM
Replies: 4
Views: 1,103
Posted By pooja.a.maheshwari
please use blackberry instead of bb in the...

please use blackberry instead of bb in the package name.

thanks.
Forum: Developer Forum 02-04-2010, 02:33 AM
Replies: 4
Views: 1,103
Posted By pooja.a.maheshwari
The module name for search app is...

The module name for search app is net_rim_bb_search, so the package name should be net.rim.bb.search. You may use Class.forName for getting the instance of this class.
Forum: Developer Forum 02-04-2010, 02:19 AM
Replies: 8
Views: 1,561
Posted By pooja.a.maheshwari
sample code: ...

sample code:

addMenuItem(new MenuItem("Open Sample Screen", 0, 100)
{
public void run()
{
...
Forum: Developer Forum 02-03-2010, 02:29 AM
Replies: 4
Views: 1,378
Posted By pooja.a.maheshwari
Set the value of RIM_MIDLET_FLAG appropriately...

Set the value of RIM_MIDLET_FLAG appropriately (system + autostart -> 3) in order to get your application running in background.
Forum: Developer Forum 02-03-2010, 02:18 AM
Replies: 2
Views: 2,010
Posted By pooja.a.maheshwari
Sample code: class Log { private...

Sample code:

class Log
{
private static final String APP_Name = "myApp";
private static final long GUID = 0x5ddd3452d88822e2L;


static
{
Forum: Developer Forum 02-03-2010, 02:10 AM
Replies: 4
Views: 1,103
Posted By pooja.a.maheshwari
Yes, its possible. Please use:...

Yes, its possible. Please use: net.rim.blackberry.api.invoke.Invoke class.
You need to use Invoke.invokeApplication(APP_TYPE_SEARCH) for invoking the search application from your application.
Forum: Developer Forum 02-03-2010, 02:05 AM
Replies: 5
Views: 1,150
Posted By pooja.a.maheshwari
There are various APIs available for the...

There are various APIs available for the information you require. Please check the APIs under the classes: DeviceInfo, RadioInfo, ApplicationManager.getVisibleApplications for the getting the device...
Forum: Developer Forum 02-03-2010, 01:47 AM
Replies: 3
Views: 1,278
Posted By pooja.a.maheshwari
Steps to get the blackberry emulator up on your...

Steps to get the blackberry emulator up on your system:
1. Install JDK 1.4 or 1.5.
2. Install Blackberry JDE as per the device JDE version.
3. Run the MDS and then the simulator through...
Forum: Developer Forum 02-02-2010, 08:36 AM
Replies: 2
Views: 1,211
Posted By pooja.a.maheshwari
Did this solution help you? Please respond.

Did this solution help you? Please respond.
Forum: Developer Forum 02-01-2010, 05:37 AM
Replies: 2
Views: 1,211
Posted By pooja.a.maheshwari
You can know by following these steps: 1....

You can know by following these steps:
1. ApplicationManager.getVisibleApplications() returns ApplicationDescriptor[].
2. ApplicationManager.getForegroundProcessId() returns foreground app's...
Forum: Developer Forum 01-11-2010, 06:31 AM
Replies: 1
Views: 4,468
Posted By pooja.a.maheshwari
You may reduce the brightness levels for status &...

You may reduce the brightness levels for status & trackball LEDs using the net.rim.device.api.system.LED setConfiguration API.

Also, you can use net.rim.device.api.system.Backlight setBrightness &...
Forum: Developer Forum 01-11-2010, 06:06 AM
Replies: 1
Views: 1,440
Posted By pooja.a.maheshwari
Enable/disable Data services programmatically

Is it possible to enable/disable data services programmatically? Any help is appreciated.

thanks,
Pooja
Forum: Developer Forum 01-08-2010, 06:47 AM
Replies: 1
Views: 1,911
Posted By pooja.a.maheshwari
Closing a running application programmatically

Is there any way through which we can close a running application programmatically. Any help is appreciated.

thanks,
Pooja
Forum: Developer Forum 11-25-2009, 04:02 AM
Replies: 4
Views: 1,562
Posted By pooja.a.maheshwari
Thanks for taking a look. Let me reframe the...

Thanks for taking a look.
Let me reframe the problem:
1. The application is a background listener implemented as a system module, also set for auto-start by using RIM-MIDLET-FLAG value 3.
2. The...
Forum: Developer Forum 11-24-2009, 05:29 AM
Replies: 4
Views: 1,562
Posted By pooja.a.maheshwari
This is a blocking issue for us right now. Can...

This is a blocking issue for us right now. Can someone take a look and suggest probable solutions. Mark(RIM), any clues to this? thanks.
Forum: Developer Forum 11-23-2009, 04:12 AM
Replies: 4
Views: 1,562
Posted By pooja.a.maheshwari
auto-start issue with 8110

Hi all,

We have auto-start application which works in background all the time. It works fine for all the devices (with various OS versions) installed so far. But 8110 gives issues when we install...
Showing results 1 to 31 of 31

 
Forum Jump

1pcs Mitsubishi Memory Card Q2MEM-8MBA New In Box picture

1pcs Mitsubishi Memory Card Q2MEM-8MBA New In Box

$212.20



1pcs used TSXMFPP128K Memory Card picture

1pcs used TSXMFPP128K Memory Card

$175.00



Memory Blister Pack Box for DDR DIMM Module Anti Static - Lot of 6 18 35 100 200 picture

Memory Blister Pack Box for DDR DIMM Module Anti Static - Lot of 6 18 35 100 200

$17.95



Desktop Memory Case Tray Case for PC DDR DRAM RAM DIMM Modules - 2 fits 100 New picture

Desktop Memory Case Tray Case for PC DDR DRAM RAM DIMM Modules - 2 fits 100 New

$20.50



NEW Mitsubishi A1SNMCA-8KE Memory Cassette picture

NEW Mitsubishi A1SNMCA-8KE Memory Cassette

$151.62



Ergonomic Gaming Chair for Adults, Comfortable Computer Chair for Heavy People, picture

Ergonomic Gaming Chair for Adults, Comfortable Computer Chair for Heavy People,

$208.44







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.