<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:media="http://search.yahoo.com/mrss/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" version="2.0">
 
  <channel>
    <title>BMD Blackberry Guides</title>
    <link>http://www.bmdwireless.com</link>
    <language>en-en</language>
    <pubDate>Tue, 17 Apr 2012 23:56:54 GMT</pubDate>

<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/BlackberryGuides" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="blackberryguides" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by/2.0/</creativeCommons:license><item>
 <title>Write a client push application Blackberry Java Development</title>
 <description>Send and receive data on a separate thread so that you do not block the main event. Determine if a BlackBerry device is in a wireless coverage area. Create code to check if the IPPP service book can be routed. if serviceUID, IPPP null Create code to check that the wireless transceiver is on and that data coverage is on. return RadioInfo.getState RadioInfo.STATE_OFF amp amp RadioInfo.getNetworkService amp RadioInfo.NETWORK_SERVICE_DATA 0 Invoke Connector.open String , specifying http as the...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=pUQgFXJMm1s:colNYiBF8As:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=pUQgFXJMm1s:colNYiBF8As:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/write-a-client-push-application.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/write-a-client-push-application.html</guid>
 <pubDate>Tue, 17 Apr 2012 23:56:54 GMT</pubDate>
</item>
<item>
 <title>Drawing to the Screen Using the Graphics Context BlackBerryDevelopment</title>
 <description>The basic interface for displaying anything to the BlackBerry device's screen is the net.rim.device.api.ui.Graphics class. It's used under the hood by pretty much all elements of the BlackBerry user interface, and it gives you the tools to do anything you've seen in any BlackBerry application's user interface. If you're going to be doing any kind of user interface work with BlackBerry applications, you should get very familiar with the Graphics class. Each instance of Graphics is associated...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=lazdbWsBwYQ:RGbfCzwCdXw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=lazdbWsBwYQ:RGbfCzwCdXw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/drawing-to-the-screen-using-the-graphics-context.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/drawing-to-the-screen-using-the-graphics-context.html</guid>
 <pubDate>Wed, 11 Apr 2012 03:14:04 GMT</pubDate>
</item>
<item>
 <title>Create a RIM push request Blackberry Java Development</title>
 <description>To push data to a single BlackBerry device user using RIM push, send an HTTP POST request using http lt mdsServer gt lt web server listen port gt push DESTINATION lt destinati lt uri gt lt headers gt lt co lt destination gt is the destination PIN or email address lt port gt is the destination port number lt uri gt is the URI sent to the BlackBerry device lt headers gt consists of HTTP headers lt content gt is a byte stream To push content to multiple recipients using RIM push, include multiple...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Ne4M5Hs6bBQ:FD121cNzmOo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Ne4M5Hs6bBQ:FD121cNzmOo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/create-a-rim-push-request.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/create-a-rim-push-request.html</guid>
 <pubDate>Fri, 06 Apr 2012 03:09:36 GMT</pubDate>
</item>
<item>
 <title>Adding a Header Background BlackBerryDevelopment</title>
 <description>We want to put a black background behind the header image and align the image to the left. The second change is easy simply change the style Field.FIELD_HCENTER to Field.FIELD_LEFT or leave it out entirely, as FIELD_LEFT is the default . To make the image sit on a different color background, we'll put the BitmapField inside another manager and let that manager draw the background color. We'll use a HorizontalFieldManager. This first part should be familiar to you by now. Change the following...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/adding-a-header-background.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_106_165.jpg" style="width: 207pt; height: 196pt;" title="Figure black background for our image"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=S3dCRVeSyhM:VMS61TDLL2I:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=S3dCRVeSyhM:VMS61TDLL2I:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/adding-a-header-background.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/adding-a-header-background.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_106_165.jpg" type="image/jpeg" height="274" width="290" />
 <media:title />
 <media:description type="html">Figure black background for our image</media:description>
 <pubDate>Mon, 13 Feb 2012 10:32:59 GMT</pubDate>
</item>
<item>
 <title>Whats Different About Developing for BlackBerry BlackBerryDevelopment</title>
 <description>If you're familiar with developing for modern desktop PCs or servers, there are many things you might not think about before starting to develop for BlackBerry. Of course, every platform is different, but there are some things to keep in mind when designing and implementing an application for BlackBerry. Generally, BlackBerry CPU speed and RAM - as with most mobile devices - lag a few years behind average PCs. The latest BlackBerry devices are getting faster, so this isn't as much of a...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/whats-different-about-developing-for-blackberry.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_10_20.jpg" style="width: 274pt; height: 13pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=2BTcNav_DbA:JBQbq1-BOB0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=2BTcNav_DbA:JBQbq1-BOB0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/whats-different-about-developing-for-blackberry.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/whats-different-about-developing-for-blackberry.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_10_20.jpg" type="image/jpeg" height="18" width="384" />
 <media:title />
 <media:description type="html" />
 <pubDate>Sat, 11 Feb 2012 21:46:29 GMT</pubDate>
</item>
<item>
 <title>Use socket connections Blackberry Java Development</title>
 <description>Although you can implement HTTP over a socket connection, you should use an HTTP connection for the following reasons Socket connections do not support the BlackBerry Mobile Data System features, such as push. Applications that use socket connections typically require significantly more bandwidth than applications that use HTTP connections. Before opening a socket connection, verify that the BlackBerry device is in a wireless coverage area. Use the CoverageInfo class and CoverageStatusListener...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=glTiU5onyc0:1wYD4Xf2zsk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=glTiU5onyc0:1wYD4Xf2zsk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/use-socket-connections.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/use-socket-connections.html</guid>
 <pubDate>Mon, 30 Jan 2012 04:28:33 GMT</pubDate>
</item>
<item>
 <title>Click one of the following tabs Blackberry Java Development</title>
 <description>Summary The Summary view displays general statistics about the system and the garbage collection process. It displays the percentage of time that the JVM spends idle, executing code, and performing quick and full garbage collection processes. The Percent column displays the percent of total JVM running time, including idle and collection times. Methods The Methods view displays a list of modules, sorted either by the information that you are profiling or by the number of times that the...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=55uU9zRURuU:2b9iIIZjqQI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=55uU9zRURuU:2b9iIIZjqQI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/click-one-of-the-following-tabs.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/click-one-of-the-following-tabs.html</guid>
 <pubDate>Tue, 24 Jan 2012 11:48:13 GMT</pubDate>
</item>
<item>
 <title>Making Secure HTTP HTTPS Connections BlackBerryDevelopment</title>
 <description>To make a connection to a secure HTTP server, replace http with https in the Connector.open method. Fortunately, the web application also supports HTTPS connections, so simply substitute https into the URL to make and then click Get. The result will look almost the same as the non-secure HTTP connection see Figure 7-14 . Figure 7-14. Retrieving the web application over HTTPS Figure 7-14. Retrieving the web application over HTTPS Performing the POST works in a similar way. We haven't had to...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/making-secure-http-https-connections.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_174_231.jpg" style="width: 172pt; height: 184pt;" title="Figure Information about the securiy the connection"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=nu_z_bWd9Fw:2AZ77GxJSpo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=nu_z_bWd9Fw:2AZ77GxJSpo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/making-secure-http-https-connections.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/making-secure-http-https-connections.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_174_231.jpg" type="image/jpeg" height="258" width="241" />
 <media:title />
 <media:description type="html">Figure Information about the securiy the connection</media:description>
 <pubDate>Fri, 06 Jan 2012 12:46:39 GMT</pubDate>
</item>
<item>
 <title>Hello BlackBerry BlackBerry Games Development</title>
 <description>In this section, you'll see the basics of how RIMlets work by creating a Hello World'' RIMlet. Note The term RIMlet is an informal name that you'll see in discussions on the Internet, but it doesn't appear in RIM's official documentation. As you'll see in the sections on compiling and building your application, RIM uses the term CLDC application for BlackBerry applications that aren't MIDlets. This choice of terminology is confusing because a MIDlet is also a type of CLDC application. Since...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/games-development/hello-blackberry.html"&gt;&lt;img src="http://www.bmdwireless.com/games-development/images/6685_23_19.jpg" style="width: 344pt; height: 18pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=LpGCLCCag_4:fm29dDrIiuM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=LpGCLCCag_4:fm29dDrIiuM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/games-development/hello-blackberry.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/games-development/hello-blackberry.html</guid>
 <media:content url="http://www.bmdwireless.com/games-development/images/6685_23_19.jpg" type="image/jpeg" height="25" width="482" />
 <media:title />
 <media:description type="html" />
 <pubDate>Mon, 26 Sep 2011 19:24:35 GMT</pubDate>
</item>
<item>
 <title>Code sample Creating an encrypted SQLite database BlackberrySqlite</title>
 <description>Research In Motion Limited proprietary and confidential Copyright Research In Motion Limited, 2009 import net.rim.device.api.ui. import net.rim.device.api.ui.component. import net.rim.device.api.ui.container. import net.rim.device.api.database. import net.rim.device.api.io. public class CreateEncryptedDatabase extends UiApplication public static void main String args CreateEncryptedDatabase theApp new CreateEncryptedDatabase theApp.enterEventDispatcherQ pushScreen new...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=HXQufqpCD2M:ZcflDrkSSvs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=HXQufqpCD2M:ZcflDrkSSvs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackberrySqlite</category>
 <link>http://www.bmdwireless.com/sqlite/code-sample-creating-an-encrypted-sqlite-database.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/sqlite/code-sample-creating-an-encrypted-sqlite-database.html</guid>
 <pubDate>Mon, 26 Sep 2011 15:17:31 GMT</pubDate>
</item>
<item>
 <title>Creating the Domain Field and Check Box BlackBerryDevelopment</title>
 <description>The Domain field should be a drop-down list. For the BlackBerry, this is accomplished by an instance of You can implement the interface directly, but for this application, the net.rim.device.api.ui.component. ObjectChoiceField component will do just fine it allows us to specify an array of Objects, which will be used to populate the field the toString method will be used for the display string . If you want a list of numbers, net.rim.device.api.ui.component. NumericChoiceField is also often...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/creating-the-domain-field-and-check-box.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_52_91.jpg" style="width: 272pt; height: 13pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Xx-z5ZpktFQ:UueTf4WpXEs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Xx-z5ZpktFQ:UueTf4WpXEs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/creating-the-domain-field-and-check-box.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/creating-the-domain-field-and-check-box.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_52_91.jpg" type="image/jpeg" height="18" width="381" />
 <media:title />
 <media:description type="html" />
 <pubDate>Mon, 26 Sep 2011 15:01:41 GMT</pubDate>
</item>
<item>
 <title>Listen to Me BlackBerry Advanced APIs</title>
 <description>The five states give a big picture of what your media is doing, but sometimes you'll want more granularity than that. It might be nice to know when you have recorded 30 seconds of audio, or when a stream has run out of data and needs to buffer. RIM supports these use cases by offering a standard listener interface. By implementing PlayerListener, your application can register with a Player instance, as shown in Figure 2-3. PlayerListener defines a single method, playerUpdate , which will be...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/advanced-apis/listen-to-me.html"&gt;&lt;img src="http://www.bmdwireless.com/advanced-apis/images/6659_16_36.jpg" style="width: 343pt; height: 108pt;" title="Figure Registering Listener with Player"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=wZQwt7kDu98:__IbsT3gt3o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=wZQwt7kDu98:__IbsT3gt3o:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/advanced-apis/listen-to-me.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/advanced-apis/listen-to-me.html</guid>
 <media:content url="http://www.bmdwireless.com/advanced-apis/images/6659_16_36.jpg" type="image/jpeg" height="151" width="480" />
 <media:title />
 <media:description type="html">Figure Registering Listener with Player</media:description>
 <pubDate>Mon, 26 Sep 2011 12:33:45 GMT</pubDate>
</item>
<item>
 <title>MIDlet application descriptor properties BlackBerry Application Developer Guide</title>
 <description>Application descriptor files have an extension of .jad. A standard MIDlet .jad file contains the following predefined attributes, and might contain additional attributes defined by the application. URL from which the .jar file can be loaded organization that provides the MIDlet suite version of the MIDlet suite, formatted as minimum number of bytes of persistent data required by the MIDlet suite the default is zero text message that appears when prompting the user to confirm deletion of the...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=FXtf4GG27nw:NaifUwqnbDE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=FXtf4GG27nw:NaifUwqnbDE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/midlet-application-descriptor-properties.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/midlet-application-descriptor-properties.html</guid>
 <pubDate>Mon, 26 Sep 2011 11:43:06 GMT</pubDate>
