|
More site info...
Developer Forum | Forum profile
|
|
Forum profile page for Developer Forum on http://www.blackberryforums.com.
This report page is the aggregated overview from a single forum: Developer Forum, located on the Message Board at http://www.blackberryforums.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Developer Forum" on the Message Board at http://www.blackberryforums.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Developer Forum:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
74
|
239
|
672
|
|
Post:
|
162
|
453
|
1,221
|
|
|
Developer Forum Posting activity graph:
|
Top authors during last week:
user's latest post:
Application Development with .NET
Published (2009-11-26 14:55:00)
You could write .net web services, and consume them on the Blackberry by writing a Java program that uses JSR172 or KSOAP. You might also write a web app that that is accessed from the BB browser.
user's latest post:
Pushing data to the blackberry?...
Published (2009-11-26 12:02:00)
Quote: Originally Posted by RyanRitten Thanks for the reply. Ya, we do have a BES and MDS running where I work. Any links you can provide would be great Here you go: http://blog.fupps.com/documents/blac...ble-framework/ Quote: Does the Alliance membership cost money? Not sure what that is... Yes, it does. You can find links to information at blackberry.com
user's latest post:
How secure are App World Apps?
Published (2009-11-18 22:42:00)
Hi Doug, I had posted a query there but had not received a response until now. Finally someone said to check up *Dynamic Licensing* in the forum and i think i found what i was looking for. Now i better understand what you have been saying all along Thanks. -TRS
user's latest post:
how to display Text vertically
Published (2009-11-18 07:44:00)
i think its very simple you can go for custom field implementation like vLabelField. Code: public class vLabelField extends Field { String text; public vLabelField(String t) { text = t; } protected void paint(Graphics graphics) { int y=0; int oldcolor = graphics.getColor(); graphics.setColor(Color.BLACK); for(int i=0;i<text.length();i++){ graphics.drawText(text.substring(i,i+1), 0, y); y=y+getFont().getHeight(); }...
user's latest post:
server application
Published (2009-11-26 03:58:00)
In what ways i can communicate with server.
user's latest post:
Is MainScreen compulsory in...
Published (2009-11-23 04:10:00)
Quote: Originally Posted by Dougsg38p Just to chime in here, and I mean this in a friendly way, you could have answered your own question in 10 minutes by coding up a simple hello-world app using FullScreen. As a matter of fact - I did. But I cannot test on each and every device\OS out there and the main reason for asking was to get a more-or-less official answer like a spec 'cause I couldn't find such info in developer guide.
user's latest post:
Cannot run the Buffered Playback...
Published (2009-11-24 06:17:00)
Can someone help me to buffer a mp3 file on a server using the Blackberry buffered pllayback demo app provided with the jde? I hav loaded it in the simulator. And my mds is started but I m unable to play the audio. There is no error but it doesnt play. And yes it does save the local file with the name of the remote file but can't retrieve data from the url. The code looks all fine. Thanks
user's latest post:
code signing keys and development
Published (2009-11-23 16:46:00)
The original development on our first project was done by a previous developer who is no longer with my company. I am the new developer with a completely new machine and all previous sigtool files have been lost.
|
|
|
|
Latest active threads on Developer Forum::
Started 4 days, 7 hours ago (2009-11-24 07:31:00)
by Dougsg38p
You need to ask a better question.
Started 1 day, 23 hours ago (2009-11-26 14:55:00)
by Dougsg38p
You could write . net web services, and consume them on the Blackberry by writing a Java program that uses JSR172 or KSOAP.
You might also write a web app that that is accessed from the BB browser.
Started 3 days, 3 hours ago (2009-11-25 11:31:00)
by hrbuckley
You need an MDS server, usually part of the Blackberry Enterprise Server to push data. That you you can use Web Signals, which requires Alliance membership. If you have a BES, and are using LAMPs (Linux, Apache, MySQL, Perl), or the equivalent under Windows I can give you the link to some excellent software.
Started 2 days, 8 hours ago (2009-11-26 06:46:00)
by ronaldg
NOTE2: The delay is in between this message
Started 3 days, 3 hours ago (2009-11-25 11:37:00)
by hrbuckley
AFAIK the application must keep track of, and handle re-pushing as appropriate. The best technical description of what is happening, along with sample code (although for Perl), is here .
Started 3 days, 3 hours ago (2009-11-25 11:42:00)
by hrbuckley
This this not the same question you asked here ?
Removing the battery will not clear data from the Persistent Store.
Started 4 days, 5 hours ago (2009-11-24 09:14:00)
by harraisss
is it possible to invoke default balckberry clock into my application?
|
|
Hot threads for last week on Developer Forum::
Started 1 week, 1 day ago (2009-11-20 08:48:00)
by Dougsg38p
There is no rule that says you have to use MainScreen - it is provided as a convenience since it wires up some of the more typical screen features, like a title bar and various "default" menu options.
Started 5 days, 6 hours ago (2009-11-23 08:49:00)
by Dougsg38p
You need to override getPreferredHeight() and set it to your font size + margin.
Started 5 days ago (2009-11-23 14:20:00)
by Dougsg38p
If you already have the code-signing keys, you just keep using them - you don't need to get new keys for every project.
Started 1 week, 2 days ago (2009-11-19 10:14:00)
by Dougsg38p
The amphersand '&' is a reserved character in an XML or HTML file - it needs to be encoded using the standard HTML entities, like &
Started 4 days, 5 hours ago (2009-11-24 09:28:00)
by hrbuckley
Yes it will. By default a Blackberry activated on a BES has access to the network that the BES resides on.
Code:
(StreamConnection) Connector.open("socket://<host>:<port>");
will open a socket connection the the host and port specified, the host will be resolved by the machine running the BES. This kind of communication constitutes the bulk of my development work and is what ...
Started 4 days, 7 hours ago (2009-11-24 07:31:00)
by Dougsg38p
You need to ask a better question.
Started 5 days, 7 hours ago (2009-11-23 06:58:00)
by harraisss
I think there in no API to getCurrentTime in JDE4. 2...
go for some other higher version JDE..
Started 4 days, 5 hours ago (2009-11-24 09:14:00)
by harraisss
is it possible to invoke default balckberry clock into my application?
Started 4 days, 9 hours ago (2009-11-24 05:29:00)
by pooja.a.maheshwari
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.
Started 4 days ago (2009-11-24 14:01:00)
by Dougsg38p
I assume this is deploying OTA?
First off, you cannot deploy an app compiled under 4.3 on a device running a lower version of the OS. Does your 8703 run OS 4.3? (probably not).
Second, you should rename your COD file to the ZIP extension, and see if you can open/extract all of the individual COD files. Once the code or data segments exceed 64K, the compiler will begin generating ...
|
|