BlackBerry Forums Support Community
              

Showing results 1 to 35 of 35
Search took 0.03 seconds.
Search: Posts Made By: Californium
Forum: Developer Forum 09-11-2007, 11:13 AM
Replies: 2
Views: 3,348
Posted By Californium
The code looks fine. Where are you using this...

The code looks fine. Where are you using this class? If you add this to a mainscreen, it has a VerticalFieldManager with a scrollbar already. You may be seeing the scrollbar from there.
Forum: Developer Forum 08-09-2007, 11:19 AM
Replies: 5
Views: 5,598
Posted By Californium
The problem probably occurs because TreeField...

The problem probably occurs because TreeField does not implement Persistable. All primitive types already implement Persistable which is why they are not a problem.



public class MyTreeField...
Forum: Developer Forum 08-08-2007, 10:13 AM
Replies: 5
Views: 1,705
Posted By Californium
Try using net.rim.device.api.system.SMSParameters...

Try using net.rim.device.api.system.SMSParameters and getSCAddress()
Forum: Developer Forum 08-07-2007, 10:14 AM
Replies: 5
Views: 1,705
Posted By Californium
Use javax.wireless.messaging.MessageConnection...

Use javax.wireless.messaging.MessageConnection and textmessages instead of datagrams.
Forum: Developer Forum 07-06-2007, 11:05 AM
Replies: 2
Views: 1,944
Posted By Californium
Thanks for the suggestions Rose. OutputStream...

Thanks for the suggestions Rose. OutputStream ignores the top 24-bits so it won't work. However, DataOutputStream can output integers. Although I am able to output the raw data, I am now encountering...
Forum: Developer Forum 07-05-2007, 12:58 PM
Replies: 2
Views: 1,944
Posted By Californium
Output Image/Bitmap Raw Data

Greetings,


I would like my program to email an image file that I have created. Currently, it is a Bitmap and I am able to obtain the raw data through getARGB. However, I am unsure about how to...
Forum: Developer Forum 07-03-2007, 11:31 AM
Replies: 2
Views: 1,068
Posted By Californium
You could create a Dialog with type Dialog.D_OK....

You could create a Dialog with type Dialog.D_OK. It has only one option.

Otherwise, you can create a Dialog with just cancel as follows:


String choices[] = new String[]{"Cancel"};
int...
Forum: Developer Forum 06-27-2007, 09:59 AM
Replies: 15
Views: 8,868
Posted By Californium
Thank you for the information. I will try that...

Thank you for the information. I will try that out!


Regards,
Californium


Note: If anyone is curious, here's the code to display the image.