</item>
<item>
 <title>Manage foreground events BlackBerry Application Developer Guide</title>
 <description>The system calls Application.activate when it brings an application to the foreground. Most applications do not need to override activate . Applications should perform any initialization, including any required UiApplication.pushScreen calls, in the application constructor. Because activate can be called multiple times for the same application, applications should not perform a one-time initialization in this method. An application can override activate to perform additional processing when it...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=V2-5KtpamTQ:NadDBTH84L0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=V2-5KtpamTQ:NadDBTH84L0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/manage-foreground-events.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/manage-foreground-events.html</guid>
 <pubDate>Mon, 26 Sep 2011 09:23:47 GMT</pubDate>
</item>
<item>
 <title>Delegate Managers BlackBerryDevelopment</title>
 <description>A screen doesn't directly lay out any of its fields. Instead, it delegates that to a manager that's specified when the screen is instantiated. All the manager methods on the screen add, delete, insert, etc. actually end up invoking the same methods on the delegate manager. The only component the screen handles directly is the delegate manager. This separation of manager and screen makes it easy to change the internal layout of any screen. This also means that a screen must have a delegate...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/delegate-managers.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_101_160.jpg" style="width: 274pt; height: 13pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Y8dyvnykNnQ:ylpd3FR4N8k:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Y8dyvnykNnQ:ylpd3FR4N8k:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/delegate-managers.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/delegate-managers.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_101_160.jpg" type="image/jpeg" height="18" width="384" />
 <media:title />
 <media:description type="html" />
 <pubDate>Mon, 26 Sep 2011 09:00:41 GMT</pubDate>
</item>
<item>
 <title>HTTP support parameters BlackBerry Application Developer Guide</title>
 <description>This parameter turns on TRUE or turns off FALSE HTTP standard logging HTTP headers only . This parameter turns on TRUE or turns off FALSE HTTP debug logging HTTP data and headers . This parameter should be set to TRUE only when necessary to debug a specific problem. This parameter turns on TRUE or turns off FALSE cookie storage. If you select TRUE, BlackBerry MDS Services manages cookie storage instead of the BlackBerry device. This reduces the load on the BlackBerry device significantly....&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=qdGsMVY148M:Mq8fGuan0l0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=qdGsMVY148M:Mq8fGuan0l0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/http-support-parameters.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/http-support-parameters.html</guid>
 <pubDate>Mon, 26 Sep 2011 08:57:55 GMT</pubDate>
</item>
<item>
 <title>Run on the event dispatch thread BlackBerry Application Developer Guide</title>
 <description>If holding the event lock is not appropriate, create a class that implements the Runnable interface. Invoke its run method on the event dispatch thread by invoking one of the following three methods Invoke invokeAndWait Runnable to have run called on the event dispatch thread immediately. The call blocks until run completes. Invoke invokeLater Runnable to have run called on the event dispatch thread after all pending events are processed. Invoke invokeLater Runnable, long, boolean to have run...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=i1T_DC8dDzU:nSYKK2OxEEc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=i1T_DC8dDzU:nSYKK2OxEEc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/run-on-the-event-dispatch-thread.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/run-on-the-event-dispatch-thread.html</guid>
 <pubDate>Mon, 26 Sep 2011 04:49:39 GMT</pubDate>
</item>
<item>
 <title>Display stack BlackBerry Application Developer Guide</title>
 <description>Screen objects are maintained in a display stack, an ordered set of Screen objects. The screen at the top of the stack is the active screen that appears to the user. When an application displays a screen, it pushes the screen to the top of the stack. When an application closes a screen, it pops the screen off the stack and displays the next screen on the stack, redrawing it as necessary. ONote Each screen can appear only once in the display stack. The VM throws a runtime exception if the same...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=L5yefbN9KUs:flsLvU9xzRQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=L5yefbN9KUs:flsLvU9xzRQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/display-stack.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/display-stack.html</guid>
 <pubDate>Sun, 25 Sep 2011 20:57:37 GMT</pubDate>
</item>
<item>
 <title>Overview BlackBerry Theme Studio</title>
 <description>The BlackBerry Theme Studio is a free suite of graphic design tools for designers, developers and anyone with an interest in creating graphics and themes for the BlackBerry device. You can create interactive themes, mobile web sites, splash screens, graphics, and animated content that is optimized for use on BlackBerry devices. The BlackBerry Theme Studio includes the BlackBerry Theme Builder and BlackBerry Composer. With the BlackBerry Theme Builder, you can personalize the look of the screens...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/theme-studio/overview.html"&gt;&lt;img src="http://www.bmdwireless.com/theme-studio/images/6673_1_5.jpg" style="width: 153pt; height: 49pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=KvL_or9YXGY:p2bc1rAYsnM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=KvL_or9YXGY:p2bc1rAYsnM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/theme-studio/overview.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/theme-studio/overview.html</guid>
 <media:content url="http://www.bmdwireless.com/theme-studio/images/6673_1_5.jpg" type="image/jpeg" height="69" width="214" />
 <media:title />
 <media:description type="html" />
 <pubDate>Sun, 25 Sep 2011 12:34:31 GMT</pubDate>
</item>
<item>
 <title>On the General tab set the following options Blackberry Java Development</title>
 <description>The profiler tool calculates the time spent executing bytecode in a method and all methods that the method invokes. The profiler tool calculates the time spent executing bytecode in that method only. The timer stops when a call is made to another method. The profiler tool sorts methods in the profile pane by the number of times the application executed the item. Profiled data select in What to profile The profiler tool sorts methods in the profile pane by the data you choose to profile. The...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=WQF8VzalkSA:flPTTXeui9k:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=WQF8VzalkSA:flPTTXeui9k:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/on-the-general-tab-set-the-following-options.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/on-the-general-tab-set-the-following-options.html</guid>
 <pubDate>Sun, 25 Sep 2011 12:11:47 GMT</pubDate>
</item>
<item>
 <title>BlackBerry Development BlackBerryDevelopment</title>
 <description>Learn how to build Java-based BlackBerry applications from scratch All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher. ISBN-13 electronic 978-1-4302-2428-0 Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1 Trademarked names may appear in...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/blackberry-development.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_1_1.jpg" style="width: 187pt; height: 225pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=amkf5oDcx5c:n_yUpStvMwE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=amkf5oDcx5c:n_yUpStvMwE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/blackberry-development.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/blackberry-development.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_1_1.jpg" type="image/jpeg" height="315" width="262" />
 <media:title />
 <media:description type="html" />
 <pubDate>Sat, 24 Sep 2011 20:37:14 GMT</pubDate>
</item>
<item>
 <title>BlackBerry Theme Builder feature support BlackBerry Theme Builder</title>
 <description>When you use the BlackBerry Theme Builder to create themes, you might encounter version compatibility issues when you export your theme to a BlackBerry device. The BlackBerry device might be running a version of the BlackBerry Device Software that does not support the features that are available in the version of the BlackBerry Theme Builder that you use to create the theme. You can use the following table to help verify the features that different versions of the BlackBerry Theme Builder and...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=dIUTalRmLfQ:sc8pzEANE2M:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=dIUTalRmLfQ:sc8pzEANE2M:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/theme-builder/blackberry-theme-builder-feature-support.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/theme-builder/blackberry-theme-builder-feature-support.html</guid>
 <pubDate>Sat, 24 Sep 2011 13:38:32 GMT</pubDate>
</item>
<item>
 <title>Recording Audio BlackBerry Advanced APIs</title>
 <description>By now you should have a general idea of how the recording process works. You will request a Player, configure it for your desired capture, start it to begin recording, and then stop it once the recording is complete. At that point you can retrieve the recorded audio data. Before you start, though, you should ask yourself whether you care what format that data will be in. RIM offers several choices for audio encoding. Your choices are described in Table 2-3. Note that each choice has a required...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=vSOu95Dx3yk:DYzftnIjk1M:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=vSOu95Dx3yk:DYzftnIjk1M:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/advanced-apis/recording-audio.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/advanced-apis/recording-audio.html</guid>
 <pubDate>Fri, 23 Sep 2011 20:31:56 GMT</pubDate>
</item>
<item>
 <title>The ALX File BlackBerryDevelopment</title>
 <description>Desktop installation requires a different type of descriptor file than OTA installation. For desktop installation, the file is XML based and has the extension .alx. Here's an example ALX file for UiFun lt loader version 1.0 gt lt application id UiFun gt lt name gt The Beginning BlackBerry UI Fun Application lt description gt lt version gt 1.0.1 lt version gt lt vendor gt Anthony Rizk lt vendor gt lt copyright gt Copyright c 2009 Anthony Rizk lt copyright gt lt fileset Java 1.39 gt lt directory...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/the-alx-file.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_222_264.jpg" style="width: 191pt; height: 98pt;" title="Figure generate ALX Hie from Eclipse right click the project and select Generate ALX file"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=xHhF42z5dbo:xIoM1H8zhwY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=xHhF42z5dbo:xIoM1H8zhwY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/the-alx-file.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/the-alx-file.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_222_264.jpg" type="image/jpeg" height="137" width="267" />
 <media:title />
 <media:description type="html">Figure generate ALX Hie from Eclipse right click the project and select Generate ALX file</media:description>
 <pubDate>Fri, 23 Sep 2011 07:38:51 GMT</pubDate>
</item>
<item>
 <title>App Localized Text BlackBerry Advanced APIs</title>
 <description>MediaGrabber's simple UI can be run on a wide variety of devices without requiring changes to the code. By using the CLDC UI framework, the same code works fine on touch-screen and QWERTY devices. Throughout the book, I have been careful to test for feature support within the app, so no extra work is required to support the presence or absence of a camera or other piece of hardware. MediaGrabber does make use of APIs from version 4.5, but none from later OS versions. It seems reasonable to...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=LHA61GtDUy4:K2HOHoPRL6s:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=LHA61GtDUy4:K2HOHoPRL6s:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/advanced-apis/app-localized-text.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/advanced-apis/app-localized-text.html</guid>
 <pubDate>Fri, 23 Sep 2011 07:12:38 GMT</pubDate>
</item>
<item>
 <title>Protecting a StandAlone BlackBerry BlackBerryHacking</title>
 <description>Out of the box, most devices aren't configured securely. As you learned earlier, the default firewall options are not set as securely as they could be and the firewall is disabled by default. The same is true with other settings that enable a user to gain physical access to the device. Securing the standalone BlackBerry includes the following steps Protect against unauthorized access to the device. Implement content protection. These are important steps to understand the next two sections cover...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=cRY4tOuWAdY:uBiPf2TSR8o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=cRY4tOuWAdY:uBiPf2TSR8o:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryHacking</category>
 <link>http://www.bmdwireless.com/hacking/protecting-a-standalone-blackberry.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/hacking/protecting-a-standalone-blackberry.html</guid>
 <pubDate>Fri, 23 Sep 2011 00:00:40 GMT</pubDate>
</item>
<item>
 <title>Uninstalling using your BtackBerry handheld GettingOrganized</title>
 <description>When you're on the run and don't have access to your PC, you can still unin-stall an application from your BlackBerry handheld. Follow these steps to uninstall BlackBerry Blogger or an application of your choice from your BlackBerry handheld 1. Highlight the Options Settings application from the BlackBerry Home screen and press the trackwheel. Doing so opens the Options Settings application. 2. Scroll through the list of options until you find the Applications setting and then press the...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/getting-organized/uninstalling-using-your-btackberry-handheld.html"&gt;&lt;img src="http://www.bmdwireless.com/getting-organized/images/6678_423_233.jpg" style="width: 127pt; height: 138pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=22oe_Nf1S40:MYo59Va8m7E:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=22oe_Nf1S40:MYo59Va8m7E:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>GettingOrganized</category>
 <link>http://www.bmdwireless.com/getting-organized/uninstalling-using-your-btackberry-handheld.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/getting-organized/uninstalling-using-your-btackberry-handheld.html</guid>
 <media:content url="http://www.bmdwireless.com/getting-organized/images/6678_423_233.jpg" type="image/jpeg" height="193" width="178" />
 <media:title />
 <media:description type="html" />
 <pubDate>Thu, 22 Sep 2011 23:03:17 GMT</pubDate>
