<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Bytes - answers</title>
		<link>http://bytes.com</link>
		<description>Mobile Development - Get answers to mobile development questions, J2ME, Symbian, Windows Mobile, Palm, WAP, WML, iPhone,  SDKs, and more.</description>
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 00:30:41 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://bytes.com/images/misc/rss.jpg</url>
			<title>Bytes - answers</title>
			<link>http://bytes.com</link>
		</image>
		<item>
			<title>Is attending the Forum Nokia conference worthwhile?</title>
			<link>http://bytes.com/topic/mobile-development/answers/876962-attending-forum-nokia-conference-worthwhile</link>
			<pubDate>Fri, 13 Nov 2009 07:17:50 GMT</pubDate>
			<description>Hi everyone, 
I am a mobile application developer... learning the tricks of the trade would be a better description.. was thinking about attending...</description>
			<content:encoded><![CDATA[<div>Hi everyone,<br />
I am a mobile application developer... learning the tricks of the trade would be a better description.. was thinking about attending the Forum Nokia Conference'09 in Bangalore on 7th December. Can anyone tell me whether its worth attending? Did anyone take part in the previous conferences? What are the prospects for an aspiring budding developer? Looking forward to some feedback</div>

]]></content:encoded>
			<category domain="http://bytes.com/topic/mobile-development/answers/">answers</category>
			<dc:creator>jaideepreddy09</dc:creator>
			<guid isPermaLink="true">http://bytes.com/topic/mobile-development/answers/876962-attending-forum-nokia-conference-worthwhile</guid>
		</item>
		<item>
			<title>how do I open a sql database connection for mobile device while running vb emulator?</title>
			<link>http://bytes.com/topic/mobile-development/answers/876569-how-do-i-open-sql-database-connection-mobile-device-while-running-vb-emulator</link>
			<pubDate>Thu, 05 Nov 2009 06:47:28 GMT</pubDate>
			<description><![CDATA[I've been trying to open a connection to my sql database so i can add new rows and make edits to already existing rows. On the ~conn.Open();~ part i...]]></description>
			<content:encoded><![CDATA[<div>I've been trying to open a connection to my sql database so i can add new rows and make edits to already existing rows. On the ~conn.Open();~ part i keep getting an expection thrown about the sqlinternalconnection... how do i fix this code or is there something i need to change in vb or the sql server settings themselves? <br />
<br />
<!-- CODE -->
<div id="codeHolder" class="codeHolder" style="width: 500px;">
<div class="codeHeader">
	<span class="codeLink" onclick="Blur(this, this.parentNode.parentNode, getChildren(this),true);">Expand</span><span class="codeDivider">|</span><span class="codeLink" onclick="selectAll(this);">Select</span><span class="codeDivider">|</span><span class="codeLink" onclick="WordWrap(this);">Wrap</span><span class="codeDivider">|</span><span class="codeLink" onclick="LineNumbers(this);">Line Numbers</span>
</div>

<div class="codeContent" style="display: block; width: 500px; white-space: nowrap;">
	<ol START="1" highlight="true">

<li class="codeLI">
string&nbsp;pName&nbsp;=&nbsp;textBox6.Text.Trim();</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string&nbsp;pMobile1&nbsp;=&nbsp;textBox5.Text.Trim();</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string&nbsp;pHome&nbsp;=&nbsp;textBox3.Text.Trim();</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string&nbsp;pBusiness&nbsp;=&nbsp;textBox2.Text.Trim();</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string&nbsp;pEmail&nbsp;=&nbsp;textBox1.Text.Trim();</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string&nbsp;pCategory&nbsp;=&nbsp;comboBox1.SelectedText.Trim();</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Debug.Write(&quot;test0&nbsp;&quot;);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SqlConnection&nbsp;conn&nbsp;=&nbsp;new&nbsp;SqlConnection(</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;Server&nbsp;=&nbsp;CLB125_25;&nbsp;Data&nbsp;Source&nbsp;=&nbsp;\\C:Documents&nbsp;and&nbsp;Settings\\SLU&nbsp;Student\\Desktop\\SmartDeviceProject1\\database1.sdf&quot;);</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Debug.Write(&quot;test1&nbsp;&quot;);</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SqlDataReader&nbsp;rdr&nbsp;=&nbsp;null;</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Debug.Write(&quot;test2&nbsp;&quot;);</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;conn.Open();</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Debug.Write(&quot;test3&quot;);</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string&nbsp;actionString&nbsp;=&nbsp;&quot;INSERT&nbsp;INTO&nbsp;Contacts(Name,&nbsp;Home_Phone,&nbsp;E-Mail,&nbsp;Address,&nbsp;Mobile,&nbsp;Category)&nbsp;VALUES(&quot;&nbsp;+&nbsp;pName.ToString()&nbsp;+&nbsp;&quot;,&quot;&nbsp;+&nbsp;pHome.ToString()&nbsp;+&nbsp;&quot;,&quot;&nbsp;+&nbsp;pEmail.ToString()&nbsp;+&nbsp;&quot;,&quot;&nbsp;+&nbsp;pBusiness.ToString()&nbsp;+&nbsp;&quot;,&quot;&nbsp;+&nbsp;pMobile1.ToString()&nbsp;+&nbsp;&quot;,&quot;&nbsp;+&nbsp;pCategory.ToString()&nbsp;+&nbsp;&quot;)&quot;;</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SqlCommand&nbsp;cmd&nbsp;=&nbsp;new&nbsp;SqlCommand(actionString,&nbsp;conn);</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cmd.ExecuteNonQuery();</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rdr&nbsp;=&nbsp;cmd.ExecuteReader();</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;while&nbsp;(rdr.Read())</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Console.WriteLine(rdr[0]);</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch&nbsp;(SqlException&nbsp;d)</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Console.Write(d);</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;finally</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(rdr&nbsp;!=&nbsp;null)</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rdr.Close();</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</li>
<li class="codeLI">&nbsp;</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(conn&nbsp;!=&nbsp;null)</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;conn.Close();</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</li>
<li class="codeLI">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</li>
<li class="codeLI">&nbsp;</li>

	</ol>
</div>
</div>
<!-- /CODE -->


</div>

]]></content:encoded>
			<category domain="http://bytes.com/topic/mobile-development/answers/">answers</category>
			<dc:creator>zakuro</dc:creator>
			<guid isPermaLink="true">http://bytes.com/topic/mobile-development/answers/876569-how-do-i-open-sql-database-connection-mobile-device-while-running-vb-emulator</guid>
		</item>
		<item>
			<title>Proximity marketing from mobiles?</title>
			<link>http://bytes.com/topic/mobile-development/answers/876499-proximity-marketing-mobiles</link>
			<pubDate>Tue, 03 Nov 2009 22:48:38 GMT</pubDate>
			<description>Hi everyone, 
 
I am working on a project that involves proximity marketing with Bluetooth, I have been looking for similar solutions on the...</description>
			<content:encoded><![CDATA[<div>Hi everyone,<br />
<br />
I am working on a project that involves proximity marketing with Bluetooth, I have been looking for similar solutions on the internet, so far almost all of them offer a dedicated computer or device that sends the publicity to nearby mobile devices using Bluetooth.<br />
<br />
But I have never seen one that constantly sends the publicity from a mobile device to other devices.<br />
<br />
Is it viable an app written in JavaME that runs in a wide variety of devices that does the same as the dedicated equipment or device for proximity marketing?<br />
<br />
Thanks.</div>

]]></content:encoded>
			<category domain="http://bytes.com/topic/mobile-development/answers/">answers</category>
			<dc:creator>paidblow</dc:creator>
			<guid isPermaLink="true">http://bytes.com/topic/mobile-development/answers/876499-proximity-marketing-mobiles</guid>
		</item>
		<item>
			<title>PDA office mobile</title>
			<link>http://bytes.com/topic/mobile-development/answers/876433-pda-office-mobile</link>
			<pubDate>Mon, 02 Nov 2009 19:42:14 GMT</pubDate>
			<description>hello 
 
I have a HTC PDA P3401 i, which has mobile office, now when i did some work over computer MS office and then i transfer the file to PDA, it...</description>
			<content:encoded><![CDATA[<div>hello<br />
<br />
I have a HTC PDA P3401 i, which has mobile office, now when i did some work over computer MS office and then i transfer the file to PDA, it doesnt works, please help<br />
<br />
Thanks and regards</div>

]]></content:encoded>
			<category domain="http://bytes.com/topic/mobile-development/answers/">answers</category>
			<dc:creator>shubby</dc:creator>
			<guid isPermaLink="true">http://bytes.com/topic/mobile-development/answers/876433-pda-office-mobile</guid>
		</item>
		<item>
			<title>ebook maker for mobile (cell phone)</title>
			<link>http://bytes.com/topic/mobile-development/answers/876430-ebook-maker-mobile-cell-phone</link>
			<pubDate>Mon, 02 Nov 2009 18:25:36 GMT</pubDate>
			<description><![CDATA[hello  
i search for "eBook maker" or "software maker" for mobile and cell phone (Nokia, LG, Sonyericson) that contain this features: 
 
- support...]]></description>
			<content:encoded><![CDATA[<div>hello <br />
i search for &quot;eBook maker&quot; or &quot;software maker&quot; for mobile and cell phone (Nokia, LG, Sonyericson) that contain this features:<br />
<br />
- support Unicode language<br />
- search engine in content<br />
- Can provide on all mobile phones with Java capabilities contents Run <br />
- View and comment Unicode language completely independent of mobile <br />
- Displaying geographic map <br />
- Displaying a map of geographical information <br />
- View list of possible services <br />
- Telephone calls automatically <br />
- Call GPRS network <br />
- Scheme very simple feature list (Tree View) <br />
- View the full and equal in all cell phones <br />
- The ability to completely change the view with the software-related items <br />
- The ability to compress data to 4 times <br />
- Tell all your Nmvdn included software <br />
- Features software using the settings page <br />
- Display logo when advertising started software <br />
- Connections to the banking system setting <br />
- Connections to the news system (minirss) <br />
- Ability to send and receive SMS<br />
- multi theme<br />
- multi language output book<br />
<br />
I think this is a dream request. But if you find software that is part of the facilities is good. Of friends, everyone has introduced software to offer.</div>

]]></content:encoded>
			<category domain="http://bytes.com/topic/mobile-development/answers/">answers</category>
			<dc:creator>ghasembaghi</dc:creator>
			<guid isPermaLink="true">http://bytes.com/topic/mobile-development/answers/876430-ebook-maker-mobile-cell-phone</guid>
		</item>
		<item>
			<title>Java application for a handheld device</title>
			<link>http://bytes.com/topic/mobile-development/answers/876385-java-application-handheld-device</link>
			<pubDate>Sun, 01 Nov 2009 23:09:51 GMT</pubDate>
			<description><![CDATA[Hello,  
I am novice in developing java applications for PDAs, e.g handhelds. I just want to start a simple application, but don't know how to test...]]></description>
			<content:encoded><![CDATA[<div>Hello, <br />
I am novice in developing java applications for PDAs, e.g handhelds. I just want to start a simple application, but don't know how to test which version of java is available on the device. Can somebody tell me how to test it and how to run the small &quot;hello world&quot; programm? Do I need to install some special environment on the handheld or just to run the file. The device runs Windows CE 5.0 system. <br />
Thank you for the help in advance.<br />
Cherl</div>

]]></content:encoded>
			<category domain="http://bytes.com/topic/mobile-development/answers/">answers</category>
			<dc:creator>cherl</dc:creator>
			<guid isPermaLink="true">http://bytes.com/topic/mobile-development/answers/876385-java-application-handheld-device</guid>
		</item>
		<item>
			<title><![CDATA[Contents of form fields not showing up in iPhone's Safari browser]]></title>
			<link>http://bytes.com/topic/mobile-development/answers/875970-contents-form-fields-not-showing-up-iphones-safari-browser</link>
			<pubDate>Fri, 23 Oct 2009 21:35:00 GMT</pubDate>
			<description>Is there an option we are supposed to check in Acrobat that will allow form field content to display in the iPhone Safari browser/viewer? When I...</description>
			<content:encoded><![CDATA[<div>Is there an option we are supposed to check in Acrobat that will allow form field content to display in the iPhone Safari browser/viewer? When I navigate to an online PDF form already filled in with Firefox on my desktop computer I see them fine. When viewed in Safari on iPhone 3.0, fields are blank. <br />
<br />
Example:<br />
<br />
http://67.199.85.166/racing/setups/b44_thielke_jconceptswave_2009.pdf<br />
<br />
Thanks,<br />
<br />
Steve</div>

]]></content:encoded>
			<category domain="http://bytes.com/topic/mobile-development/answers/">answers</category>
			<dc:creator>StevenHu</dc:creator>
			<guid isPermaLink="true">http://bytes.com/topic/mobile-development/answers/875970-contents-form-fields-not-showing-up-iphones-safari-browser</guid>
		</item>
		<item>
			<title>How Transparent the background of link label control?</title>
			<link>http://bytes.com/topic/mobile-development/answers/875906-how-transparent-background-link-label-control</link>
			<pubDate>Thu, 22 Oct 2009 13:12:28 GMT</pubDate>
			<description>i am developing smart phone application with VS 2005 using C#. 
i am trying to transparent  the background of link label control which dynamically ...</description>
			<content:encoded><![CDATA[<div>i am developing smart phone application with VS 2005 using C#.<br />
i am trying to transparent  the background of link label control which dynamically  added in panel. i try with  following code to transparent the background  of link label control .<br />
<!-- CODE -->
<div id="codeHolder" class="codeHolder" style="width: 500px;">
<div class="codeHeader">
	<span class="codeLink" onclick="Blur(this, this.parentNode.parentNode, getChildren(this),true);">Expand</span><span class="codeDivider">|</span><span class="codeLink" onclick="selectAll(this);">Select</span><span class="codeDivider">|</span><span class="codeLink" onclick="WordWrap(this);">Wrap</span><span class="codeDivider">|</span><span class="codeLink" onclick="LineNumbers(this);">Line Numbers</span>
</div>

<div class="codeContent" style="display: block; width: 500px; white-space: nowrap;">
	<ol START="1" highlight="true">

<li class="codeLI">
&nbsp;&nbsp;LinkLabel&nbsp;lnklbl&nbsp;=&nbsp;new&nbsp;LinkLabel();</li>
<li class="codeLI">
lnklbl&nbsp;.Text=&quot;Click&nbsp;Me&quot;;</li>
<li class="codeLI">
lnklbl&nbsp;.BackColor&nbsp;=&nbsp;Color.Transparent;</li>
<li class="codeLI">&nbsp;</li>

	</ol>
</div>
</div>
<!-- /CODE -->


this code not work and background  show with white color.<br />
please give me idea to transparent the background of this dynamic control.<br />
thankx</div>

]]></content:encoded>
			<category domain="http://bytes.com/topic/mobile-development/answers/">answers</category>
			<dc:creator>Rishabh Indianic</dc:creator>
			<guid isPermaLink="true">http://bytes.com/topic/mobile-development/answers/875906-how-transparent-background-link-label-control</guid>
		</item>
		<item>
			<title>experts help me to edit (.bin) file</title>
			<link>http://bytes.com/topic/mobile-development/answers/875896-experts-help-me-edit-bin-file</link>
			<pubDate>Thu, 22 Oct 2009 10:36:48 GMT</pubDate>
			<description>respected forum members  
 
 
   plz help me edit bin file. 
 
  which tools to be used, for editing bin file.</description>
			<content:encoded><![CDATA[<div>respected forum members <br />
<br />
<br />
   plz help me edit bin file.<br />
<br />
  which tools to be used, for editing bin file.</div>

]]></content:encoded>
			<category domain="http://bytes.com/topic/mobile-development/answers/">answers</category>
			<dc:creator>irfan123</dc:creator>
			<guid isPermaLink="true">http://bytes.com/topic/mobile-development/answers/875896-experts-help-me-edit-bin-file</guid>
		</item>
	</channel>
</rss>