/*
Forum: Developer Forum 06-26-2007, 12:42 PM
Replies: 15
Views: 8,868
Posted By Californium
That seems to give an error: FRIDG: could...

That seems to give an error:

FRIDG: could not find file:///store/samples/pictures/BBTiles-Orange.png
Forum: Developer Forum 06-26-2007, 12:28 PM
Replies: 2
Views: 2,328
Posted By Californium
http://www.blackberryforums.com/developer-forum/81...

http://www.blackberryforums.com/developer-forum/81117-playing-ringtones-4-2-a.html

The example includes several alarm sounds:

Alarm_Antelope.mid
Alarm_EarlyRiser.mid
Alarm_Electronic.mid...
Forum: Developer Forum 06-26-2007, 12:22 PM
Replies: 15
Views: 8,868
Posted By Californium
Displaying Sample/User Pictures in Application

Greetings,


I am trying to load a picture from either the preloaded sample picture folder or the user picture folder and display it within my application running on OS4.2.x. I am able to extract...
Forum: Developer Forum 04-05-2007, 03:41 PM
Replies: 3
Views: 1,182
Posted By Californium
You probably need to repaint the screen. ...

You probably need to repaint the screen.


protected boolean navigationMovement(int dx, int dy, int status, int time)
{
_dbgX = dx;
_dbgY = dy;
_dbgStatus = status;

invalidate();
Forum: Developer Forum 04-04-2007, 04:37 PM
Replies: 3
Views: 1,182
Posted By Californium
navigationMovement works fine for detecting left...

navigationMovement works fine for detecting left and right. The "dx" parameter indicates left (negative) or right (positive) motion.
Forum: Developer Forum 04-02-2007, 10:51 AM
Replies: 6
Views: 5,968
Posted By Californium
Yes, the com_rim_demores and etc projects must be...

Yes, the com_rim_demores and etc projects must be compiled to created a cod file. This may be done within the JDE by building the respective projects.

I usually just load the .cod from the...
Forum: Developer Forum 03-15-2007, 10:22 AM
Replies: 1
Views: 1,382
Posted By Californium
Yes that's possible. Just set the style of the...

Yes that's possible. Just set the style of the horizontal manager to NO_HORIZONTAL_SCROLL|NO_HORIZONTAL_SCROLLBAR and the vertical manager to VERTICAL_SCROLL|VERTICAL_SCROLLBAR. You may have to use a...
Forum: Developer Forum 02-19-2007, 01:02 PM
Replies: 15
Views: 2,324
Posted By Californium
Ah, my mistake. I thought you simply wanted...

Ah, my mistake. I thought you simply wanted transparencies within an application with multiple screens.

For something that hovers over the homescreen and every application, I do not believe...
Forum: Developer Forum 02-13-2007, 12:49 PM
Replies: 15
Views: 2,324
Posted By Californium
You can draw the background image for the...

You can draw the background image for the application first and then draw the transparent pictures on top.

I've attached a simple program that demonstrates this method. A circle moves back and...
Forum: Developer Forum 02-08-2007, 03:19 PM
Replies: 15
Views: 2,324
Posted By Californium
While I don't believe you can have a transparent...

While I don't believe you can have a transparent Screen object on top of a background one, you can try creating a function that simply draws transparent icons on top of the current screen. The...
Forum: Developer Forum 12-19-2006, 02:13 PM
Replies: 1
Views: 999
Posted By Californium
You can try extending a screen and then...

You can try extending a screen and then overwriting the packBackground function.


protected void paintBackground(Graphics graphics) {
Bitmap icon =...
Forum: Developer Forum 12-15-2006, 11:31 AM
Replies: 11
Views: 8,204
Posted By Californium
Glad that it worked out! The problem with...

Glad that it worked out!

The problem with creating a custom application from scratch for sending data from the PC to the device is that the USB protocol is not known. I'm also not sure if it's...
Forum: Developer Forum 12-14-2006, 05:12 PM
Replies: 11
Views: 8,204
Posted By Californium
Are both the VC++ USB client application and...

Are both the VC++ USB client application and usbdemo blackberry program set to channel "R"? Also make sure that no other programs are using the USB port such as the desktop manager since that will...
Forum: Developer Forum 12-12-2006, 07:20 PM
Replies: 2
Views: 948
Posted By Californium
Alrighty, thanks for the help :)

Alrighty, thanks for the help :)
Forum: Developer Forum 12-11-2006, 12:19 PM
Replies: 3
Views: 5,097
Posted By Californium
When creating the BitmapField, also set it as...

When creating the BitmapField, also set it as focusable.

BitmapField(Bitmap bitmap, long style) with style being Field.FOCUSABLE.
Forum: Developer Forum 12-05-2006, 04:28 PM
Replies: 5
Views: 4,770
Posted By Californium
It does seem to be a signing issue. Did you use...

It does seem to be a signing issue. Did you use the RIM code signing tool after building your application and before loading it onto the device?
Forum: Developer Forum 11-27-2006, 06:34 PM
Replies: 2
Views: 948
Posted By Californium
Exponentiation/Power

Greetings,


I noticed that the API does not support Math.pow or Math.exp. Is there some method to implement either of these functions? Preferably e^(double)


Thanks,
Californium
Forum: Developer Forum 11-07-2006, 04:02 PM
Replies: 16
Views: 10,052
Posted By Californium
Has anyone else had problems with the rollover...

Has anyone else had problems with the rollover icon working only sometimes? I believe my problem may be due to the incorrect rollover icon index.

From the API, it mentions to look at the RAPC...
Forum: Developer Forum 11-03-2006, 11:55 PM
Replies: 16
Views: 10,052
Posted By Californium
I'm trying to follow the guide myself but I'm...

I'm trying to follow the guide myself but I'm wondering about how you can set the rollover icon and start the program without having two application icons on the home screen.


The guide mentions...
Forum: Developer Forum 10-26-2006, 02:24 PM
Replies: 2
Views: 1,029
Posted By Californium
Yes that is probably a problem due to using the...

Yes that is probably a problem due to using the 4.2.0 JDE. I had a similar issue with playing mp3s.

You want to use the 4.1.0 JDE if you're planning to put the application on a handheld with OS...
Forum: Developer Forum 10-26-2006, 02:21 PM
Replies: 2
Views: 1,425
Posted By Californium
Are the fields within the horizontal field...

Are the fields within the horizontal field manager focusable as well?
Forum: Developer Forum 10-23-2006, 10:17 AM
Replies: 3
Views: 861
Posted By Californium
If security APIs are required, you need to have...

If security APIs are required, you need to have the files signed before they will run on the handhelds. The stickied topic "Useful Links for New Mobile Programmers + BlackBerry SDK!" should have the...
Forum: Developer Forum 10-23-2006, 10:15 AM
Replies: 2
Views: 2,558
Posted By Californium
VerticalFieldManager _vfm = new...

VerticalFieldManager _vfm = new VerticalFieldManager(Manager.VERTICAL_SCROLLBAR|Manager.VERTICAL_SCROLL)

should provide you with scrolling ability and the arrows to indicate whether you can scroll...
Forum: Developer Forum 09-21-2006, 02:57 PM
Replies: 1
Views: 3,661
Posted By Californium
BlackBerry USB mode of operation

Greetings,


I have a question about the operating mode of the USB for the BlackBerry. I have read that the BlackBerry operates in slave mode. Is it possible to switch it to master mode?...
Forum: Developer Forum 09-18-2006, 03:04 PM
Replies: 11
Views: 8,204
Posted By Californium
Thank you guys for the info about getting it to...

Thank you guys for the info about getting it to run on the simulator. It worked well for me.


Incase others are having problems with running the demo on the simulator, here's what I did to get...
Forum: Developer Forum 09-18-2006, 02:19 PM
Replies: 6
Views: 5,968
Posted By Californium
The problem was solved for me by first loading...

The problem was solved for me by first loading the resource cod files (com_rim_demores.cod and com_rim_demores__en.cod) to the BlackBerry and then the demo program.
Forum: Developer Forum 08-25-2006, 05:53 PM
Replies: 6
Views: 5,968
Posted By Californium
USB/Serial Question

Greetings,


I am new to writing software for BlackBerry and have a few questions.

I have been trying to run the usbdemo that came with the BlackBerry JDE 4.1.0 and I have the...
Showing results 1 to 35 of 35

 
Forum Jump

OEM Dell XPS 8910 8920 8930 Alienware Aurora R5 R6 R7 Front Cooling Fan 7M0F5 picture

OEM Dell XPS 8910 8920 8930 Alienware Aurora R5 R6 R7 Front Cooling Fan 7M0F5

$13.81



NEW DELL OEM REPLACEMENT PROJECTOR LAMP FOR 4220 4320 GENUINE ORIGINAL  picture

NEW DELL OEM REPLACEMENT PROJECTOR LAMP FOR 4220 4320 GENUINE ORIGINAL

$198.22



Dell OEM Latitude Rugged Extreme 7404 GPS Antenna Junction Cable Cable KMX0M picture

Dell OEM Latitude Rugged Extreme 7404 GPS Antenna Junction Cable Cable KMX0M

$2.95



Dell OEM Latitude Rugged Extreme 7404 Docking Connector Circuit Board picture

Dell OEM Latitude Rugged Extreme 7404 Docking Connector Circuit Board

$14.95



DELL 330-6581 3306581 725-10229 OEM LAMP FOR 1510X 1610HD 1610X  - Made By DELL picture

DELL 330-6581 3306581 725-10229 OEM LAMP FOR 1510X 1610HD 1610X - Made By DELL

$39.98



Genuine OEM Dell 2375 B2375dnf B2375dfw 110V Fuser fixing N41P2 sku 724-BBCI picture

Genuine OEM Dell 2375 B2375dnf B2375dfw 110V Fuser fixing N41P2 sku 724-BBCI

$94.99







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