</item>
<item>
 <title>Implementing the Login and Clear Menu Items BlackBerryDevelopment</title>
 <description>We'll implement two menu items for our application corresponding to the Login and Clear actions. We'll create a new class for each menu item and declare these as inner classes within UiFunMainScreen because we'll only use them here and to give them access to UiFunMainScreen's private login and clearTextFields methods public class UiFunMainScreen extends MainScreen implements FieldChangeListener class LoginMenuItem extends MenuItem public LoginMenuItem super Login, 20, 10 class ClearMenuItem...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=6XeLVE8Zj7o:gnrrNjyiSk8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=6XeLVE8Zj7o:gnrrNjyiSk8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/implementing-the-login-and-clear-menu-items.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/implementing-the-login-and-clear-menu-items.html</guid>
 <pubDate>Thu, 22 Sep 2011 12:15:05 GMT</pubDate>
</item>
<item>
 <title>Animating the Layout BlackBerryDevelopment</title>
 <description>protected void sublayout int width, int height super.sublayout width, height if verticalOffset gt 0 if animationStart 0 start the animation animationStart System.currentTimeMillis long timeElapsed System.currentTimeMillis - animationStart if timeElapsed gt animationTime verticalOffset 0 float percentDone float timeElapsed float animationTime verticalOffset Display.getHeight - int percentDone Display.getHeight Runnable public void run updateLayout Notice that there's an initial case where...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/animating-the-layout.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_111_172.jpg" style="width: 215pt; height: 230pt;" title="Figure The login success screen sliding "/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=_DXFJO-sgoo:3R2cWjUGlR4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=_DXFJO-sgoo:3R2cWjUGlR4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/animating-the-layout.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/animating-the-layout.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_111_172.jpg" type="image/jpeg" height="322" width="301" />
 <media:title />
 <media:description type="html">Figure The login success screen sliding </media:description>
 <pubDate>Thu, 22 Sep 2011 07:25:03 GMT</pubDate>
</item>
<item>
 <title>InstallShield WizardBlackBerry Enterprise Server Management MAPI Profile screen Blackberry Enterprise Server Microsoft Exchange 5 5</title>
 <description>15. In the Management MAPI Profile field, type the name of the MAPI profile for the BlackBerry Enterprise Server Management administration service account, which the BlackBerry Enterprise Server Management service uses to communicate with the Microsoft Exchange Server. a Note The service account name can be the same as or different from the MAPI profile and service account that you use for the BlackBerry Enterprise Server. You can change the default MAPI profile name to match that of another...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/enterprise-server-microsoft-exchange-5-5/installshield-wizardblackberry-enterprise-server-management-mapi-profile-screen.html"&gt;&lt;img src="http://www.bmdwireless.com/enterprise-server-microsoft-exchange-5-5/images/6677_71_24.jpg" style="width: 129pt; height: 133pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=7ouqS43Nt5A:2Fu8Hg8I5oo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=7ouqS43Nt5A:2Fu8Hg8I5oo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/enterprise-server-microsoft-exchange-5-5/installshield-wizardblackberry-enterprise-server-management-mapi-profile-screen.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/enterprise-server-microsoft-exchange-5-5/installshield-wizardblackberry-enterprise-server-management-mapi-profile-screen.html</guid>
 <media:content url="http://www.bmdwireless.com/enterprise-server-microsoft-exchange-5-5/images/6677_71_24.jpg" type="image/jpeg" height="186" width="181" />
 <media:title />
 <media:description type="html" />
 <pubDate>Thu, 22 Sep 2011 07:06:48 GMT</pubDate>
</item>
<item>
 <title>Connection Method Using Direct TCPIP Instead of BESMDS BlackBerryDevelopment</title>
 <description>Now, let's take a few minutes to see how to force a connection to make a direct TCP IP connection to the server instead of using the BES MDS. The Networking application currently uses the device's default connection method. As mentioned earlier, if you run the application on a device that's not activated on a BES, the requests will already go over direct TCP IP. However, if you run on a device connected to a BES, the POST and GET requests are done through the BES. To force them to go directly,...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=lbFizMtjssw:7Ev8xhqE_Ho:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=lbFizMtjssw:7Ev8xhqE_Ho:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/connection-method-using-direct-tcpip-instead-of-besmds.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/connection-method-using-direct-tcpip-instead-of-besmds.html</guid>
 <pubDate>Thu, 22 Sep 2011 02:29:22 GMT</pubDate>
</item>
<item>
 <title>Understanding BlackBerry Application Files BlackBerry Games Development</title>
 <description>Once you build your project using one of the build options under the project menu , the BlackBerry build tools will create a series of files. Some of these files are standard MIDP files, and some are BlackBerry specific. The JARfile extension .jar is the main application file for MIDP. It's the file containing the resources and compiled class files to run on the device. It's a standard Java Archive file with the added requirement that the manifest file META-INF MANIFEST.MF in the JAR file has...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/games-development/understanding-blackberry-application-files.html"&gt;&lt;img src="http://www.bmdwireless.com/games-development/images/6685_27_29.jpg" style="width: 344pt; height: 18pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=6T-SkmYiwWs:DaMw_mP4Vno:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=6T-SkmYiwWs:DaMw_mP4Vno:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/games-development/understanding-blackberry-application-files.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/games-development/understanding-blackberry-application-files.html</guid>
 <media:content url="http://www.bmdwireless.com/games-development/images/6685_27_29.jpg" type="image/jpeg" height="25" width="482" />
 <media:title />
 <media:description type="html" />
 <pubDate>Wed, 21 Sep 2011 19:38:56 GMT</pubDate>
</item>
<item>
 <title>Code sample Creating custom buttons Blackberry Java Development</title>
 <description>Copyright C 2001-2005 Research In Motion Limited. All rights reserved. package com.rim.samples.docs.custombuttons import net.rim.device.api.ui. import net.rim.device.api.system. CustomButtonField is a class that creates button fields of various shapes. This sample demonstrates how to create custom UI fields. public class CustomButtonField extends Field implements DrawStyle public static final int RECTANGLE 1 public static final int TRIANGLE 2 public static final int OCTAGON 3 Constructs a...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=I-Bratu5FAc:EBd_3tjzD0g:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=I-Bratu5FAc:EBd_3tjzD0g:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/code-sample-creating-custom-buttons.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/code-sample-creating-custom-buttons.html</guid>
 <pubDate>Wed, 21 Sep 2011 19:34:49 GMT</pubDate>
</item>
<item>
 <title>Creating a Custom Screen BlackBerryDevelopment</title>
 <description>We're actually using three screens in our UI Fun application already. Two are obvious UiFunMainScreen and the login success screen. The third is the dialog that appears when you try to log in without entering a username and password see Figure 5-24 . Figure 5-24. The login dialog is a Screen too Figure 5-24. The login dialog is a Screen too A screen on the BlackBerry doesn't have to take up the entire display other screens can be visible below it. All screens, however, do take over the user...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/creating-a-custom-screen.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_100_159.jpg" style="width: 540pt; height: 17pt;" title="Figure The login dialog Screen too"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=YnVHPAzpKIo:n7UrrUhyqQk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=YnVHPAzpKIo:n7UrrUhyqQk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/creating-a-custom-screen.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/creating-a-custom-screen.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_100_159.jpg" type="image/jpeg" height="24" width="756" />
 <media:title />
 <media:description type="html">Figure The login dialog Screen too</media:description>
 <pubDate>Wed, 21 Sep 2011 14:05:34 GMT</pubDate>
</item>
<item>
 <title>Intercepting BlackBerry Communication BlackBerryHacking</title>
 <description>Most BlackBerrys come equipped with a 3G mobile-data wireless-connectivity interface, such as EvDO. In addition, most have Bluetooth capability and some even have Wi-Fi capability. It is important to realize that these interfaces are actually transmitting data to and from the BlackBerry device. This data could be sensitive and needs to be protected. Not all of these interfaces transmit data in a linear fashion. The data does not go directly from point A to point B. Rather, the data is like a...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/hacking/intercepting-blackberry-communication.html"&gt;&lt;img src="http://www.bmdwireless.com/hacking/images/6682_64_47.jpg" style="width: 48pt; height: 68pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=4HW6JNmujRg:TN2W8VeEQVo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=4HW6JNmujRg:TN2W8VeEQVo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryHacking</category>
 <link>http://www.bmdwireless.com/hacking/intercepting-blackberry-communication.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/hacking/intercepting-blackberry-communication.html</guid>
 <media:content url="http://www.bmdwireless.com/hacking/images/6682_64_47.jpg" type="image/jpeg" height="95" width="67" />
 <media:title />
 <media:description type="html" />
 <pubDate>Wed, 21 Sep 2011 13:39:45 GMT</pubDate>
</item>
<item>
 <title>Organize fields horizontally BlackBerry Application Developer Guide</title>
 <description>HorizontalFieldManager organizes fields horizontally. To enable horizontal scrolling, provide the Manager.horizontal_scroll style. If you do not include the horizontal_scroll parameter, the fields arrange themselves horizontally and can exceed the width of the screen, but users cannot scroll to content that is beyond the right side of the screen. BlackBerry devices do not display horizontal scrolling indicators or scroll bars. HorizontalFieldManager hfm new&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=vjhtgrQ18Cg:wbRrU_OjS6Q:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=vjhtgrQ18Cg:wbRrU_OjS6Q:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/organize-fields-horizontally.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/organize-fields-horizontally.html</guid>
 <pubDate>Wed, 21 Sep 2011 10:22:02 GMT</pubDate>
</item>
<item>
 <title>Tidying Up the Login Success Screen BlackBerryDevelopment</title>
 <description>Now that we've got a few components, let's revisit LoginSuccessScreen. With some simple modifications to the constructor to use our CustomLabelField and GridFieldManager, we can make the screen look a little better. public LoginSuccessScreen String username, String domain try FontFamily alphaSansFamily FontFamily.forName BBAlpha Serif Font appFont alphaSansFamily.getFont Font.PLAIN, 9, Ui.UNITS_pt setFont appFont catch ClassNotFoundException e add new CustomLabelField Logged In , Color.WHITE,...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/tidying-up-the-login-success-screen.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_99_157.jpg" style="width: 162pt; height: 30pt;" title="Figure The redone login success screen"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=y2rNlUGKWHw:Tq2ebl8Mhik:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=y2rNlUGKWHw:Tq2ebl8Mhik:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/tidying-up-the-login-success-screen.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/tidying-up-the-login-success-screen.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_99_157.jpg" type="image/jpeg" height="42" width="227" />
 <media:title />
 <media:description type="html">Figure The redone login success screen</media:description>
 <pubDate>Wed, 21 Sep 2011 08:10:59 GMT</pubDate>
</item>
<item>
 <title>Content element BlackBerry Widget SDK Development</title>
 <description>The content element declares the start file used by the BlackBerry Widget when it runs. If you do not specify a content element, a default start file from within the widget archive is used. The start file can also be a URL to a remote file outside of the BlackBerry Widget archive. The src attribute specifies the source HTML file within the widget archive. This attribute is required. The type attribute specifies the MIME type for the file referenced in the src attribute. This attribute is...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=TLixeOzvvTg:EtEZVF-pSOQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=TLixeOzvvTg:EtEZVF-pSOQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/widget-sdk-development/content-element.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/widget-sdk-development/content-element.html</guid>
 <pubDate>Wed, 21 Sep 2011 07:37:43 GMT</pubDate>
</item>
<item>
 <title>Build Script BlackBerry Advanced APIs</title>
 <description>Even if you don't have GNU make or Apache Ant installed, you can whip together a quick and dirty build script using Notepad or another basic text editing program. Use the build script in Listing 11-2 to generate a new application without requiring Eclipse to be open. You can modify the variables at the top of the script with the location of your BlackBerry component package, signing password, and so on. set FILES MediaGrabber.java ChoicesScreen.java PlayingScreen.java RecordingScreen.java...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=tl1BTdoSkho:WJakZKmVR0w:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=tl1BTdoSkho:WJakZKmVR0w:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/advanced-apis/build-script.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/advanced-apis/build-script.html</guid>
 <pubDate>Tue, 20 Sep 2011 23:35:45 GMT</pubDate>
