BlackBerry Forums Support Community
              

Showing results 1 to 50 of 70
Search took 0.06 seconds.
Search: Posts Made By: plevintampabay
Forum: Developer Forum 08-11-2011, 09:35 AM
Replies: 0
Views: 2,325
Posted By plevintampabay
can't set volume of speaker player on CDMA devicesThe normal code to set the speaker

The normal code to set the speaker volume, which works on GSM devices is not working on CDMA devices.


VolumeControl volumeControl = (VolumeControl)this.player.getControl( "VolumeControl" );
if(...
Forum: Developer Forum 06-02-2011, 09:35 AM
Replies: 0
Views: 1,461
Posted By plevintampabay
Unable to install breakpoint error

I'm using the Eclipse SDK 3.6.1.M20100909-0800xxx65279; .

My program has several projects (modules) and hundreds of files.

I'm building with the 4.6.0.23 SDK and debugging in the simulator on...
Forum: Developer Forum 09-10-2010, 10:30 PM
Replies: 6
Views: 1,839
Posted By plevintampabay
No, the compiler generates individual JAD files -...

No, the compiler generates individual JAD files - that is, a JAD file is generated for each COD. But when an application is composed of many CODs you need a composite JAD file - one JAD file that...
Forum: Developer Forum 09-10-2010, 05:43 PM
Replies: 6
Views: 1,839
Posted By plevintampabay
Thanks for the suggestion. The problem with...

Thanks for the suggestion. The problem with using a JAD file is the need to make the JAD file, which requires the SHA and Size of each module. I'm assuming the JAD that the javaloader wants is the...
Forum: Developer Forum 09-10-2010, 02:03 PM
Replies: 6
Views: 1,839
Posted By plevintampabay
Good find hrbuckley. Thanks :-( Too bad...

Good find hrbuckley.
Thanks :-(

Too bad that guy didn't address his own suggestion of creating a group in his code and putting his modules in there, since that is on my "to-try" list.
Forum: Developer Forum 09-10-2010, 09:36 AM
Replies: 6
Views: 1,839
Posted By plevintampabay
can Javaloader put modules into a group?

I have 7 modules in my application. In order for all of them to use the permissions set by the first module that runs (the startup module) I understand that they all need to be in a group. When...
Forum: Developer Forum 08-11-2010, 02:14 PM
Replies: 0
Views: 858
Posted By plevintampabay
Developer Developer plevintampabay Posts: 80 Registered: 02-27-2009 0 do CDMA device

I have an AT&T 9000 that when I connect it to the PC asks if I want mass storage mode. This is great because I can copy files to/from the BlackBerry in this mode.

I also have a Verizon 9630...
Forum: RIM Software 08-11-2010, 02:12 PM
Replies: 6
Views: 3,862
Posted By plevintampabay
Where is the Media Manager in Desktop 6.0.0.40 ??????

Last night the BlackBerry Desktop Manager wanted to do an update. I've done these updates in the past so I thought it would be safe.

This new version - 6.0.0.40 (Released August 3, 2010 Bundle...
Forum: Developer Forum 05-24-2010, 03:37 PM
Replies: 0
Views: 1,060
Posted By plevintampabay
how can I debug with Eclispse 3.5 on a device?????

I recently switched from Eclipse 3.4 to 3.5 and the associated new RIM plugins.

Now, everytime I start a debugger session for the device, the device is reset and then Eclipse says it can not...
Forum: Developer Forum 01-05-2010, 09:02 AM
Replies: 0
Views: 1,423
Posted By plevintampabay
Arrow BlackBerry J2ME developer needed

I hope it is ok to post this type of request in this forum. If not, I am truly sorry.

A Florida based company providing solutions dedicated to protecting communications, corporate intellectual...
Forum: Developer Forum 12-04-2009, 02:25 PM
Replies: 0
Views: 856
Posted By plevintampabay
Major bug in Eclipse and BlackBerry plugin

Has anyone else run into this problem? and if you have, is there a way to prevent it from happening?

I have one Workspace in Eclipse with several BlackBerry projects.
Then I have another...
Forum: Developer Forum 12-01-2009, 07:27 PM
Replies: 3
Views: 1,701
Posted By plevintampabay
Actually, thinking about it a bit more, there...

Actually, thinking about it a bit more, there must be some way for a ping to be done, even without the TCP stack, since there is that Ping command in the WiFi Options menu. And that Ping command...
Forum: Developer Forum 12-01-2009, 07:17 PM
Replies: 3
Views: 1,701
Posted By plevintampabay
A somewhat expected (though not desired)...

A somewhat expected (though not desired) response. Thanks Doug.
Forum: Developer Forum 12-01-2009, 04:08 PM
Replies: 3
Views: 1,701
Posted By plevintampabay
how to ping from a program?

Is it possible to send a ping (and get the echo response) from a Java program on the BlackBerry?

(Please not that I said "from a program". Using the ping command in the WiFi options would not be...
Forum: Developer Forum 11-07-2009, 02:51 PM
Replies: 2
Views: 2,447
Posted By plevintampabay
What I discovered is that the DNS lookup is done...

What I discovered is that the DNS lookup is done internally. In Windows we typically take a domain name, do a lookup to get an IP and then open a socket to that IP. In the BB, just open a socket to...
Forum: Developer Forum 09-10-2009, 10:05 PM
Replies: 2
Views: 1,781
Posted By plevintampabay
Yes I have. That code only discusses how to...

Yes I have. That code only discusses how to write programs that run on the BlackBerry simulators, not how to interpret the packet written to the port by the simulator.

As for the simulator...
Forum: Developer Forum 09-10-2009, 09:41 PM
Replies: 2
Views: 1,781
Posted By plevintampabay
what is the format of the packet written for SMS to the simulator ports?

I would like to write a program that will run on my PC that can send and receive SMS messages to the BlackBerry simulators. The simulators can read and write ports with (what appears) to be UDP...
Forum: Developer Forum 09-03-2009, 07:24 PM
Replies: 2
Views: 2,447
Posted By plevintampabay
How can I do a DNS Lookup in Java?

The BlackBerry API does not have java.net.InetAddress.getByName(). Yet the WiFi Diagnostics can do a DNS Lookup.

So how do I do the DNS Lookup from Java code?

Thanks,
Paul
Forum: Developer Forum 07-30-2009, 09:22 AM
Replies: 2
Views: 1,972
Posted By plevintampabay
Yes, thanks.

I should have followed up on this post. I had a discussion with someone on another forum about this. See here...
Forum: Developer Forum 07-29-2009, 10:19 PM
Replies: 2
Views: 1,972
Posted By plevintampabay
how to force jad file to be re-generated on each build

I am using Eclipse with the BlackBerry plugin. Each time I build the active BlackBerry project (Alt+B) it appears that Eclipse re-writes the jad file (the timestamp on the file changes), but the...
Forum: Developer Forum 07-23-2009, 10:36 PM
Replies: 1
Views: 4,151
Posted By plevintampabay
I got this one solved - hit Alt+B or Project |...

I got this one solved -
hit Alt+B or Project | Build Active BlackBerry Configuration.
Forum: Developer Forum 07-23-2009, 06:37 PM
Replies: 0
Views: 976
Posted By plevintampabay
CodeModuleManager.saveNewModule is not working in the simulator

I have a trivial program that creates and writes a small program module and then saves it. When I run this program in the simulator (8820) saveNewModule() returns an error code of 1. This value...
Forum: Developer Forum 07-23-2009, 06:36 PM
Replies: 1
Views: 4,151
Posted By plevintampabay
how to generate cod files in Eclipse w/BB plugin?

I am using Eclipse with the BB plugin. When I build the project it only complies the java files into class files. It does not make the cod and jad files. So far the only way I have found to make...
Forum: Developer Forum 07-22-2009, 11:17 AM
Replies: 2
Views: 1,147
Posted By plevintampabay
Thanks shraddha294 - you are on the right track. ...

Thanks shraddha294 - you are on the right track.

I have this problem solved now. Take a look at this thread for the solution -

Please help with OTA deployment problem - Java Development -...
Forum: Developer Forum 07-21-2009, 08:42 PM
Replies: 2
Views: 1,147
Posted By plevintampabay
Please help with OTA deployment problem

Hi,

I am trying to deploy my application (for the first time) using an Over-the-air approach.

First let me mention that I developed this app using the BB plugin for Eclipse. It generated...
Forum: Developer Forum 07-07-2009, 08:54 AM
Replies: 40
Views: 141,886
Posted By plevintampabay
Wow - I had hoped they would have fixed that by...

Wow - I had hoped they would have fixed that by now. You could try downloading the plugin files directly from the RIM web site. However even there, many people have had problems downloading their...
Forum: Developer Forum 04-19-2009, 01:53 PM
Replies: 5
Views: 1,594
Posted By plevintampabay
I had asked the same question on the RIM BB...

I had asked the same question on the RIM BB Forum. It was suggested by someone to override the TextField and call MoveFocus (or Navigate??- don't recall full method name right now). One person said...
Forum: Developer Forum 04-14-2009, 09:28 AM
Replies: 2
Views: 865
Posted By plevintampabay
Thanks for the reply Snowkitty. The point is,...

Thanks for the reply Snowkitty. The point is, that if the build fails, the plugin should not proceed to open the simulator.

Do you get a pop up if there are build errors?
(Not just errors in...
Forum: Developer Forum 04-13-2009, 06:16 PM
Replies: 5
Views: 1,594
Posted By plevintampabay
When I say "select" I mean that the string (or...

When I say "select" I mean that the string (or part thereof) is both highlighted and will be captured by the framework if the user does a copy. Further more, any typing would immediately replace the...
Forum: Developer Forum 04-13-2009, 03:15 PM
Replies: 5
Views: 1,594
Posted By plevintampabay
how can I select text in a TextField programatically?

I have a TextField and after setting its contents (with setText()) I want to select part of it. How can this be done from the TextField API?
Forum: Developer Forum 04-13-2009, 09:09 AM
Replies: 2
Views: 865
Posted By plevintampabay
Anyone have this experience with the BB plugin for Eclipse?

If the source files have build errors, the simulator will still start and it will be running the last good build - with no indication that the build had failed.

That support guy (at the BB dev...
Forum: Developer Forum 04-13-2009, 09:03 AM
Replies: 40
Views: 141,886
Posted By plevintampabay
very limited plugin support

AmitG,
You could try posting your problem on the BlackBerry forums (http://supportforums.blackberry.com/rim/board?board.id=java_dev). There is a BB employee who "may" respond in a few days. I...
Forum: Developer Forum 03-22-2009, 08:33 PM
Replies: 1
Views: 876
Posted By plevintampabay
Wow - problem solved. I had been working in a...

Wow - problem solved. I had been working in a debugging view in Eclipse, which did not show that there were compiler errors in other files in the project I was modifying. The BB plugin allowed me...
Forum: Developer Forum 03-22-2009, 05:59 PM
Replies: 1
Views: 876
Posted By plevintampabay
Clicking Menu button does nothing - Pls HELP

I have a custom Screen extended from FullScreen.
I also have a custom Manager extended from Manager.
I add my custom Manager to my Screen, and then I add Fields to my Manager.

Many things are...
Forum: Developer Forum 03-22-2009, 02:13 PM
Replies: 40
Views: 141,886
Posted By plevintampabay
mafian911 - I don't know why you are having...

mafian911 - I don't know why you are having problems with String and Object.

But I should mention to folks that I am now using BB's 1.0 plugin for Eclipse. For the most part it has been working...
Forum: Developer Forum 03-13-2009, 06:48 PM
Replies: 1
Views: 2,145
Posted By plevintampabay
how to stop tons of console output from the simulator?

I am using the BB simulator (for the 8820) with Eclipse and the latest plugin.

In my code, I have calls to System.out.println(), whose output goes to the Console window in Eclipse.

But the...
Forum: Developer Forum 03-11-2009, 04:04 PM
Replies: 0
Views: 1,041
Posted By plevintampabay
problem with resource file creation with Eclispe plugin (v1.0 Gold)

I am have trouble with creation of a resource file using the Blackberry plugin for Eclipse version 1.0 (latest).

1) I click on the project which is the main project in the workspace, right mouse...
Forum: BES Admin Corner 03-08-2009, 04:47 PM
Replies: 12
Views: 8,738
Posted By plevintampabay
I too am looking for this program. Yes it used...

I too am looking for this program. Yes it used to be free and now the download link doesn't work any more. If you have a copy of it, can you please send me a copy as well. Thanks. Paul
Forum: Developer Forum 03-05-2009, 09:04 PM
Replies: 2
Views: 2,248
Posted By plevintampabay
Thank you for the reply zechariahs. Your's is...

Thank you for the reply zechariahs.
Your's is an excellent reply.
To be completely accurate to what I wanted, one would have to implement a TreeWalker - something to traverse the nodes of the DOM,...
Forum: Developer Forum 03-03-2009, 08:45 PM
Replies: 2
Views: 2,248
Posted By plevintampabay
how do I write an XML DOM to a String or File?

I need to write an org.w3c.dom.Document to a String. I have a feeling I'll be using net.rim.device.api.xml.jaxp.XMLWriter, but the small example given in the API page on how to use that class, uses...
Forum: Developer Forum 03-02-2009, 11:15 AM
Replies: 0
Views: 990
Posted By plevintampabay
bug in BlackBerry plugin for Eclipse v1.0.0.50

In an Eclipse project, I will often use the Link Source feature (in the Java Build Path) to reference source files located elsewhere on my file system (but not under the current workspace). This was...
Forum: Developer Forum 03-01-2009, 09:40 AM
Replies: 4
Views: 1,884
Posted By plevintampabay
Thanks for the reply Dougsg38p. I get the...

Thanks for the reply Dougsg38p. I get the impression that this approach would pass one SMS message to me. My current application needs access to all of them, without user intervention. I also need...
Forum: Developer Forum 02-28-2009, 12:29 AM
Replies: 0
Views: 818
Posted By plevintampabay
looking for plugin for Eclipse

Does anyone have valid installation files for the BB plugin for Eclipse? I've spent 3.5 hours downloading zip files from BB only to get corrupted zip files.
Thanks,
Paul
Forum: RIM Software 02-27-2009, 01:17 PM
Replies: 65
Views: 7,492
Posted By plevintampabay
Provide API for code to read/write/delete the SMS...

Provide API for code to read/write/delete the SMS Inbox and other SMS saved folders.
Forum: Developer Forum 02-27-2009, 11:44 AM
Replies: 4
Views: 1,884
Posted By plevintampabay
Since I've posted this question, I've read...

Since I've posted this question, I've read several other threads in this forum saying that it is not possible to read the SMS Inbox.

Does anyone have another opinion (backed by facts) on this?
...
Forum: Developer Forum 02-27-2009, 11:40 AM
Replies: 2
Views: 1,741
Posted By plevintampabay
I found it

Dougsg38p - thank you for the reply. I just tried this.

It goes to the Output tab in JDWP.

This works when I put the println() calls in the compiled code.
Is there any way to do it from the...
Forum: Developer Forum 02-26-2009, 11:18 PM
Replies: 0
Views: 1,533
Posted By plevintampabay
Can I prevent received SMS from going to the Inbox

I got the SMS sample program working, and have it receiving SMS messages. But I see that the messages my program receives, are also written to the SMS Inbox. I read somewhere that it is possible to...
Forum: Developer Forum 02-26-2009, 11:15 PM
Replies: 4
Views: 1,884
Posted By plevintampabay
Is it possible to read/write saved SMS messages?

The Messages application on the BlackBerry maintains a database of previously received SMS messages, in the SMS Inbox.

Is it possible to read the messages that are saved in the SMS Inbox, from a...
Forum: Developer Forum 02-26-2009, 03:57 PM
Replies: 2
Views: 1,741
Posted By plevintampabay
can not display String or array values

I am debugging on an actual device.
When I try to display the value of a String, I get

com.sun.jdi.ObjectCollectedException occurred retrieving type

I read the post BlackBerry Support...
Forum: Developer Forum 02-06-2009, 05:29 PM
Replies: 40
Views: 141,886
Posted By plevintampabay
updates to the original article

Its been 7 months since I've touched the BlackBerry. I'm back on that project, but I might get pulled off again in a week (hopefully only for a month).

I'm also on a new computer, so I had to set...
Showing results 1 to 50 of 70

 
Forum Jump

FANUC Servo Amplifier A06B-6240-H208 picture

FANUC Servo Amplifier A06B-6240-H208

$3199.00



MITSUBISHI Amplifier MR-J2S-200B MRJ2S200B AC Servo Drive New in box picture

MITSUBISHI Amplifier MR-J2S-200B MRJ2S200B AC Servo Drive New in box

$463.00



1pcs Fanuc Servo Amplifier A06B-6077-H002 New by DHL or EMS picture

1pcs Fanuc Servo Amplifier A06B-6077-H002 New by DHL or EMS

$1089.00



 MITSUBISHI Amplifier MITSUBISHI MR-J2S-200B MITSUBISHI MRJ2S200B AC Servo Drive picture

MITSUBISHI Amplifier MITSUBISHI MR-J2S-200B MITSUBISHI MRJ2S200B AC Servo Drive

$485.00



USED SKAR AUDIO SK-M5001D 500W RMS ULTRA COMPACT CLASS D MONOBLOCK CAR AMPLIFIER picture

USED SKAR AUDIO SK-M5001D 500W RMS ULTRA COMPACT CLASS D MONOBLOCK CAR AMPLIFIER

$94.99



Tone Generator, Amplifier Probe Tool for RJ-11 picture

Tone Generator, Amplifier Probe Tool for RJ-11

$69.12







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