<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by mancode1009</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sun, 07 Jun 2026 19:31:10 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Internet explorer back button issue</title>
            <link>http://forum.lowyat.net/topic/2623122</link>
            <description>Hi, I got two pages Home.aspx and DisplayPoliciesList.aspx that contain the pdf file. The listview that display the link. When the user click the link, the pdf will display in the same page and when the user click the back button at the internet explorer should redirect back to DisplayPoliciesList.aspx but it redirect to Home.aspx. It working it firefox but not working in ie. Please help&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt; Private Sub RadListView1_ItemCommand&amp;#40;ByVal sender As Object, ByVal e As Telerik.Web.UI.RadListViewCommandEventArgs&amp;#41; Handles RadListView1.ItemCommand&lt;br /&gt;&lt;br /&gt;        Dim Alert As New InfoMessage&amp;#40;lblMessageTitle, lblMessage, panMessage, imgMessage&amp;#41;&lt;br /&gt;        Try&lt;br /&gt;            If e.CommandName = &amp;#34;OpenPDF&amp;#34; Then&lt;br /&gt;&lt;br /&gt;                Dim item As RadListViewItem = TryCast&amp;#40;e.ListViewItem, RadListViewItem&amp;#41;&lt;br /&gt;                Dim url As String = TryCast&amp;#40;item.FindControl&amp;#40;&amp;#34;lblURL&amp;#34;&amp;#41;, Label&amp;#41;.Text&lt;br /&gt;                Dim FilePath As FileInfo = New FileInfo&amp;#40;Server.MapPath&amp;#40;url&amp;#41;&amp;#41;&lt;br /&gt;&lt;br /&gt;                If FilePath.Exists Then&lt;br /&gt;                    Response.ContentType = &amp;#34;application/pdf&amp;#34;&lt;br /&gt;                    Response.TransmitFile&amp;#40;Server.MapPath&amp;#40;url&amp;#41;&amp;#41;&lt;br /&gt;&lt;br /&gt;                    Response.End&amp;#40;&amp;#41;&lt;br /&gt;                Else&lt;br /&gt;                    Alert.DisplayError&amp;#40;&amp;#34;Document not found.&amp;#34;&amp;#41;&lt;br /&gt;                End If&lt;br /&gt;            End If&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            Alert.DisplayError&amp;#40;ex.Message&amp;#41;&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Tue, 11 Dec 2012 10:29:37 +0800</pubDate>
        </item>
        <item>
            <title>Javascript open window</title>
            <link>http://forum.lowyat.net/topic/2593040</link>
            <description>Hi guys, I dont know why I need to click two times the link button than only the new window will pop out. Please help.Thanks&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt; Protected Sub lnkNew_Click&amp;#40;ByVal sender As Object, ByVal e As EventArgs&amp;#41;&lt;br /&gt;&lt;br /&gt;        Dim lnkNew As GridDataItem = TryCast&amp;#40;sender, LinkButton&amp;#41;.NamingContainer&lt;br /&gt;        Dim url As String = &amp;#34;Home.aspx&amp;#34;&lt;br /&gt;        lnkNew.Attributes.Add&amp;#40;&amp;#34;onclick&amp;#34;, &amp;#34;window.open&amp;#40;&amp;#39;&amp;#34; &amp;amp; url &amp;amp; &amp;#34;&amp;#39;, &amp;#39;newwindow&amp;#39;, toolbar=no,location=no,menubar=no,width=1200,height=400,resizable=yes,scrollbars=yes,top=50,left=50&amp;#39;&amp;#41;;&amp;#34;&amp;#41;&lt;br /&gt;   End Sub&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Sat, 17 Nov 2012 16:45:22 +0800</pubDate>
        </item>
        <item>
            <title>Javascript problem</title>
            <link>http://forum.lowyat.net/topic/2529640</link>
            <description>Hi guys, I dont know what wrong with my codes, it can work in IE but not working firefox and chrome. Please help. Thanks.&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt; function EnableTextbox&amp;#40;&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var check = document.getElementById&amp;#40;&amp;#39;&amp;#60;%=gvCustomer.ClientID%&amp;#62;&amp;#39;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for &amp;#40;var i = 1; i &amp;#60;= check.rows.length - 1; i++&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if &amp;#40;check.rows&amp;#91;i&amp;#93;.cells&amp;#91;0&amp;#93;.children&amp;#40;0&amp;#41;.checked = true&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;check.rows&amp;#91;i&amp;#93;.cells&amp;#91;3&amp;#93;.children&amp;#40;0&amp;#41;.disabled = false&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;check.rows&amp;#91;i&amp;#93;.cells&amp;#91;3&amp;#93;.children&amp;#40;0&amp;#41;.disabled = true&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &amp;#60;asp&amp;#58;TemplateField&amp;#62;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#60;ItemTemplate&amp;#62;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#60;asp&amp;#58;CheckBox ID=&amp;#34;chkSelect&amp;#34; runat=&amp;#34;server&amp;#34; onClick=&amp;#34;EnableTextbox&amp;#40;this.id&amp;#41;&amp;#34; /&amp;#62;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#60;/ItemTemplate&amp;#62;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#60;ItemStyle HorizontalAlign=&amp;#34;Center&amp;#34; /&amp;#62;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#60;/asp&amp;#58;TemplateField&amp;#62;&lt;br /&gt;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Sun, 30 Sep 2012 18:02:10 +0800</pubDate>
        </item>
        <item>
            <title>ASP.NET send email</title>
            <link>http://forum.lowyat.net/topic/2171344</link>
            <description>Guy, I want to send an email in the web application but it return me the error message &amp;#39;failure in sending mail&amp;#39;.Here is my code.Guy can u check what wrong with my code ? thanks&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;using System;&lt;br /&gt;using System.Net;&lt;br /&gt;using System.Net.Mail;&lt;br /&gt;&lt;br /&gt;namespace Email_2&lt;br /&gt;{&lt;br /&gt; &amp;nbsp; &amp;nbsp;public partial class WebForm1 &amp;#58; System.Web.UI.Page&lt;br /&gt; &amp;nbsp; &amp;nbsp;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;protected void btnSend_Click&amp;#40;object sender, EventArgs e&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MailMessage msg = new MailMessage&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;msg.From = new MailAddress&amp;#40;txtSender.Text, &amp;#34;Sender Name&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;msg.To.Add&amp;#40;new MailAddress&amp;#40;txtDestination.Text&amp;#41;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;msg.Subject = txtSubject.Text;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;msg.Body = txtMessage.Text;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;msg.IsBodyHtml = true;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;SmtpClient smtp = new SmtpClient&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;smtp.Host = &amp;#34;smtp.gmail.com&amp;#34;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;smtp.Credentials = new NetworkCredential&amp;#40;txtSender.Text, txtPassword.Text&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lblMessage.Visible = true;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;smtp.EnableSsl = true;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;try&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;smtp.Send&amp;#40;msg&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lblMessage.Text = &amp;#34;Email already send &amp;#33;&amp;#34;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;catch &amp;#40;Exception ex&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lblMessage.Text = ex.Message;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Sat, 31 Dec 2011 10:18:59 +0800</pubDate>
        </item>
        <item>
            <title>Visual basic error</title>
            <link>http://forum.lowyat.net/topic/1982436</link>
            <description>guyz i am getting error when compiling my application in visual basic 6 in windows 98 and getting error &amp;quot;Internal compile error&amp;quot;.please help thanks.</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Tue, 02 Aug 2011 22:13:39 +0800</pubDate>
        </item>
        <item>
            <title>Enable Printer Setup in Crystal Report</title>
            <link>http://forum.lowyat.net/topic/1928630</link>
            <description>Halo guyz, How do I enable the printer setup button in the crystal report so that it can choose the other printer device. I am using vb 6. Please Help &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Wed, 22 Jun 2011 17:04:26 +0800</pubDate>
        </item>
        <item>
            <title>Convert doc to PDF in vb 6</title>
            <link>http://forum.lowyat.net/topic/1890781</link>
            <description>Guys, I have the problem to convert the doc document to PDF. I search around the internet but it still cannot solve my problem&lt;br /&gt;.I am using TextControl in visual basic to create the document .Please help thx</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Tue, 24 May 2011 17:33:57 +0800</pubDate>
        </item>
        <item>
            <title>DateTimePicker (VB 6)</title>
            <link>http://forum.lowyat.net/topic/1871976</link>
            <description>Hello guyz, I now need to insert a null values into the SQL Server from the Datetimepicker and I already set the the Datetimepicker to null values but still insert the&lt;br /&gt;default date into the SQL server. I using VB 6 .Please help  &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Tue, 10 May 2011 16:03:34 +0800</pubDate>
        </item>
        <item>
            <title>How to go to Hong Leong Bank Damansara Perdana ?</title>
            <link>http://forum.lowyat.net/topic/1840226</link>
            <description>How to go to the Hong Leong Bank  Damansara Perdana from KL Sentral by public transport LRT/Bus ? thanks</description>
            <author>mancode1009</author>
            <category>Serious Kopitiam</category>
            <pubDate>Mon, 18 Apr 2011 09:32:23 +0800</pubDate>
        </item>
        <item>
            <title>How to go to the Perdana The Place from KL Sentral</title>
            <link>http://forum.lowyat.net/topic/1837300</link>
            <description>How to go Perdana The Place from KL Sentral by public transport LRT/Bus . Thanks</description>
            <author>mancode1009</author>
            <category>Serious Kopitiam</category>
            <pubDate>Fri, 15 Apr 2011 21:38:04 +0800</pubDate>
        </item>
        <item>
            <title>FYP Title</title>
            <link>http://forum.lowyat.net/topic/1749022</link>
            <description>I am finding a suitable title for my FYP. Currently i thinking about develop the e-commerce website such as selling book online but my supervisor say already exists in the market,he want the system that different in the current market.I have no idea what title to choose.Anyone can give me some idea.Thx &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Thu, 10 Feb 2011 20:11:47 +0800</pubDate>
        </item>
        <item>
            <title>ASP.NET Error</title>
            <link>http://forum.lowyat.net/topic/1531836</link>
            <description>I currently developing a system using vs 2010 now i facing an error really stunt me which is my entire webpage become white and full of code just as below :&lt;br /&gt;Please help thanks..&lt;br /&gt;&lt;img src='http://img15.imageshack.us/img15/2725/erroruq.th.png' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Thu, 19 Aug 2010 21:17:38 +0800</pubDate>
        </item>
        <item>
            <title>Windows Live Messenger login problem</title>
            <link>http://forum.lowyat.net/topic/1490231</link>
            <description>I already had this problem since two months ago but untill now the problem still occur,I totally cannot login windows live messenger but it work fine when I login to my msn mail.I need to use meebo or ebuddy to login to msn.Anyone please help me ....Thanks &lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>mancode1009</author>
            <category>Technical Support</category>
            <pubDate>Wed, 14 Jul 2010 21:54:30 +0800</pubDate>
        </item>
        <item>
            <title>visual studio 2008 profesional crystal report</title>
            <link>http://forum.lowyat.net/topic/1362184</link>
            <description>Do you all know where to download crystal report for visual studio 2008 profesional.I try to google but cannot find .please help .I need it urgently &lt;br /&gt;.thanks..</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Sat, 20 Mar 2010 10:37:42 +0800</pubDate>
        </item>
        <item>
            <title>combobox</title>
            <link>http://forum.lowyat.net/topic/1259583</link>
            <description>How to display the text from the selected combobox .For example the select the category id form the combobox and display it at category textbox. At form load there the combobox should not select anything and the textbox is empty untill the user select from the combobox only display it at textbox . i quite confused now .please help here are my code thx.&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt; &amp;nbsp;Private Sub Form2_Load&amp;#40;ByVal sender As System.Object, ByVal e As System.EventArgs&amp;#41; Handles MyBase.Load&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Me.CategoryTableAdapter.Fill&amp;#40;Me.ComputerDataSet.Category&amp;#41;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;With Category_IDComboBox&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;.DataSource = CategoryBindingSource&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;.DisplayMember = &amp;#34;Category ID&amp;#34;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End With&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Sub&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt; &lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt; Private Sub Category_IDComboBox_SelectionChangeCommitted&amp;#40;ByVal sender As Object, ByVal e As System.EventArgs&amp;#41; Handles Category_IDComboBox.SelectionChangeCommitted&lt;br /&gt; &amp;nbsp; &amp;nbsp;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Category_TypeTextBox.DataBindings.Add&amp;#40;&amp;#34;text&amp;#34;, CategoryBindingSource, &amp;#34;Category Type&amp;#34;&amp;#41;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Mon, 14 Dec 2009 19:11:14 +0800</pubDate>
        </item>
        <item>
            <title>Marquee</title>
            <link>http://forum.lowyat.net/topic/1249113</link>
            <description>how to put marquee text in vb.net ?anyone can show me how to to code . Thx</description>
            <author>mancode1009</author>
            <category>Codemasters</category>
            <pubDate>Fri, 04 Dec 2009 22:14:47 +0800</pubDate>
        </item>
        <item>
            <title>Windows 7 Profesional</title>
            <link>http://forum.lowyat.net/topic/1233078</link>
            <description>what difference between x64 and x86 ? and can my system support it and my current os is vista basic 32 bit ? &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>mancode1009</author>
            <category>Software</category>
            <pubDate>Thu, 19 Nov 2009 21:28:08 +0800</pubDate>
        </item>
        <item>
            <title>Tiff file</title>
            <link>http://forum.lowyat.net/topic/1204324</link>
            <description>how to open file with tiff format ?I try to open with window photo gallery but it cannot open .TQ</description>
            <author>mancode1009</author>
            <category>Technical Support</category>
            <pubDate>Sat, 24 Oct 2009 11:38:13 +0800</pubDate>
        </item>
        <item>
            <title>Printer cant scan</title>
            <link>http://forum.lowyat.net/topic/1041674</link>
            <description>I currently using HP Deskjet F4185.I can&amp;#39;t scan document into my pc but when come to print a document from pc,It work fine.I already tried to unistall the HP printer software and reinnstall back but the problem still there.Please help &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>mancode1009</author>
            <category>Technical Support</category>
            <pubDate>Mon, 25 May 2009 17:45:55 +0800</pubDate>
        </item>
        <item>
            <title>Mcafee VirusScan Enterprise 8.7.0i</title>
            <link>http://forum.lowyat.net/topic/924036</link>
            <description>I currently using using Mcafee VirusScan Enterprise 8.7.0i ,after using it my computer very slow to boot up ..&lt;br /&gt;pls gv some advise about this antivirus thx &lt;!--emo&amp;:peace:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_rolleyes.gif' border='0' style='vertical-align:middle' alt='icon_rolleyes.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>mancode1009</author>
            <category>Security &amp;amp; Privacy</category>
            <pubDate>Tue, 03 Feb 2009 11:57:41 +0800</pubDate>
        </item>
    </channel>
</rss>