</item>
<item>
 <title>Create custom context menus Blackberry Java Development</title>
 <description>Create the custom context menu gt In your field class, create the custom context menu items. items. private Menultem myContextMenultemA new MenuItem _resources, MENUITEM_ONE, 200000, 10 public void run private MenuItem myContextMenuItemB new MenuItem _resources, MENUITEM_ONE, 200000, 10 public void run Provide a context menu. gt In your main application class, override makeContextMenu . protected void makeContextMenu ContextMenu contextMenu Create the application menu. gt In your main...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=NNnsx3zrK28:OstRTRNiT08:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=NNnsx3zrK28:OstRTRNiT08:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/create-custom-context-menus.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/create-custom-context-menus.html</guid>
 <pubDate>Tue, 20 Sep 2011 15:36:39 GMT</pubDate>
</item>
<item>
 <title>Avoid using StringBufferappendStringBuffer BlackBerry Application Developer Guide</title>
 <description>CLDC does not include a StringBuffer.append StringBuffer method. Appending a string buffer to another in this way creates an intermediate String object. Instead, applications should use StringBuffer dst, StringBuffer src , int offset, int length . public synchronized StringBuffer append Object obj return append String.valueOf obj public synchronized StringBuffer append Object obj if obj instanceof StringBuffer StringBuffer sb StringBuffer obj this, sb, 0, sb return this&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=-7gw8abfig0:FchaHgPKksY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=-7gw8abfig0:FchaHgPKksY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/avoid-using-stringbufferappendstringbuffer.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/avoid-using-stringbufferappendstringbuffer.html</guid>
 <pubDate>Tue, 20 Sep 2011 15:31:32 GMT</pubDate>
</item>
<item>
 <title>Event listeners BlackBerry Application Developer Guide</title>
 <description>Event listener interfaces are divided by event type. Each application registers to receive specific types of events. The application event queue then dispatches events to the appropriate listeners. Applications can implement the appropriate listener interfaces or override the listener methods on the various Screen objects. Most applications implement the KeyListener and TrackwheelListener interfaces and register the listeners to receive keyboard and trackwheel events. The keyboard and...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=HUViXrgGHlA:HoU4nK7iwSM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=HUViXrgGHlA:HoU4nK7iwSM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/event-listeners.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/event-listeners.html</guid>
 <pubDate>Tue, 20 Sep 2011 11:28:18 GMT</pubDate>
</item>
<item>
 <title>Create a custom field Blackberry Java Development</title>
 <description>Create a custom field. You can only add custom context menu items and custom layouts to a custom field. gt Extend the Field class, or one of its subclasses, implementing the DrawStyle interface to specify the characteristics of the custom field and turn on drawing styles. public class CustomButtonField extends Field implements DrawStyle public static final int RECTANGLE 1 public static final int TRIANGLE 2 public static final int OCTAGON 3 private String _label private int _shape private Font...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=YEHXC7GXUQs:2zrvb38Y-gU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=YEHXC7GXUQs:2zrvb38Y-gU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/create-a-custom-field.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/create-a-custom-field.html</guid>
 <pubDate>Tue, 20 Sep 2011 08:27:37 GMT</pubDate>
</item>
<item>
 <title>Invoking the RIM Alternative BlackBerry Advanced APIs</title>
 <description>As discussed earlier, sometimes you may want to launch a native RIM application to handle media capture instead of using MMAPI. Some times this will be your only choice, such as if you need to take a picture on a device without software version 4.6 or take a video on a device without version 5.0. Even if your device supports your desired operation, you may prefer the interface of the native application to what you can provide on your own. Starting recording in this manner is much simpler than...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/advanced-apis/invoking-the-rim-alternative.html"&gt;&lt;img src="http://www.bmdwireless.com/advanced-apis/images/6659_26_46-oldest-blackberry.jpg" style="width: 191pt; height: 323pt;" title="Figure image captured the native camera app Several items Listing bear closer examination" alt="Oldest Blackberry"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=yOrSpfez8fw:bnhoH62wzLo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=yOrSpfez8fw:bnhoH62wzLo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/advanced-apis/invoking-the-rim-alternative.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/advanced-apis/invoking-the-rim-alternative.html</guid>
 <media:content url="http://www.bmdwireless.com/advanced-apis/images/6659_26_46-oldest-blackberry.jpg" type="image/jpeg" height="452" width="267" />
 <media:title>Oldest Blackberry</media:title>
 <media:description type="html">Figure image captured the native camera app Several items Listing bear closer examination</media:description>
 <pubDate>Tue, 20 Sep 2011 08:14:10 GMT</pubDate>
</item>
<item>
 <title>Use encoded images BlackBerry Application Developer Guide</title>
 <description>The net.rim.device.api.system.EncodedImage class encapsulates encoded images of various formats. The BlackBerry device supports the following image formats .gif, .png, .wbmp, and .jpeg. Only BlackBerry devices with color screens support .jpeg images. Note The JPEGEncodedImage class requires a signature that is not available. Use EncodedImage subclasses, PNGEncodedImage and WBMPEncodedImage, to access specific properties of .png and .wbmp images, respectively. For example, PNGEncodedImage...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=oiA1wVnPixA:_VrGWLJ9CPg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=oiA1wVnPixA:_VrGWLJ9CPg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/use-encoded-images.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/use-encoded-images.html</guid>
 <pubDate>Tue, 20 Sep 2011 02:39:39 GMT</pubDate>
</item>
<item>
 <title>Making the Button Focusable BlackBerryDevelopment</title>
 <description>To make the button focusable we'll just override isFocusable in CustomButtonField to return true public boolean isFocusable return true Now, you'll be able to move the focus down to the buttons, but the visual representation shown in Figure 5-10 is not what we want. Figure 5-10. Custom button fields with the default focus drawing behavior Figure 5-10. Custom button fields with the default focus drawing behavior &lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/making-the-button-focusable.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_89_130.jpg" style="width: 208pt; height: 228pt;" title="Figure Custom button fields with the default focus drawing behavior"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Qy9gxzjLoVs:MpGQJoMMoQ8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Qy9gxzjLoVs:MpGQJoMMoQ8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/making-the-button-focusable.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/making-the-button-focusable.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_89_130.jpg" type="image/jpeg" height="319" width="291" />
 <media:title />
 <media:description type="html">Figure Custom button fields with the default focus drawing behavior</media:description>
 <pubDate>Mon, 19 Sep 2011 23:59:14 GMT</pubDate>
</item>
<item>
 <title>RIM Push request response codes BlackBerry Application Developer Guide</title>
 <description>Access control error or unknown email address or BlackBerry PIN specified. The server received the request, but is unable to respond. At the present time, the server is not able to manage the request due to temporary overloading or server maintenance.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=dZ5YHNHVZzY:0qWQwFuGEak:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=dZ5YHNHVZzY:0qWQwFuGEak:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/rim-push-request-response-codes.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/rim-push-request-response-codes.html</guid>
 <pubDate>Mon, 19 Sep 2011 15:33:31 GMT</pubDate>
</item>
<item>
 <title>Bluetooth Troubleshooting BlackBerry Pearl 8100 8120 8130</title>
 <description>Bluetooth is still an emergent technology and, sometimes, it doesn't work as well as we might hope. If you are having difficulty, perhaps one of these suggestions will help. 1. My Pass key is not being accepted by the device a. It is possible that you have the incorrect pass key. Most Bluetooth devices use either 0000 or 1234 -but some have unique pass keys. b. If you lost your manual for the Bluetooth device, many times you can use a web search engine such as Google or Yahoo to find the...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/pearl-8100-8120-8130/bluetooth-troubleshooting.html"&gt;&lt;img src="http://www.bmdwireless.com/pearl-8100-8120-8130/images/6667_132_445.jpg" style="width: 49pt; height: 544pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=36i-w9juaW4:35S_uwBPGQA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=36i-w9juaW4:35S_uwBPGQA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/pearl-8100-8120-8130/bluetooth-troubleshooting.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/pearl-8100-8120-8130/bluetooth-troubleshooting.html</guid>
 <media:content url="http://www.bmdwireless.com/pearl-8100-8120-8130/images/6667_132_445.jpg" type="image/jpeg" height="762" width="69" />
 <media:title />
 <media:description type="html" />
 <pubDate>Mon, 19 Sep 2011 12:52:06 GMT</pubDate>
</item>
<item>
 <title>Perform one of the following tasks Scw Blackberry Java Development</title>
 <description>Load an application .cod file on the BlackBerry Issue a command using the following format javaloader -u load lt .cod file gt For example javaloader.exe -u load MyApplication.cod JavaLoader loads the .cod files listed in the .jad file on the BlackBerry device and stores the .cod files in a CodeModuleGroup. Load application .cod files listed in the same .jad Issue a command using the following format javaloader -u load lt .jad file gt For example javaloader.exe -u load MyApplication.jad...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=G_rKxvedGJc:rwp5gwLGFME:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=G_rKxvedGJc:rwp5gwLGFME:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/perform-one-of-the-following-tasks-scw.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/perform-one-of-the-following-tasks-scw.html</guid>
 <pubDate>Mon, 19 Sep 2011 09:42:53 GMT</pubDate>
</item>
<item>
 <title>Index BlackBerryPearl</title>
 <description>ACC files, 157 acronyms dictionary, 202 adding bookmarks, 123-124 contacts, 52-53, 113, 115 e-mail accounts, 89-90 phone numbers to speed dial, 137-138 Address Book adding contacts, 52-53 adding message-sender's contact info, 97 categories for contacts, 59-60 creating contacts, 50-52 deleting contacts, 54 editing contacts, 53-54 filtering contacts, 57, 59-60 finding contacts, 54-56 grouping contacts, 57-58, 61 Maps application, 62 opening, 49-50 organizing contacts, 56-61 phone calls, 132-133...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=vGd4dGWt2JU:pp2Ea2rMCtA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=vGd4dGWt2JU:pp2Ea2rMCtA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryPearl</category>
 <link>http://www.bmdwireless.com/pearl/index.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/pearl/index.html</guid>
 <pubDate>Mon, 19 Sep 2011 08:28:50 GMT</pubDate>
</item>
<item>
 <title>Location Documents BlackBerryDevelopment</title>
 <description>BlackBerry Maps defines an XML document format that you can use to specify view information, location markers, and route information while invoking BlackBerry maps. The basic format of a document showing one or more locations is lt location y 'latitude' x 'longitude' label 'Location_Label' description 'Description' gt lt location y 'latitude' x 'longitude' label 'Location_Label' description 'Description' gt lt location y 'latitude' x 'longitude' label 'Location_Label' description 'Description'...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/location-documents.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_211_253.jpg" style="width: 187pt; height: 65pt;" title="Figure Displaying few locations BlackBerry Maps"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=52wZeYbe85g:2mou_t8K1mU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=52wZeYbe85g:2mou_t8K1mU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/location-documents.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/location-documents.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_211_253.jpg" type="image/jpeg" height="91" width="262" />
 <media:title />
 <media:description type="html">Figure Displaying few locations BlackBerry Maps</media:description>
 <pubDate>Mon, 19 Sep 2011 07:53:49 GMT</pubDate>
</item>
<item>
 <title>A Quick Introduction to USB BlackBerry Games Development</title>
 <description>USB Universal Serial Bus communication is carried out between a host and its devices. Usually the host is a PC or laptop, and devices their peripherals, such as printers, hard drives, and keyboards. The host detects devices, manages data flow on the communications bus, carries out error checking, and often provides power to the devices. In this chapter, the host is the PC running the BaseStation application, and the device is the Dream Cheeky garage and car. A device is uniquely identified by...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/games-development/a-quick-introduction-to-usb.html"&gt;&lt;img src="http://www.bmdwireless.com/games-development/images/6685_158_285.jpg" style="width: 354pt; height: 215pt;" title="Figure Device manager HID information"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=0sB5FuLKAEg:fd-hbWBoBwQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=0sB5FuLKAEg:fd-hbWBoBwQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/games-development/a-quick-introduction-to-usb.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/games-development/a-quick-introduction-to-usb.html</guid>
 <media:content url="http://www.bmdwireless.com/games-development/images/6685_158_285.jpg" type="image/jpeg" height="301" width="496" />
 <media:title />
 <media:description type="html">Figure Device manager HID information</media:description>
 <pubDate>Mon, 19 Sep 2011 04:10:18 GMT</pubDate>
</item>
<item>
 <title>BlackBerry application descriptor properties BlackBerry Application Developer Guide</title>
 <description>In addition to the MIDlet application properties, the following attributes apply to BlackBerry application .jad files. list of modules that the .cod file requires name of the module contained in the .cod file URL from which the .cod file can be loaded name of the resource bundle that the application depends on suggested position of the application icon on the Home screen Note This position might not be the actual position of the application icon on the Home screen. The BlackBerry JDE enables...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=IFx1s7e8b2A:z5HzxbENOf0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=IFx1s7e8b2A:z5HzxbENOf0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/blackberry-application-descriptor-properties.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/blackberry-application-descriptor-properties.html</guid>
 <pubDate>Sun, 18 Sep 2011 21:23:46 GMT</pubDate>
