<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by IceBikers</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Wed, 25 Nov 2009 02:49:07 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>visa/master service card</title>
            <link>http://forum.lowyat.net/topic/1210049</link>
            <description>Hi, anyone has been call by this so call visa/master card centre and offer you a privilleges service card with lot of benefits? &lt;br /&gt;&lt;br /&gt;i got this call, say recommended by bank, need to pay 588 once for life(2800++ for non bank recommend).&lt;br /&gt;&lt;br /&gt;wonder this is real or fraud??</description>
            <author>IceBikers</author>
            <category>Finance, Business and Investment House</category>
            <pubDate>Thu, 29 Oct 2009 15:56:48 +0800</pubDate>
        </item>
        <item>
            <title>How would u answer - what have u done in OOP?</title>
            <link>http://forum.lowyat.net/topic/1164079</link>
            <description>Hi fellow software developers,&lt;br /&gt;&lt;br /&gt;I would like to ask whether you have been thrown a queston like below,&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;i&gt;&amp;quot;what have you done in OOP&amp;quot;&lt;/i&gt;&lt;/b&gt;  (Object Oriented Programming)&lt;br /&gt;&lt;br /&gt;I&amp;#39;m doing vb.net, more than 70% of my works are in UI and I&amp;#39;m more likely a street smart person (aint smart also lol)&lt;br /&gt;&lt;br /&gt;I couldn&amp;#39;t figure out how would and should I answer this question??&lt;br /&gt;&lt;br /&gt;I&amp;#39;m asking this because i saw it from a job vacancy that we need to tell how much we know.&lt;br /&gt;&lt;br /&gt;p/s: is there any site can test OOP skill level??</description>
            <author>IceBikers</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Tue, 15 Sep 2009 10:28:52 +0800</pubDate>
        </item>
        <item>
            <title>which proc is faster between core 2 and core duo</title>
            <link>http://forum.lowyat.net/topic/1148733</link>
            <description>Hi,&lt;br /&gt;&lt;br /&gt;i have 2 laptop spec , both different processor as below:&lt;br /&gt;&lt;br /&gt;Intel Core 2 T5500 1.66GHz 1.67GHz&lt;br /&gt;Intel Core Duo T2500 2.00GHz 2.00GHz&lt;br /&gt;&lt;br /&gt;from my understanding by looking at GHz, 2.00  is faster than 1.66GHz..&lt;br /&gt;&lt;br /&gt;what bout core 2 &amp;amp; core duo? which 1 is faster?&lt;br /&gt;&lt;br /&gt;really confuse..&lt;br /&gt;&lt;br /&gt;</description>
            <author>IceBikers</author>
            <category>Hardware Questions &amp;amp; Answers</category>
            <pubDate>Tue, 01 Sep 2009 10:45:23 +0800</pubDate>
        </item>
        <item>
            <title>waste water (acid i assumed) on car paint</title>
            <link>http://forum.lowyat.net/topic/1124854</link>
            <description>Hello,&lt;br /&gt;&lt;br /&gt;i parked my car in a complex mall and the car roof kena the waste water dripping from the pipe above. I only realised it on the next day and the white stain is there and hard to remove unless i use a coin cover with clothe n scratch it hard to remove it. it is not easy to remove&amp;#33;. &lt;br /&gt;&lt;br /&gt;how should i get rid of it without hurting the car paint???&lt;br /&gt;&lt;br /&gt;use wd-40? (i used b4 to remove left over sticker glue stains on car paint)&lt;br /&gt;&lt;br /&gt;the worst thing is, it is not my car  &lt;!--emo&amp;:sweat:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sweat.gif' border='0' style='vertical-align:middle' alt='sweat.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;</description>
            <author>IceBikers</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Mon, 10 Aug 2009 08:57:53 +0800</pubDate>
        </item>
        <item>
            <title>how to dispose in correct way?</title>
            <link>http://forum.lowyat.net/topic/1106594</link>
            <description>Hi, i&amp;#39;ve been trying to dispose a class(completely close it and remove from memory)  and expected the memory will be free but it never happen.&lt;br /&gt;&lt;br /&gt;pls try my code below... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&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;&lt;br /&gt;Public Class Form1&lt;br /&gt; &amp;nbsp; &amp;nbsp;Private WithEvents c1 As Class1&lt;br /&gt; &amp;nbsp; &amp;nbsp;Private Sub btnCreate_Click&amp;#40;ByVal sender As System.Object, ByVal e As System.EventArgs&amp;#41; Handles btnCreate.Click&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Me.btnCreate.Enabled = False&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;c1 = New Class1&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;c1.destroyMemory&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Private Sub btnDispose_Click&amp;#40;ByVal sender As System.Object, ByVal e As System.EventArgs&amp;#41; Handles btnDispose.Click&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Try&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;c1.Dispose&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;c1 = Nothing&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Console.WriteLine&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Catch ex As Exception&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MsgBox&amp;#40;&amp;#34;Class is nothing&amp;#34;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Try&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Private Sub c1_EventShowMessage&amp;#40;&amp;#41; Handles c1.EventShowMessage&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MsgBox&amp;#40;&amp;#34;New class has been created and consumed 200MB memory&amp;#34;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Me.btnCreate.Enabled = True&lt;br /&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Public Class Class1&lt;br /&gt; &amp;nbsp; &amp;nbsp;Implements IDisposable&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Private dt As DataTable&lt;br /&gt; &amp;nbsp; &amp;nbsp;Private disposed As Boolean = False&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Public Delegate Sub HandlerShowMessage&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Public Event EventShowMessage As HandlerShowMessage&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Public Sub destroyMemory&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim bb&amp;#40;&amp;#41; As Object = {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1123123123, 12312313123, 12312312312, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1123123123, 12312313123, 12312312312, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1123123123, 12312313123, 12312312312, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1123123123, 12312313123, 12312312312, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1123123123, 12312313123, 12312312312}&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dt = New DataTable&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;For b As Int16 = 0 To bb.GetUpperBound&amp;#40;0&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dt.Columns.Add&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Next&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;For a As Int32 = 1 To 100000&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dt.Rows.Add&amp;#40;bb&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Next&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;RaiseEvent EventShowMessage&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Protected Overridable Sub Dispose&amp;#40;ByVal disposing As Boolean&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If Not Me.disposed Then&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If disposing Then&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39; Free other state &amp;#40;managed objects&amp;#41;.&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Me.dt.Clear&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Me.dt.Columns.Clear&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Me.dt.Dispose&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39; Free your own state &amp;#40;unmanaged objects&amp;#41;.&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39; Set large fields to null.&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Me.disposed = True&lt;br /&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Public Sub Dispose&amp;#40;&amp;#41; Implements IDisposable.Dispose&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39; Do not change this code. &lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39; Put cleanup code in&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39; Dispose&amp;#40;ByVal disposing As Boolean&amp;#41; above.&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dispose&amp;#40;True&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;GC.SuppressFinalize&amp;#40;Me&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;br /&gt;&lt;br /&gt;End Class&lt;br /&gt;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>IceBikers</author>
            <category>Codemasters</category>
            <pubDate>Thu, 23 Jul 2009 21:25:53 +0800</pubDate>
        </item>
        <item>
            <title>which date format should i use?</title>
            <link>http://forum.lowyat.net/topic/1091721</link>
            <description>Hi i would like to convert date from string to datetime format but i unsure the date format i should use. I have problem in the date and hour. what is the correct format i should cater for single date &amp;quot;9&amp;quot; and double date &amp;quot;10&amp;quot;, and same goes to the hour.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;here are the string of date times i would like to convert:&lt;br /&gt;&lt;br /&gt;&amp;quot;Jul 10 2009  2:23PM&amp;quot;,&lt;br /&gt;&amp;quot;Jul 10 2009 11:23AM&amp;quot;,&lt;br /&gt;&amp;quot;Jul  9 2009 10:05AM&amp;quot;,&lt;br /&gt;&amp;quot;Jul  9 2009  1:16PM&amp;quot;&lt;br /&gt;&lt;br /&gt;i have to use 4 different format for it. &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;Module Module1&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Sub Main&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39;&amp;#34;Jul 10 2009 &amp;nbsp;2&amp;#58;23PM&amp;#34;,&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39;&amp;#34;Jul 10 2009 11&amp;#58;23AM&amp;#34;,&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39;&amp;#34;Jul &amp;nbsp;9 2009 10&amp;#58;05AM&amp;#34;,&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39;&amp;#34;Jul &amp;nbsp;9 2009 &amp;nbsp;1&amp;#58;16PM&amp;#34;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim tempDate As DateTime&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim sDataArray&amp;#40;&amp;#41; As String = New String&amp;#40;&amp;#41; {&amp;#34;Jul &amp;nbsp;9 2009 &amp;nbsp;2&amp;#58;23PM&amp;#34;, _&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;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#34;Jul &amp;nbsp;9 2009 11&amp;#58;23AM&amp;#34;, _&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;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#34;Jul 10 2009 &amp;nbsp;1&amp;#58;05AM&amp;#34;, _&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;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#34;Jul 10 2009 10&amp;#58;16PM&amp;#34;}&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim Culture As System.Globalization.CultureInfo = New System.Globalization.CultureInfo&amp;#40;&amp;#34;en-GB&amp;#34;&amp;#41;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Try&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;tempDate = DateTime.ParseExact&amp;#40;sDataArray&amp;#40;0&amp;#41;, &amp;#34;MMM &amp;nbsp;d yyyy &amp;nbsp;h&amp;#58;mmtt&amp;#34;, Culture&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Console.WriteLine&amp;#40;tempDate.ToString&amp;#40;&amp;#34;dd/MM/yyyy&amp;#34;, Culture&amp;#41;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Catch ex As Exception&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Try&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Try&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;tempDate = DateTime.ParseExact&amp;#40;sDataArray&amp;#40;1&amp;#41;, &amp;#34;MMM &amp;nbsp;d yyyy hh&amp;#58;mmtt&amp;#34;, Culture&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Console.WriteLine&amp;#40;tempDate.ToString&amp;#40;&amp;#34;dd/MM/yyyy&amp;#34;, Culture&amp;#41;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Catch ex As Exception&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Try&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Try&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;tempDate = DateTime.ParseExact&amp;#40;sDataArray&amp;#40;2&amp;#41;, &amp;#34;MMM dd yyyy &amp;nbsp;h&amp;#58;mmtt&amp;#34;, Culture&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Console.WriteLine&amp;#40;tempDate.ToString&amp;#40;&amp;#34;dd/MM/yyyy&amp;#34;, Culture&amp;#41;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Catch ex As Exception&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Try&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Try&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;tempDate = DateTime.ParseExact&amp;#40;sDataArray&amp;#40;3&amp;#41;, &amp;#34;MMM dd yyyy hh&amp;#58;mmtt&amp;#34;, Culture&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Console.WriteLine&amp;#40;tempDate.ToString&amp;#40;&amp;#34;dd/MM/yyyy&amp;#34;, Culture&amp;#41;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Catch ex As Exception&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Try&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Console.ReadLine&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;br /&gt;&lt;br /&gt;End Module&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>IceBikers</author>
            <category>Codemasters</category>
            <pubDate>Fri, 10 Jul 2009 17:05:54 +0800</pubDate>
        </item>
        <item>
            <title>proxy environment simulation</title>
            <link>http://forum.lowyat.net/topic/1088904</link>
            <description>Hi, i wan to try to use http request, socket and webservice to connect to a specific server which has proxy settings.&lt;br /&gt;&lt;br /&gt;how can i simulate a proxy enviroment in the same pc to test it? is there any application? ?&lt;br /&gt;&lt;br /&gt;or any alternative method?</description>
            <author>IceBikers</author>
            <category>Codemasters</category>
            <pubDate>Wed, 08 Jul 2009 07:46:11 +0800</pubDate>
        </item>
        <item>
            <title>auto switch network setting</title>
            <link>http://forum.lowyat.net/topic/1062081</link>
            <description>HI, my laptop is use in 2 location &lt;br /&gt;&lt;br /&gt;1. Office - need to setup IP, Gateway &amp;amp; DNS.&lt;br /&gt;2. Home - no need to setup&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;whenever i use at home i need to set obtain IP &amp;amp; DNS automatically.&lt;br /&gt;&lt;br /&gt;so i wonder any application that can handle IP settings at each different location?</description>
            <author>IceBikers</author>
            <category>Networking Tech Support</category>
            <pubDate>Sat, 13 Jun 2009 19:46:19 +0800</pubDate>
        </item>
        <item>
            <title>how to go chilling waterfall?</title>
            <link>http://forum.lowyat.net/topic/1058286</link>
            <description>Hi , anyone know how to go chilling waterfall from KL/PJ.?&lt;br /&gt;&lt;br /&gt;i&amp;#39;m plannign to go this weekend with frend and without the trekking tour guide? i need info from u.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.waterfallsofmalaysia.com/51chiling.php' target='_blank'&gt;http://www.waterfallsofmalaysia.com/51chiling.php&lt;/a&gt;</description>
            <author>IceBikers</author>
            <category>Travel &amp;amp; Living</category>
            <pubDate>Wed, 10 Jun 2009 12:30:13 +0800</pubDate>
        </item>
        <item>
            <title>budget earphone</title>
            <link>http://forum.lowyat.net/topic/1039352</link>
            <description>Hello, i own a ipod nano 3rd generation... unfortunately the rubber lining of the earphone is tearing off. I&amp;#39;m looking a new earphone but ipod earphone is way too expensive for me. &lt;br /&gt;&lt;br /&gt;any 1 would recommend a good(as in better than stock) earphone which is price &amp;lt; rm50 or &amp;lt; rm100.&lt;br /&gt;&lt;br /&gt;if there ain&amp;#39;t &amp;lt; rm100 earphone which better than stock then any decent would do.&lt;br /&gt;&lt;br /&gt;thank u</description>
            <author>IceBikers</author>
            <category>iPod Bar</category>
            <pubDate>Sat, 23 May 2009 09:34:33 +0800</pubDate>
        </item>
        <item>
            <title>format string</title>
            <link>http://forum.lowyat.net/topic/1038527</link>
            <description>Hello, i&amp;#39;m looking a solution for format a string to .. -&amp;gt;&lt;br /&gt;&lt;br /&gt;e.g 1  = 1000&lt;br /&gt;&lt;br /&gt;500 = 0.5&lt;br /&gt;1000 = 1&lt;br /&gt;1500 = 1.5&lt;br /&gt;15500 = 15.5&lt;br /&gt;15530 = 15.5&lt;br /&gt;15550 = 15.5 as well, no round up&lt;br /&gt;67666 = 67.6&lt;br /&gt;&lt;br /&gt;can dotnet current features can do this? or need to wrtite extra code?</description>
            <author>IceBikers</author>
            <category>Codemasters</category>
            <pubDate>Fri, 22 May 2009 10:31:17 +0800</pubDate>
        </item>
        <item>
            <title>loan for partnership</title>
            <link>http://forum.lowyat.net/topic/1014189</link>
            <description>Hello.. my friend is opening a franchise business and inviting me to join partnership.  I&amp;#39;m looking for 10-15K loan to be 1% shareholder.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I&amp;#39;m a salary worker(2k ++).&lt;br /&gt;&lt;br /&gt;what kind of loan is most appropriate for me?? business loan ? personal loan? any other loan type?&lt;br /&gt;&lt;br /&gt;if business loan, shoud i need prepare business plan as well as i&amp;#39;m just a small investor?&lt;br /&gt;&lt;br /&gt;</description>
            <author>IceBikers</author>
            <category>Finance, Business and Investment House</category>
            <pubDate>Wed, 29 Apr 2009 12:01:58 +0800</pubDate>
        </item>
        <item>
            <title>&amp;lt;WTA&amp;gt; What car should i get?</title>
            <link>http://forum.lowyat.net/topic/1000230</link>
            <description>Hi,  my salary is approx 2.5k&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I&amp;#39;m saving for downpayment.. targeting 6-8k at the end of the year.&lt;br /&gt;I&amp;#39;m willing to pay rm500 or less for monthly installment.&lt;br /&gt;&lt;br /&gt;car that fall in to my range: proton blm(middle line), ... and.. can you suggest?</description>
            <author>IceBikers</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Thu, 16 Apr 2009 08:25:38 +0800</pubDate>
        </item>
        <item>
            <title>&amp;lt;WTA&amp;gt; wira stock speaker size</title>
            <link>http://forum.lowyat.net/topic/964383</link>
            <description>Hi, i wana ask, what are the size of stock speaker of wira special edition front and back?&lt;br /&gt;&lt;br /&gt;[addedon]March 16, 2009, 10:48 pm[/addedon]anyone knows?&lt;br /&gt;&lt;br /&gt;[addedon]May 23, 2009, 7:29 pm[/addedon]hello, anyone knows? pls help</description>
            <author>IceBikers</author>
            <category>ICE</category>
            <pubDate>Sat, 14 Mar 2009 14:43:07 +0800</pubDate>
        </item>
        <item>
            <title>datatable to datagridview</title>
            <link>http://forum.lowyat.net/topic/909291</link>
            <description>Hello, i would like to get you guys idea about ploting live data from datatable to datagridview.&lt;br /&gt;&lt;br /&gt;let me explain to u the process to retriving data from the source:&lt;br /&gt;raw data -&amp;gt; filter process -&amp;gt; put into datatable -&amp;gt; present at datagridview&lt;br /&gt;&lt;br /&gt;this raw data comes every seconds.&lt;br /&gt;&lt;br /&gt;no database involve at all.&lt;br /&gt;&lt;br /&gt;method  i have tried are:&lt;br /&gt;&lt;br /&gt;i)&lt;br /&gt;dgv.datasource = dataset.table();&lt;br /&gt; this method is fast, but the UI control is not independent , as every new data come in the datagridview will be re-initiate which is not a good solution&lt;br /&gt;&lt;br /&gt;ii)&lt;br /&gt;datagridview virtue mode (currently using)&lt;br /&gt;by this method, i able to control my ui and data separately. but the ugly thing when u scroll down u will notice the change of data(e.g set datacell color) very obvious n lag.&lt;br /&gt;&lt;br /&gt;lag as in it need to keep on retrieve data when it is needed by the cell.&lt;br /&gt;&lt;br /&gt;iii)&lt;br /&gt;&lt;br /&gt;any idea of the third, fourth n ect how to plot data to datagridview effectively?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>IceBikers</author>
            <category>Codemasters</category>
            <pubDate>Sat, 17 Jan 2009 08:51:41 +0800</pubDate>
        </item>
        <item>
            <title>SOLD - &amp;lt;WTS&amp;gt; Kingston 1GB SODIMM DDR2 667MHz</title>
            <link>http://forum.lowyat.net/topic/884837</link>
            <description>&lt;b&gt;Item(s):&lt;/b&gt; Kingston 1GB DDR2 667 SODIMM &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes:&lt;/b&gt; RAM &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price:&lt;/b&gt; RM25&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Warranty:&lt;/b&gt; lifetime from kingston &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method:&lt;/b&gt; Delivery&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location of seller:&lt;/b&gt; PJ&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method/details:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Age of item:&lt;/b&gt; used less than 20mins&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions:&lt;/b&gt; open box but PERFECT~&amp;#33; &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Picture:&lt;/b&gt; refer to &lt;span style='font-size:14pt;line-height:100%'&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=866060&amp;hl=' target='_blank'&gt;&lt;span style='color:red'&gt; WRY&lt;/span&gt;&lt;/a&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reason for sale:&lt;/b&gt; bought 3GB ram from &lt;span style='font-size:14pt;line-height:100%'&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=866060&amp;hl=' target='_blank'&gt;&lt;span style='color:red'&gt; WRY&lt;/span&gt;&lt;/a&gt;&lt;/span&gt; (1 X 2GB &amp;amp; 1 x 1GB), then only realize laptop only support 2GB</description>
            <author>IceBikers</author>
            <category>Memory &amp;amp; Drives</category>
            <pubDate>Tue, 23 Dec 2008 22:59:33 +0800</pubDate>
        </item>
        <item>
            <title>detect usb</title>
            <link>http://forum.lowyat.net/topic/873287</link>
            <description>Hi, i have a application developed using .Net and will be distribute with flash drive together. I tried to run the app then i plug out the thumb drive and the app is still running. &lt;br /&gt;&lt;br /&gt;what code can i add into my app that it will detect the thumb drive is plug out then close the application?</description>
            <author>IceBikers</author>
            <category>Codemasters</category>
            <pubDate>Fri, 12 Dec 2008 15:46:16 +0800</pubDate>
        </item>
        <item>
            <title>merge datatable and remove row</title>
            <link>http://forum.lowyat.net/topic/854419</link>
            <description>Hi.. i have 2 datatable..&lt;br /&gt;&lt;br /&gt;dtFinal and dtTemp&lt;br /&gt;&lt;br /&gt;dtFinal is use with datagridview with virtualmode where dgv get data from cellvalueneeded event.&lt;br /&gt;&lt;br /&gt;dtTemp is use to pull http data every interval second.&lt;br /&gt;&lt;br /&gt;once http data is pulled n it will put into dtTemp then i use dtFinal.merge(dtTemp).&lt;br /&gt;&lt;br /&gt;yes updated data does merged and updated but how to remove rows that no longer exist?&lt;br /&gt;&lt;br /&gt;for example:&lt;br /&gt;currently dtFinal has 5 rows&lt;br /&gt;11|111&lt;br /&gt;22|222&lt;br /&gt;33|333&lt;br /&gt;44|444&lt;br /&gt;55|555&lt;br /&gt;&lt;br /&gt;then dtTemp has updated data with 7 rows&lt;br /&gt;11|111&lt;br /&gt;33|333&lt;br /&gt;66|666&lt;br /&gt;55|555&lt;br /&gt;77|777&lt;br /&gt;88|888&lt;br /&gt;99|999&lt;br /&gt;&lt;br /&gt;then dtFinal would be&lt;br /&gt;11|111&lt;br /&gt;22|222&lt;br /&gt;33|333&lt;br /&gt;44|444&lt;br /&gt;55|555&lt;br /&gt;66|666&lt;br /&gt;77|777&lt;br /&gt;88|888&lt;br /&gt;99|999&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;how to remove the rows that no longer exist automatically?&lt;br /&gt;</description>
            <author>IceBikers</author>
            <category>Codemasters</category>
            <pubDate>Sun, 23 Nov 2008 22:01:30 +0800</pubDate>
        </item>
        <item>
            <title>xml new line</title>
            <link>http://forum.lowyat.net/topic/849963</link>
            <description>Hi below is the code how i write information into xml&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;&lt;br /&gt; Public Sub doSaveXML&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim path As String = &amp;#34;C&amp;#58;&amp;#34;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim XMLFolder As String = &amp;#34;&amp;#092;XML&amp;#092;&amp;#34;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim fullpath As String = &amp;#34;C&amp;#58;&amp;#092;XML&amp;#092;test.xml&amp;#34;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim xDoc As New XmlDocument&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim xmlWriter As XmlTextWriter&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Try&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If Directory.Exists&amp;#40;Path &amp;amp; XMLFolder&amp;#41; = False Then&lt;br /&gt; &amp;nbsp; &amp;nbsp; &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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Directory.CreateDirectory&amp;#40;Path &amp;amp; XMLFolder&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Catch ex As Exception&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Try&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If File.Exists&amp;#40;fullpath&amp;#41; Then&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;File.Delete&amp;#40;fullpath&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter = New XmlTextWriter&amp;#40;path, System.Text.Encoding.UTF8&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.Formatting = Formatting.Indented&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.WriteStartDocument&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.Indentation = 4&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.IndentChar = &amp;#34; &amp;#34;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.Formatting = xmlWriter.Indentation&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;xmlWriter.WriteStartElement&amp;#40;&amp;#34;START&amp;#34;&amp;#41; &lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.WriteElementString&amp;#40;&amp;#34;A&amp;#34;, &amp;#34;aaa&amp;#34;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.WriteElementString&amp;#40;&amp;#34;B&amp;#34;, &amp;#34;bbb&amp;#34;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.WriteElementString&amp;#40;&amp;#34;C&amp;#34;, &amp;#34;ccc&amp;#34;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.WriteEndElement&amp;#40;&amp;#41; &lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.Flush&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.Close&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Catch ex As Exception&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If File.Exists&amp;#40;fullpath&amp;#41; Then&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;File.Delete&amp;#40;fullpath&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If Not &amp;#40;xmlWriter Is Nothing&amp;#41; Then&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.Close&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;File.Delete&amp;#40;path&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Try&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If Not &amp;#40;xmlWriter Is Nothing&amp;#41; Then&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlWriter.Close&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;Output would be&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;&amp;#60;?xml version=&amp;#34;1.0&amp;#34; encoding=&amp;#34;utf-8&amp;#34;?&amp;#62;&amp;#60;START&amp;#62;&amp;#60;A&amp;#62;aaa&amp;#60;/A&amp;#62;&amp;#60;B&amp;#62;bbb&amp;#60;/B&amp;#62;&amp;#60;C&amp;#62;ccc&amp;#60;/C&amp;#62;&amp;#60;/START&amp;#62;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;How should i set newline after a element string?</description>
            <author>IceBikers</author>
            <category>Codemasters</category>
            <pubDate>Wed, 19 Nov 2008 08:06:25 +0800</pubDate>
        </item>
        <item>
            <title>crazy speed</title>
            <link>http://forum.lowyat.net/topic/848654</link>
            <description>see by yourself, download finish in less than 3 mins&lt;br /&gt;[attachmentid=676350]&lt;br /&gt;&lt;br /&gt;no vpn, normal setting.. first time ever after 10 years in download p2p. do</description>
            <author>IceBikers</author>
            <category>Broadband User-2-User</category>
            <pubDate>Mon, 17 Nov 2008 23:05:15 +0800</pubDate>
        </item>
    </channel>
</rss>