</item>
<item>
 <title>About cell broadcast messages BlackBerry 8700</title>
 <description>If your service provider supports cell broadcasting and provides you with access to a cell broadcasting channel, you can receive broadcast messages from the wireless network. These SMS messages can communicate information about weather, sports, traffic, or other news directly to your device. Contact your service provider for more information about cell broadcasting. The cell broadcast channels that you subscribe to determine the kind of cell broadcast messages that you receive. Contact your...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=f_c2cMpQwhs:DwZ_v6CD1FY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=f_c2cMpQwhs:DwZ_v6CD1FY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/8700/about-cell-broadcast-messages.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/8700/about-cell-broadcast-messages.html</guid>
 <pubDate>Sun, 18 Sep 2011 20:21:01 GMT</pubDate>
</item>
<item>
 <title>Handling the Clear Button BlackBerryDevelopment</title>
 <description>We'll hook up the Clear button first. Add the following line in the constructor, just after instantiating the button Now, when the user clicks on the clear button, we'll receive an event in UiFunMainScreen.fieldChanged. We can test this with a simple dialog using the net.rim.device.api.ui.component.Dialog class public void fieldChanged Field field, int context if field clearButton Dialog.inform Clear Button Pressed The Dialog class is a handy way of displaying simple messages to the user. Run...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/handling-the-clear-button.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_57_100.jpg" style="width: 394pt; height: 209pt;" title="Figure When the fields are populated the image the left clicking the Clear button removes the text from the fields shown the image the right"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=i-jBPLYTfoM:ffMw4e8JiRU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=i-jBPLYTfoM:ffMw4e8JiRU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/handling-the-clear-button.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/handling-the-clear-button.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_57_100.jpg" type="image/jpeg" height="293" width="552" />
 <media:title />
 <media:description type="html">Figure When the fields are populated the image the left clicking the Clear button removes the text from the fields shown the image the right</media:description>
 <pubDate>Sun, 18 Sep 2011 04:27:55 GMT</pubDate>
</item>
<item>
 <title>From Mercator to Image Coordinates BlackBerry Games Development</title>
 <description>Google maps use a Mercator cylindrical projection to flatten the earth's surface onto a 2D map, as illustrated by Figure 11-12. Longitudes are mapped linearly to the x-axis, but latitudes are increasingly spaced out the further they are from the equator. This increasing distortion means that Google Maps only utilizes the Mercator projection between latitudes 85.05113 degrees north and south, which explains why some parts of the polar regions are missing in Figures 11-8 and 11-12. Figure 11-12....&lt;p&gt;&lt;a href="http://www.bmdwireless.com/games-development/from-mercator-to-image-coordinates.html"&gt;&lt;img src="http://www.bmdwireless.com/games-development/images/6685_202_349-mercator-projection.jpg" style="width: 319pt; height: 246pt;" title="Figure The Mercator projection" alt="Mercator Projection"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=FWH2rOaqo4k:y4MD8DdPdEY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=FWH2rOaqo4k:y4MD8DdPdEY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/games-development/from-mercator-to-image-coordinates.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/games-development/from-mercator-to-image-coordinates.html</guid>
 <media:content url="http://www.bmdwireless.com/games-development/images/6685_202_349-mercator-projection.jpg" type="image/jpeg" height="344" width="447" />
 <media:title>Mercator Projection</media:title>
 <media:description type="html">Figure The Mercator projection</media:description>
 <pubDate>Sat, 17 Sep 2011 19:58:45 GMT</pubDate>
</item>
<item>
 <title>Embedding JavaScript in a Markup Document BlackBerry Building Applications</title>
 <description>JavaScript scripting is supported in XHTML-MP 1.1 and 1.2 using the same markup syntax as XHTML. Mobile Web documents containing scripting must use a doctype for the appropriate XHTML-MP version to ensure that the markup is valid. Here are the doctypes used for XHTML-MP 1.1 and 1.2, respectively. lt DOCTYPE html PUBLIC - WAPFORUM DTD XHTML Mobile 1.1 EN lt DOCTYPE html PUBLIC - WAPFORUM DTD XHTML Mobile 1.2 EN Chapter 3 contains more detailed information about doctypes and XHTML-MP versions. In...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/building-applications/embedding-javascript-in-a-markup-document.html"&gt;&lt;img src="http://www.bmdwireless.com/building-applications/images/6661_374_97.jpg" style="width: 434pt; height: 21pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=-0FH1uwNDBg:vPBxkrHD7pU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=-0FH1uwNDBg:vPBxkrHD7pU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/building-applications/embedding-javascript-in-a-markup-document.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/building-applications/embedding-javascript-in-a-markup-document.html</guid>
 <media:content url="http://www.bmdwireless.com/building-applications/images/6661_374_97.jpg" type="image/jpeg" height="29" width="608" />
 <media:title />
 <media:description type="html" />
 <pubDate>Fri, 16 Sep 2011 20:36:44 GMT</pubDate>
</item>
<item>
 <title>How do I change the attachment service default port settings Blackberry Enterprise Server 2000 2003</title>
 <description>The table below shows the attachment service default port settings and the registry location where you can modify the settings. If you do not have a port conflict, retain the default settings. chServer BBAttachServerPort Note You must modify the value in both registry locations.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=aD9wu4SHf2o:vaHh84Gc-tY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=aD9wu4SHf2o:vaHh84Gc-tY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/enterprise-server-2000-2003/how-do-i-change-the-attachment-service-default-port-settings.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/enterprise-server-2000-2003/how-do-i-change-the-attachment-service-default-port-settings.html</guid>
 <pubDate>Fri, 16 Sep 2011 20:32:28 GMT</pubDate>
</item>
<item>
 <title>Use the Theme Builder Inspector to customize different components of the BlackBerry interface Each component has its own Inspector which you display by clicking the appropriate button at the left of the Inspector pane BlackBerry Plazmic Theme Builder</title>
 <description>Use the Banner Inspector to modify the color scheme and background image that appears in the banner across the top of most standard BlackBerry applications. Use the Home Screen Inspector to customize Home screen elements, such as the background image and application icons. Use the Controls Inspector to modify the look and feel of common Blackberry application controls, such as dialog boxes, buttons, menus, title bars, and lists. Use the Messages Inspector to modify the look and feel of the...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=7rbgrDhF2gs:RGZTxx0Kc98:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=7rbgrDhF2gs:RGZTxx0Kc98:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/plazmic-theme-builder/use-the-theme-builder-inspector-to-customize-different-components-of-the-blackberry-interface-each-component-has-its-own-inspector-which-you-display-by-clicking-the-appropriate-button-at-the-left-of-the-inspector-pane.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/plazmic-theme-builder/use-the-theme-builder-inspector-to-customize-different-components-of-the-blackberry-interface-each-component-has-its-own-inspector-which-you-display-by-clicking-the-appropriate-button-at-the-left-of-the-inspector-pane.html</guid>
 <pubDate>Fri, 16 Sep 2011 18:31:45 GMT</pubDate>
</item>
<item>
 <title>Ion lat xy BlackBerry Games Development</title>
 <description>Figure 11-15. Converting latitude to a y-coordinate In Figure 11-15, the y-axis Mercator map distance between the player coordinate and the center is invGud lat - invGud latc . This is equivalent to the pixel distance invGud lat -invGud latc latConvert. Therefore, the y-axis distance from the top of the image down to the coordinate is IM_HEIGHT 2 - invGud lat - invGud latc latConvert. This calculation is implemented in the MapCoords class as the method lat2y private static final double LAT_MAX...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/games-development/ion-lat-xy.html"&gt;&lt;img src="http://www.bmdwireless.com/games-development/images/6685_217_354.jpg" style="width: 304pt; height: 17pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Qatb09gmIw4:mvu2ppMHHm0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Qatb09gmIw4:mvu2ppMHHm0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/games-development/ion-lat-xy.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/games-development/ion-lat-xy.html</guid>
 <media:content url="http://www.bmdwireless.com/games-development/images/6685_217_354.jpg" type="image/jpeg" height="24" width="426" />
 <media:title />
 <media:description type="html" />
 <pubDate>Fri, 16 Sep 2011 16:18:12 GMT</pubDate>
</item>
<item>
 <title>The HttpRequestDispatcher Class BlackBerryDevelopment</title>
 <description>We need to create a separate thread for the HTTP request. Do this by creating a new class that extends java.lang.Thread. Call the class HttpRequestDispatcher public class HttpRequestDispatcher extends Thread private String url private String method GET or POST private NetworkingMainScreen screen public HttpRequestDispatcher String url, String method, NetworkingMainScreen screen this.url url this.method method this.screen screen Notice we're passing in an instance of the main screen. This is to...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/the-httprequestdispatcher-class.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_163_214.jpg" style="width: 274pt; height: 13pt;" title="String contentType connection getHeaderField quot Content type quot ByteArrayOutputStream baos new ByteArrayOutputStream"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=RfJdw68wSlc:SvLXvaZyXYU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=RfJdw68wSlc:SvLXvaZyXYU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/the-httprequestdispatcher-class.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/the-httprequestdispatcher-class.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_163_214.jpg" type="image/jpeg" height="18" width="384" />
 <media:title />
 <media:description type="html">String contentType connection getHeaderField quot Content type quot ByteArrayOutputStream baos new ByteArrayOutputStream</media:description>
 <pubDate>Fri, 16 Sep 2011 14:20:10 GMT</pubDate>
</item>
<item>
 <title>Manage drawing areas Using XYRect objects BlackBerry Application Developer Guide</title>
 <description>The Graphics object represents the entire drawing surface that is available to the application. To limit this area, divide it into XYRect objects. An XYRect creates rectangular clipping regions on top of the graphics context. An XYRect object consists of two XYPoint objects. The first XYPoint object represents the top left coordinate of the XYRect, and the second XYPoint represents the bottom right coordinate. Each XYPoint represents a point on the screen, which is composed of an X coordinate...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=6FFH_xxkuyw:RFlO-kmnOgU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=6FFH_xxkuyw:RFlO-kmnOgU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/manage-drawing-areas-using-xyrect-objects.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/manage-drawing-areas-using-xyrect-objects.html</guid>
 <pubDate>Fri, 16 Sep 2011 07:26:45 GMT</pubDate>
</item>
<item>
 <title>Different Ways to Connect BlackBerryDevelopment</title>
 <description>The BlackBerry offers a number of different methods of making network connections. These include the BlackBerry Enterprise Server BlackBerry Mobile Data System BES MDS , direct Transmission Control Procotol Internet Protocol TCP IP , BlackBerry Internet Service BIS , WiFi, Wireless Access Protocol WAP 1.0, and WAP 2.0. See Figure 7-1. They each have certain advantages and disadvantages, and depending on the configuration of your device and environment, some of the methods might not be...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/different-ways-to-connect.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_152_206.jpg" style="width: 390pt; height: 370pt;" title="Figure Some the different ways BlackBerry device can make wireless connections"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=ir-RBa3_SFM:HLWjgkd1qTI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=ir-RBa3_SFM:HLWjgkd1qTI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/different-ways-to-connect.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/different-ways-to-connect.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_152_206.jpg" type="image/jpeg" height="518" width="546" />
 <media:title />
 <media:description type="html">Figure Some the different ways BlackBerry device can make wireless connections</media:description>
 <pubDate>Fri, 16 Sep 2011 07:12:53 GMT</pubDate>
</item>
<item>
 <title>Playing Video BlackBerry Advanced APIs</title>
 <description>Video playback is similar to audio playback, with the extra wrinkle that you need to display the video somewhere. This process is very similar to the camera viewfinder we created in the last chapter. You will create the Player, obtain a VideoControl, place it somewhere on the Screen, and then start it playing. The most significant difference from video capture is the longer time it will take to start playback, especially if playing a video delivered over the network. The code that follows shows...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=VkJBGxE4v7I:_aHqfO9d47I:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=VkJBGxE4v7I:_aHqfO9d47I:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/advanced-apis/playing-video.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/advanced-apis/playing-video.html</guid>
 <pubDate>Thu, 15 Sep 2011 22:40:48 GMT</pubDate>
</item>
<item>
 <title>AJAX in Mobile Browsers BlackBerry Building Applications</title>
 <description>AJAX is commonly used to create dynamic web pages by updating just one portion of the web document, without a complete page reload. This is done by a background process that asynchronously obtains additional data from the web server. A JavaScriptintensive web page with AJAX functionality is commonly referred to as a Rich Internet Application RIA , where the term application indicates that the page's user interface and functionality are dynamic and driven using scripting logic rather than static...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/building-applications/ajax-in-mobile-browsers.html"&gt;&lt;img src="http://www.bmdwireless.com/building-applications/images/6661_377_101.jpg" style="width: 540pt; height: 17pt;" title="document getElementById article innerHTML span class quot title quot Article span "/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=pwQOUTBL9x8:fOQx77zmUwY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=pwQOUTBL9x8:fOQx77zmUwY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/building-applications/ajax-in-mobile-browsers.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/building-applications/ajax-in-mobile-browsers.html</guid>
 <media:content url="http://www.bmdwireless.com/building-applications/images/6661_377_101.jpg" type="image/jpeg" height="24" width="756" />
 <media:title />
 <media:description type="html">document getElementById article innerHTML span class quot title quot Article span </media:description>
 <pubDate>Thu, 15 Sep 2011 18:03:28 GMT</pubDate>
</item>
<item>
 <title>Map transcoders BlackBerry Application Developer Guide</title>
 <description>The httpcontenttranscoderslist.property file, located in the MDS config subdirectory of your BlackBerry Java Development Environment BlackBerry JDE installation, specifies how the MDS data optimization service manage the exchange of various content types between applications and content servers. The following is an example of the httpcontenttranscoderslist.property file default pass Each entry uses the following format lt InputType gt - gt lt OutputType gt lt Action gt where lt InputType gt is...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=jMEre-HL8VM:FCV7s93NMSY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=jMEre-HL8VM:FCV7s93NMSY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/map-transcoders.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/map-transcoders.html</guid>
 <pubDate>Thu, 15 Sep 2011 12:42:53 GMT</pubDate>
</item>
<item>
 <title>Use a WAP gateway BlackBerry Application Developer Guide</title>
 <description>You can configure an HTTP connection using a WAP gateway that your service provider hosts. BlackBerry devices support WAP version 1.1 features. ONote WAP service is available on selected wireless networks only. Before you start development, contact the service provider for information on how to connect to the WAP gateway. gt To set up an HTTP connection using WAP, include the WAPGatewayIP and WapGatewayAPN parameters in Connector.open at the end of the URL. WAPGatewayAPN Mm.net.gprs Separate...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=cC1UboNeAVM:vG5dkZjgitc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=cC1UboNeAVM:vG5dkZjgitc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/use-a-wap-gateway.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/use-a-wap-gateway.html</guid>
 <pubDate>Thu, 15 Sep 2011 11:10:47 GMT</pubDate>
</item>
<item>
 <title>Send a RIM push request BlackBerry Application Developer Guide</title>
 <description>To push data to BlackBerry devices using RIM push, send an HTTP POST request using the following format, where lt destination gt is the destination PIN or internet messaging address, lt port gt is the destination port, lt uri gt is the URI sent to the BlackBerry device, and lt content gt is a byte stream The following headers are valid for RIM push requests This header specifies a unique message ID, which can be used to cancel or check the status of a message. Typically, specify a URL in...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=5GMhQqpxmJA:2jv7CItuj5o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=5GMhQqpxmJA:2jv7CItuj5o:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/send-a-rim-push-request.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/send-a-rim-push-request.html</guid>
 <pubDate>Thu, 15 Sep 2011 03:02:28 GMT</pubDate>
</item>
<item>
 <title>Encryption of Your Meda Card rem file extension BlackBerry Pearl 8100 8120 8130</title>
 <description>Very Important If you have turned on encryption of your Media in your Options Screen either device or password security or both , then every new picture you take with your BlackBerry camera will have a .jpg.rem file extension indicating that file is encrypted. Media Card Media Card Support Encryption Mode Encrypt Media Files Mbss Storage Mode Support fluto Enable Mass Storage Mode When Connected If you set this to Yes then any pictures you take with your BlackBerry will be encrypted and much...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/pearl-8100-8120-8130/encryption-of-your-meda-card-rem-file-extension.html"&gt;&lt;img src="http://www.bmdwireless.com/pearl-8100-8120-8130/images/6667_169_492.jpg" style="width: 39pt; height: 34pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=7gFl6s6AwZk:ble-RUnhYSw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=7gFl6s6AwZk:ble-RUnhYSw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/pearl-8100-8120-8130/encryption-of-your-meda-card-rem-file-extension.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/pearl-8100-8120-8130/encryption-of-your-meda-card-rem-file-extension.html</guid>
 <media:content url="http://www.bmdwireless.com/pearl-8100-8120-8130/images/6667_169_492.jpg" type="image/jpeg" height="48" width="55" />
 <media:title />
 <media:description type="html" />
 <pubDate>Thu, 15 Sep 2011 02:48:10 GMT</pubDate>
</item>
<item>
 <title>Square brackets  indicate inclusive closed range matching Blackberry Java Development</title>
 <description>Round brackets indicate exclusive open range matching. Missing lower ranges imply 0. Missing upper ranges imply infinity. For example, 4.0, indicates any version between 4.0 and infinity. The following example prevents modules from loading on versions of the BlackBerry Device Software earlier than version 4.0. lt application id lt application_id gt lt application gt The following example provides alternative modules for different versions of the BlackBerry Device Software. lt application id lt...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=ILAOzVb4qsE:31ua7YGPrrw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=ILAOzVb4qsE:31ua7YGPrrw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/square-brackets-[-indicate-inclusive-closed-range-matching.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/square-brackets-[-indicate-inclusive-closed-range-matching.html</guid>
 <pubDate>Wed, 14 Sep 2011 23:50:21 GMT</pubDate>
</item>
<item>
 <title>Building the Tweet Space Game Logic BlackBerry Games Development</title>
 <description>The next step is to design the game itself. For BlackBerry smartphones that have operating system version 4.6.0 and greater, the game will open with the SVG Space Explorer animation from Chapter 8. But to keep this game compatible with the rest of the BlackBerry smartphones out there, the rest of the game will use a more standard, sprite-based implementation rather than using the SVG Space Explorer game logic . Let's start with an overview of the net.frogparrot.tweetspace package, shown in...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/games-development/building-the-tweet-space-game-logic.html"&gt;&lt;img src="http://www.bmdwireless.com/games-development/images/6685_150_253.jpg" style="width: 213pt; height: 142pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=WP9A40S_ZLk:yBHnLQwahVc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=WP9A40S_ZLk:yBHnLQwahVc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/games-development/building-the-tweet-space-game-logic.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/games-development/building-the-tweet-space-game-logic.html</guid>
 <media:content url="http://www.bmdwireless.com/games-development/images/6685_150_253.jpg" type="image/jpeg" height="199" width="298" />
 <media:title />
 <media:description type="html" />
 <pubDate>Wed, 14 Sep 2011 17:31:25 GMT</pubDate>
</item>
<item>
 <title>Create custom fields BlackBerry Application Developer Guide</title>
 <description>To override default field behaviour, create a custom field. ONote Do not use Screen objects for text input. Screen does not implement disambiguation, which is required for complex input methods such as international keyboards and the 7100 series of wireless handhelds. For seamless integration of the different input methods, extend Field or one of its subclasses. Your implementation of the DrawStyle interface enables drawing styles on custom fields. See Create an interface that is consistent...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=nIHAoEWOkNk:3Yzimqhj6RQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=nIHAoEWOkNk:3Yzimqhj6RQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/create-custom-fields.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/create-custom-fields.html</guid>
 <pubDate>Wed, 14 Sep 2011 15:34:22 GMT</pubDate>
</item>
<item>
 <title>Using Bluetooth serial port connections BlackBerry Application Developer Guide</title>
 <description>The Bluetooth API net.rim.device.api.bluetooth enables applications to access the Bluetooth Serial Port Profile and initiate a server or client Bluetooth serial port connection to a computer or other Bluetooth wireless technology enabled device. ONote Check for a NoClassDefFoundError when your application first accesses the Bluetooth API. This error is thrown if the system administrator restricts access to the Bluetooth API using application control. See Application control on page 16 for more...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=KdCJ1V7SdOk:QTvjTB2c6nA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=KdCJ1V7SdOk:QTvjTB2c6nA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/using-bluetooth-serial-port-connections.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/using-bluetooth-serial-port-connections.html</guid>
 <pubDate>Wed, 14 Sep 2011 15:29:05 GMT</pubDate>
</item>
<item>
 <title>Deploy sibling cod files BlackBerry Application Developer Guide</title>
 <description>The BlackBerry Java Development Environment BlackBerry JDE creates a single .cod file and jad file for an application. If an application contains more than 64 kilobytes of byte code or resource data, the BlackBerry IDE creates a .cod file that contains sibling .cod files. Only the BlackBerry Browser supports wireless installation of a .cod file that contains sibling .cod files. Q Note If the .cod file requires signing, update the .jad file to reflect the size of the signed .cod file.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=M8rwuWTtGB0:Qgat-proCjw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=M8rwuWTtGB0:Qgat-proCjw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/deploy-sibling-cod-files.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/deploy-sibling-cod-files.html</guid>
 <pubDate>Wed, 14 Sep 2011 13:44:03 GMT</pubDate>
</item>
<item>
 <title>Code example Lol BlackBerry Application Developer Guide</title>
 <description>The MobitexDemo.java code example demonstrates the use of the Mobitex radio layer APIs. Copyright C 2003-2005 Research In Motion Limited package com.rim.docs.samples.mobitexdemo import javax.microedition.io. import net.rim.device.api.ui. public final class MobitexDemo extends BaseApp implements MobitexDemoResource private MainScreen _mainScreen private EditField _pin private EditField _data private RichTextField _messages private SenderThread _sendThread private ReceiverThread _receiverThread...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=qfxKssk8TEk:jkxaqV_piK0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=qfxKssk8TEk:jkxaqV_piK0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/code-example-lol.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/code-example-lol.html</guid>
 <pubDate>Wed, 14 Sep 2011 12:00:08 GMT</pubDate>
</item>
<item>
 <title>Using a MessageConnection BlackBerry Games Development</title>
 <description>Listing 7-1 shows how to open a MessageConnection and use it to send and receive messages. Both sending and receiving are operations that need to be run on a separate thread, notthe event thread. As you can see in Listing 7-1, when a new message arrives for the MessageConnection, the BlackBerry platform uses the event thread to call notifyIncomingMessage on the connection's MessageListener which this class has been set to be , indicating which MessageConnection has a new message waiting. This...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/games-development/using-a-messageconnection.html"&gt;&lt;img src="http://www.bmdwireless.com/games-development/images/6685_107_164.jpg" style="width: 612pt; height: 22pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=SOKRWpZao8E:aB812ElcPW8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=SOKRWpZao8E:aB812ElcPW8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/games-development/using-a-messageconnection.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/games-development/using-a-messageconnection.html</guid>
 <media:content url="http://www.bmdwireless.com/games-development/images/6685_107_164.jpg" type="image/jpeg" height="31" width="857" />
 <media:title />
 <media:description type="html" />
 <pubDate>Wed, 14 Sep 2011 04:41:22 GMT</pubDate>
</item>
<item>
 <title>Use BlackBerry persistent storage Blackberry Java Development</title>
 <description>The BlackBerry persistence model provides a flexible and efficient way to store data. When writing an application specifically for BlackBerry devices, use the BlackBerry persistence model. The BlackBerry persistence model lets you save any Object in the persistent store. As a result, searching for data in the persistent store is faster than searching in the record store model. To store custom object types, the class of the custom type must use the Persistable interface. In the BlackBerry...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=qNNE33pvdm8:rtKaCfo21Xc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=qNNE33pvdm8:rtKaCfo21Xc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/use-blackberry-persistent-storage.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/use-blackberry-persistent-storage.html</guid>
 <pubDate>Tue, 13 Sep 2011 14:23:26 GMT</pubDate>
</item>
<item>
 <title>Displaying a Custom Map View BlackBerryDevelopment</title>
 <description>In addition to letting BlackBerry Maps automatically position and zoom the view, you can specify a view in terms of a latitude, longitude, and zoom level. To create a custom map view, you create an instance of net.rim.blackberry.api.maps.MapView with a latitude, longitude, and zoom. The zoom level ranges from 0 zoomed all the way in to MapView.MAX_ZOOM zoomed all the way out . The view will be centered on the given latitude and longitude. Let's add this functionality to our Location program....&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/displaying-a-custom-map-view.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_212_254.jpg" style="width: 540pt; height: 17pt;" title="MapsArguments args new MapsArguments view Invoke invokeApplication Invoke APP TYPE MAPS args"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=KmHbc5HAerg:QQ60W8a8lco:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=KmHbc5HAerg:QQ60W8a8lco:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/displaying-a-custom-map-view.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/displaying-a-custom-map-view.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_212_254.jpg" type="image/jpeg" height="24" width="756" />
 <media:title />
 <media:description type="html">MapsArguments args new MapsArguments view Invoke invokeApplication Invoke APP TYPE MAPS args</media:description>
 <pubDate>Tue, 13 Sep 2011 12:34:17 GMT</pubDate>
</item>
<item>
 <title>Edit fields BlackBerry Application Developer Guide</title>
 <description>An EditField enables users to type text in fields. AutoTextEditField, EditField, and PasswordEditField extend BasicEditField. ONote The net.rim.device.api.ui .component.TextField class, which extends the Field class, is abstract. Instantiate one of its subclasses, such as RichTextField or EditField, to create a UI field that displays text or enables a user to type text. You can apply the following filters to edit fields This filter limits the number of characters in the field. The default...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=m57ge5cu9mQ:TyrNFiHegRc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=m57ge5cu9mQ:TyrNFiHegRc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/edit-fields.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/edit-fields.html</guid>
 <pubDate>Tue, 13 Sep 2011 12:33:55 GMT</pubDate>
</item>
<item>
 <title>To Use Assisted and Unassisted Modes BlackBerryDevelopment</title>
 <description>With this criteria, the initial location is retrieved using Assisted GPS subsequent locations are fully unassisted Accuracy is 50 metres, cost is allowed, and preferred power consumption is high Criteria criteria new Criteria criteria.setHorizontalAccuracy 50 criteria.setVerticalAccuracy 50 criteria.setCostAllowed true &lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/to-use-assisted-and-unassisted-modes.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_204_243.jpg" style="width: 274pt; height: 13pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=6dipFodeWEA:9-sxq-Ibe1Q:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=6dipFodeWEA:9-sxq-Ibe1Q:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/to-use-assisted-and-unassisted-modes.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/to-use-assisted-and-unassisted-modes.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_204_243.jpg" type="image/jpeg" height="18" width="384" />
 <media:title />
 <media:description type="html" />
 <pubDate>Tue, 13 Sep 2011 09:24:09 GMT</pubDate>
</item>
<item>
 <title>Use the graphics context BlackBerry Application Developer Guide</title>
 <description>To draw with the Graphics class, obtain a graphics context for an individual field or the entire screen. To obtain a graphics context for an individual field, invoke the Graphics constructor. Bitmap surface new Bitmap i00, i00 BitmapField surfaceField new BitmapField surface Graphics graphics new Graphics surface To obtain a graphics context for the entire screen, invoke Screen. getGraphics . Graphics graphics Screen.getGraphics To draw using any graphics context, make sure your methods perform...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=toANffnldLM:zzLxyAhRYlU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=toANffnldLM:zzLxyAhRYlU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/use-the-graphics-context.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/use-the-graphics-context.html</guid>
 <pubDate>Tue, 13 Sep 2011 08:16:49 GMT</pubDate>
</item>
<item>
 <title>stepbystep FDN Phone List Blackberry Curve 8300 8500 8900</title>
 <description>2. When you have changed your settings, press the Escape button to go back one screen. FDN stands for Fixed Dialing Numbers. When you enable this feature, your BlackBerry can dial only the numbers you type in this list. To enable the FDN Phone List, you must choose a personal identification number PIN .This PIN is required if you want to enable, disable, or change the FDN Phone List. The typical purpose of this feature would be if you lend your BlackBerry Curve to someone and you want to limit...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/curve-8300-8500-8900/stepbystep-fdn-phone-list.html"&gt;&lt;img src="http://www.bmdwireless.com/curve-8300-8500-8900/images/6686_48_64.jpg" style="width: 172pt; height: 129pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=7nVzwPgJYMo:_aXl3VGQGKg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=7nVzwPgJYMo:_aXl3VGQGKg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/curve-8300-8500-8900/stepbystep-fdn-phone-list.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/curve-8300-8500-8900/stepbystep-fdn-phone-list.html</guid>
 <media:content url="http://www.bmdwireless.com/curve-8300-8500-8900/images/6686_48_64.jpg" type="image/jpeg" height="181" width="241" />
 <media:title />
 <media:description type="html" />
 <pubDate>Tue, 13 Sep 2011 05:01:57 GMT</pubDate>
</item>
<item>
 <title>Code sample Saving user name and password information Blackberry Java Development</title>
 <description>This code sample demonstrates how to create an application for BlackBerry device users that lets them view their current user names and passwords, type new user names and passwords, and save changes. Copyright C 2001-2005 Research In Motion Limited. All rights reserved. package com.rim.samples.docs.userinfo .ui.component. .ui.container. .system. import net.rim.device.ap import net.rim.device.ap import net.rim.device.ap import net.rim.device.ap import net.rim.device.api.util. import j ava.util....&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=iWtK1GBFOvk:xOa8kIpzPoU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=iWtK1GBFOvk:xOa8kIpzPoU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/java-development/code-sample-saving-user-name-and-password-information.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/java-development/code-sample-saving-user-name-and-password-information.html</guid>
 <pubDate>Tue, 13 Sep 2011 03:58:54 GMT</pubDate>
</item>
<item>
 <title>How to Easily Add New Addresses BlackBerry Pearl 8100 8120 8130</title>
 <description>On your BlackBerry Pearl, since your Address Book is closely tied to all the other icons Messages Email, Phone and Web Browser you have many methods to easily add new addresses Choice 1 Add a new address inside the Address Book. Choice 2 Add an address from an email message in Messages. Choice 3 Add an address from a phone call log in the Phone. Choice 4 Add a new address from an underlined email address or phone number anywhere Web Browser, Email, Tasks, MemoPad, etc. Choice 1 Add a new...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/pearl-8100-8120-8130/how-to-easily-add-new-addresses.html"&gt;&lt;img src="http://www.bmdwireless.com/pearl-8100-8120-8130/images/6667_33_230.jpg" style="width: 127pt; height: 45pt;" title=" nbsp Press the Menu key and select quot New Address quot"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=g0ZCQHt9bgs:uayYIWc-MBw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=g0ZCQHt9bgs:uayYIWc-MBw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/pearl-8100-8120-8130/how-to-easily-add-new-addresses.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/pearl-8100-8120-8130/how-to-easily-add-new-addresses.html</guid>
 <media:content url="http://www.bmdwireless.com/pearl-8100-8120-8130/images/6667_33_230.jpg" type="image/jpeg" height="63" width="178" />
 <media:title />
 <media:description type="html"> nbsp Press the Menu key and select quot New Address quot</media:description>
 <pubDate>Tue, 13 Sep 2011 02:05:00 GMT</pubDate>
</item>
<item>
 <title>IT Admin 1 BlackBerry Enterprise Server Administration</title>
 <description>IT Admin tasks provide IT administrative capabilities, such as IT policy assignment, application deployment and owner information. Resend IT Policy is used to manually push out the assigned IT policy. Assign IT Policy is for assigning a pre-defined IT policy to the user, as described in Chapter 6. Resend Peer-to-Peer Key provides the ability to resend the current peer-to-peer encryption key out to the selected user. Resend Service Book is used to redeploy the service book that controls wireless...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=dF2_A1pL5YI:EeWyA0t15rE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=dF2_A1pL5YI:EeWyA0t15rE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/enterprise-server-administration/it-admin-1.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/enterprise-server-administration/it-admin-1.html</guid>
 <pubDate>Fri, 09 Sep 2011 01:59:31 GMT</pubDate>
</item>
<item>
 <title>Taking a Look BlackBerryDevelopment</title>
 <description>Replace the ButtonFields in UiFunMainScreen with CustomButtonFields, and you'll see how the buttons look so far. In UiFunMainScreen's constructor, change the class for the button declaractions from ButtonField to CustomButtonField CustomButtonField clearButton CustomButtonField loginButton Then, in UiFunMainScreen's constructor replace the following lines clearButton new loginButton new clearButton new CustomButtonField Clear, Color.WHITE, Color.LIGHTGREY, 0 loginButton new CustomButtonField...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/taking-a-look.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_88_128.jpg" style="width: 187pt; height: 135pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=jhEVz2rg46Q:DjihuvIC-X4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=jhEVz2rg46Q:DjihuvIC-X4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/taking-a-look.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/taking-a-look.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_88_128.jpg" type="image/jpeg" height="189" width="262" />
 <media:title />
 <media:description type="html" />
 <pubDate>Thu, 08 Sep 2011 17:09:37 GMT</pubDate>
</item>
<item>
 <title>Adding the Image to the Screen BlackBerryDevelopment</title>
 <description>BitmapField takes a Bitmap object as an argument in its constructor, so we'll need to load the image before constructing the field. We'll import net.rim.device.api.system.Bitmap and add the following line to UiFunMainScreen's constructor load the bitmap from the image resource we just added Bitmap logoBitmap Bitmap logoBitmap The path for loading bitmaps, and all other resources, is relative to the location of your project definition file the .jdp file . We put the bitmap in a res folder at the...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/adding-the-image-to-the-screen.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_48_86.jpg" style="width: 540pt; height: 30pt;" title="Bitmap logoBitmap Bitmap getBitmapResource quot res apress log png quot"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=q7kGMdc6TYo:Z_eDDf1EjPM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=q7kGMdc6TYo:Z_eDDf1EjPM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/adding-the-image-to-the-screen.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/adding-the-image-to-the-screen.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_48_86.jpg" type="image/jpeg" height="42" width="756" />
 <media:title />
 <media:description type="html">Bitmap logoBitmap Bitmap getBitmapResource quot res apress log png quot</media:description>
 <pubDate>Thu, 08 Sep 2011 15:04:57 GMT</pubDate>
</item>
<item>
 <title>Listen for datagram status events BlackBerry Application Developer Guide</title>
 <description>If you want to register a datagram status listener, use a DatagramBase rather than a Datagram to hold data. DatagramBase implements the Datagram interface, but provides additional methods that are necessary to register a datagram status listener. BlackBerry Application Developer Guide Volume 1 Fundamentals dc is a DatagramConnection. Datagram d DatagramBase db DatagramBase d An error if this fails.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Pp5kuuQiWW0:R_4id8VPpio:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=Pp5kuuQiWW0:R_4id8VPpio:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/listen-for-datagram-status-events.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/listen-for-datagram-status-events.html</guid>
 <pubDate>Thu, 08 Sep 2011 13:58:15 GMT</pubDate>
</item>
<item>
 <title>Creating an Alternate Entry Point BlackBerryDevelopment</title>
 <description>An alternate entry point is exactly what it sounds like another way for the user or BlackBerry to start your application. An alternate entry point can provide another icon on the BlackBerry home screen to start your application. By clicking on the other icon, the same main method is called, but with different parameters, allowing you to run your application in different modes. Alternate entry points are also commonly used with applications that are configured to automatically start when the...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/development/creating-an-alternate-entry-point.html"&gt;&lt;img src="http://www.bmdwireless.com/development/images/6660_38_80.jpg" style="width: 299pt; height: 259pt;" title="Figure Creating alternate entry point for the Hello World application"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=mWfJUfqvoXs:b7jm1_wLBPw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=mWfJUfqvoXs:b7jm1_wLBPw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/creating-an-alternate-entry-point.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/creating-an-alternate-entry-point.html</guid>
 <media:content url="http://www.bmdwireless.com/development/images/6660_38_80.jpg" type="image/jpeg" height="363" width="419" />
 <media:title />
 <media:description type="html">Figure Creating alternate entry point for the Hello World application</media:description>
 <pubDate>Wed, 07 Sep 2011 15:51:28 GMT</pubDate>
</item>
<item>
 <title>Creating Basic Animation BlackBerryDevelopment</title>
 <description>We're going to spend a little bit of time on a topic that can really make your user interface shine animation. Now, this topic is more advanced, and really only recently have applications with fancier screen transitions and other effects started to appear. So you're fine without animation. This section will teach you a bit more about how the BlackBerry UI API works though, and it's kind of fun, so I recommend you at least read through it. The BlackBerry platform, at the time of this writing,...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=BAhRLb0f07Q:Qwt0itakJVA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=BAhRLb0f07Q:Qwt0itakJVA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <category>BlackBerryDevelopment</category>
 <link>http://www.bmdwireless.com/development/creating-basic-animation.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/development/creating-basic-animation.html</guid>
 <pubDate>Wed, 07 Sep 2011 14:34:58 GMT</pubDate>
</item>
<item>
 <title>Testing AJAX Support in Mobile Browsers BlackBerry Building Applications</title>
 <description>A device database can help you determine whether AJAX is supported by a mobile browser. Additionally, two public web sites provide Mobile Web tools that test whether a mobile browser supports AJAX. The Frost AJAX tests http pwmwa.com frost , http frostlib.org and the AJAX tests from MobileTech http ajax.mobiletech.mobi exercise mobile browsers and provide visual results of AJAX compatibility tests. The MobileTech test site saves mobile browser information and test results to include in...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=A2kLnwVTS7E:-yOpfxolnG0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=A2kLnwVTS7E:-yOpfxolnG0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/building-applications/testing-ajax-support-in-mobile-browsers.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/building-applications/testing-ajax-support-in-mobile-browsers.html</guid>
 <pubDate>Wed, 07 Sep 2011 09:42:15 GMT</pubDate>
</item>
<item>
 <title>stepbystep Call Waiting Blackberry Curve 8300 8500 8900</title>
 <description>2. The only choices here are Yes and No. Set this to No to disable the Call Waiting feature on your BlackBerry.When this is disabled, you are not audibly notified when you receive a call while on another call. 3. When you have changed your settings, press the Escape button to go back one screen. When you select Call Waiting, your BlackBerry first queries the carrier network to find out how you have your call forwarding set up.This means that you need to be in wireless coverage to change these...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/curve-8300-8500-8900/stepbystep-call-waiting.html"&gt;&lt;img src="http://www.bmdwireless.com/curve-8300-8500-8900/images/6686_47_58.jpg" style="width: 173pt; height: 169pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=agMul6j0trU:rvrLCxeJgOM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=agMul6j0trU:rvrLCxeJgOM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/curve-8300-8500-8900/stepbystep-call-waiting.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/curve-8300-8500-8900/stepbystep-call-waiting.html</guid>
 <media:content url="http://www.bmdwireless.com/curve-8300-8500-8900/images/6686_47_58.jpg" type="image/jpeg" height="237" width="242" />
 <media:title />
 <media:description type="html" />
 <pubDate>Tue, 06 Sep 2011 23:46:40 GMT</pubDate>
</item>
<item>
 <title>Customizing Enterprise Activation Options BlackBerry Enterprise Server Administration</title>
 <description>There are several options that are specific to the generation of enterprise activation passwords that you may wish to configure. BES allows you to configure the email message that is sent when generating wireless activation passwords, the default password length, the type of password that is generated and the default lifespan. The password type option is very useful, especially if you're deploying devices without full QWERTY keyboards, such as the BlackBerry Pearl or the 7100 series, as you can...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/enterprise-server-administration/customizing-enterprise-activation-options.html"&gt;&lt;img src="http://www.bmdwireless.com/enterprise-server-administration/images/6666_60_85.jpg" style="width: 350pt; height: 210pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=xxyAd1PIc3s:Z_EA8ARytqM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=xxyAd1PIc3s:Z_EA8ARytqM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/enterprise-server-administration/customizing-enterprise-activation-options.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/enterprise-server-administration/customizing-enterprise-activation-options.html</guid>
 <media:content url="http://www.bmdwireless.com/enterprise-server-administration/images/6666_60_85.jpg" type="image/jpeg" height="294" width="490" />
 <media:title />
 <media:description type="html" />
 <pubDate>Tue, 06 Sep 2011 20:14:03 GMT</pubDate>
</item>
<item>
 <title>Examples of Mobile JavaScript BlackBerry Building Applications</title>
 <description>The following two mobile JavaScript examples illustrate embedding client-side interactivity into a Mobile Web document in XHTML-MP. Listing 5-1 is a simple, annotated example of using EcmaScript MP in an XHTML-MP 1.1 Mobile Web document. The listing uses JavaScript to randomly assign a new background color to the lt div gt element with the ID of theBox when the document loads. The colors array is a list of six possible background images. The handleOnLoad event handler function is executed after...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/building-applications/examples-of-mobile-javascript.html"&gt;&lt;img src="http://www.bmdwireless.com/building-applications/images/6661_376_99.jpg" style="width: 394pt; height: 192pt;" title="Figure shows the Mobile Web document resulting from the code Listing displayed the Palm Pre Android and Opera Mini mobile browsers Notice how the background colors the box are different each browser"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=S0udxzcL8dw:Eb0XjEeMcCo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=S0udxzcL8dw:Eb0XjEeMcCo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/building-applications/examples-of-mobile-javascript.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/building-applications/examples-of-mobile-javascript.html</guid>
 <media:content url="http://www.bmdwireless.com/building-applications/images/6661_376_99.jpg" type="image/jpeg" height="269" width="552" />
 <media:title />
 <media:description type="html">Figure shows the Mobile Web document resulting from the code Listing displayed the Palm Pre Android and Opera Mini mobile browsers Notice how the background colors the box are different each browser</media:description>
 <pubDate>Tue, 06 Sep 2011 11:53:53 GMT</pubDate>
</item>
<item>
 <title>iNotes BlackBerry Secret Codes</title>
 <description>To integrate your iNotes account with your BlackBerry, perform the following steps 1. Log in to your BlackBerry Internet Service account. 2. Click the Profile link at the top of the page. 3. Click Other Email Accounts in the e-mail accounts section of your BIS profile. 5. Enter the information for your iNotes account, including e-mail address, username, and password. 6. Under Lotus Notes Domino, choose the option I can access my mailbox using a Web browser iNotes . 8. In the iNotes URL field,...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=2ymqFqzCLW4:hDc8y_kBSK4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=2ymqFqzCLW4:hDc8y_kBSK4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/secret-codes/inotes.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/secret-codes/inotes.html</guid>
 <pubDate>Tue, 06 Sep 2011 11:29:29 GMT</pubDate>
</item>
<item>
 <title>Code example 1 BlackBerry Application Developer Guide</title>
 <description>The sample applications in this guide extend the BaseApp class, which implements the following functionality extends the UiApplication class implements the KeyListener and TrackwheelListener interfaces defines variables, such as common menu items defines a method to create an application menu defines a method for menu selection defines an abstract method to exit the application Copyright C 2001-2005 Research In Motion Limited. AH rights reserved. package com.rim.samples.docs.baseapp import...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=4GFZn4SC0t8:iC9Xr52bx8o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=4GFZn4SC0t8:iC9Xr52bx8o:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/code-example-1.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/code-example-1.html</guid>
 <pubDate>Tue, 06 Sep 2011 08:26:21 GMT</pubDate>
</item>
<item>
 <title>User Input BlackBerry Games Development</title>
 <description>The game supports four types of user input device shaking through the accelerometer, clicking the screen, trackball movement, and key presses. They are translated into left and right saber rotations across the screen. I've already discussed accelerometer processing, which utilizes polling in processShakes , and calls LightSaber.shake to rotate the saber. Touch, trackball clicks, and key presses are handled by overriding their relevant listener methods inherited from FullScreen. private volatile...&lt;p&gt;&lt;a href="http://www.bmdwireless.com/games-development/user-input.html"&gt;&lt;img src="http://www.bmdwireless.com/games-development/images/6685_75_120.jpg" style="width: 344pt; height: 18pt;"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=ctlxP2TnGj4:LamKQm2lnhY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=ctlxP2TnGj4:LamKQm2lnhY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/games-development/user-input.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/games-development/user-input.html</guid>
 <media:content url="http://www.bmdwireless.com/games-development/images/6685_75_120.jpg" type="image/jpeg" height="25" width="482" />
 <media:title />
 <media:description type="html" />
 <pubDate>Tue, 06 Sep 2011 08:11:21 GMT</pubDate>
</item>
<item>
 <title>Playing Video Through the Browser BlackBerry Advanced APIs</title>
 <description>Video playback has been supported on BlackBerry devices for a while, but support in Java is fairly recent. If you want to play a video but can't or don't want to do so in your own app, you can pass the location of the video file to the device browser. Note that this works even if the video file is present on the local filesystem. The following sample code shows how to launch media through the browser on RIM software versions 4.0 and later. BrowserSession browserSession Browser.getDefaultSession...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=f3GAKjPoFuA:ik8ozNu1sIo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=f3GAKjPoFuA:ik8ozNu1sIo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/advanced-apis/playing-video-through-the-browser.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/advanced-apis/playing-video-through-the-browser.html</guid>
 <pubDate>Tue, 06 Sep 2011 00:45:34 GMT</pubDate>
</item>
<item>
 <title>List fields BlackBerry Application Developer Guide</title>
 <description>Lists enable you to create directories of items through which users can scroll and select individual or multiple entries. The BlackBerry address book is an example of a List object. You cannot directly populate the field entries with content. Your implementation of ListFieldCallback for a ListField or TreeFieldCallback for a TreeField draws the field. ListField ListField contains rows of selectable items. To display content in a ListField, set a ListFieldCallback for the list. See Create a...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=50HsMdLU2ZE:0NdWEYs_Kgk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=50HsMdLU2ZE:0NdWEYs_Kgk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/list-fields.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/list-fields.html</guid>
 <pubDate>Mon, 05 Sep 2011 21:07:45 GMT</pubDate>
</item>
<item>
 <title>Open a Bluetooth serial port connection BlackBerry Application Developer Guide</title>
 <description>To open a Bluetooth serial port connection, invoke Connector.open , providing the serial port information returned by BluetoothSerialPort.getSerialPortInfo as a parameter. The connection string returned by this method specifies btspp as the protocol and one of the following items If you are opening the connection as a client, the connection string returned by getSerialPortInfo .toString contains the device ID and port number on which the server device is listening. If you are opening the...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=QXm5pNBxvOs:75gaFToWgNY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=QXm5pNBxvOs:75gaFToWgNY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/application-developer-guide/open-a-bluetooth-serial-port-connection.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/application-developer-guide/open-a-bluetooth-serial-port-connection.html</guid>
 <pubDate>Mon, 05 Sep 2011 15:30:03 GMT</pubDate>
</item>
<item>
 <title>stepbystep Bluetooth Options Blackberry Curve 8300 8500 8900</title>
 <description>You may want to change how your BlackBerry supports Bluetooth.For example, you may want to change the name by which your BlackBerry advertises itself, or make your BlackBerry undiscoverable. 1. To change your Bluetooth options, from the Bluetooth main screen, press the Menu button, and choose Options. 2. Device Name is the name by which your BlackBerry advertises itself. It defaults to the name of your BlackBerry, such as BlackBerry 8900.You can change it to something like Craig's BlackBerry....&lt;p&gt;&lt;a href="http://www.bmdwireless.com/curve-8300-8500-8900/stepbystep-bluetooth-options.html"&gt;&lt;img src="http://www.bmdwireless.com/curve-8300-8500-8900/images/6686_142_171-bluetooth-hacker-blackberry-curve-8500.jpg" style="width: 194pt; height: 182pt;" alt="Bluetooth Hacker Blackberry Curve 8500"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=g0Gkg43HU5U:Xw858CBRi4U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BlackberryGuides?a=g0Gkg43HU5U:Xw858CBRi4U:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BlackberryGuides?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
 <link>http://www.bmdwireless.com/curve-8300-8500-8900/stepbystep-bluetooth-options.html</link>
 <guid isPermaLink="true">http://www.bmdwireless.com/curve-8300-8500-8900/stepbystep-bluetooth-options.html</guid>
 <media:content url="http://www.bmdwireless.com/curve-8300-8500-8900/images/6686_142_171-bluetooth-hacker-blackberry-curve-8500.jpg" type="image/jpeg" height="255" width="272" />
 <media:title>Bluetooth Hacker Blackberry Curve 8500</media:title>
 <media:description type="html" />
 <pubDate>Mon, 05 Sep 2011 14:08:19 GMT</pubDate>
</item>
 
</channel>

</rss>

