<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by 1300131300</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Wed, 24 Jun 2026 14:06:22 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Where to buy wigs?</title>
            <link>http://forum.lowyat.net/topic/2147142</link>
            <description>&lt;a href='http://imageshack.us/photo/my-images/217/hairoe.png/' target='_blank'&gt;http://imageshack.us/photo/my-images/217/hairoe.png/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I&amp;#39;m looking for something like this. Thank you&amp;#33;</description>
            <author>1300131300</author>
            <category>Trends + Fashion</category>
            <pubDate>Tue, 13 Dec 2011 14:24:12 +0800</pubDate>
        </item>
        <item>
            <title>Where to get stretch cords?</title>
            <link>http://forum.lowyat.net/topic/1798410</link>
            <description>&lt;img src='http://www.xlsport.com.au/sf2p/images/Stretchcordz%20Handles.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;Anyone know where I can find something like this? Or is anyone selling? Thanks&amp;#33;</description>
            <author>1300131300</author>
            <category>Health &amp;amp; Fitness</category>
            <pubDate>Sat, 19 Mar 2011 18:05:15 +0800</pubDate>
        </item>
        <item>
            <title>Woodworker</title>
            <link>http://forum.lowyat.net/topic/1552158</link>
            <description>Where do I find a good and cheap woodworker in PJ area because i want to construct a chin up frame. Thank you&amp;#33; &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;&lt;br /&gt;&lt;br /&gt;[addedon]September 12, 2010, 12:36 pm[/addedon]Bump~&lt;br /&gt;&lt;br /&gt;[addedon]September 12, 2010, 9:50 pm[/addedon]Please? &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;&lt;br /&gt;&lt;br /&gt;[addedon]September 13, 2010, 7:00 pm[/addedon]:S?</description>
            <author>1300131300</author>
            <category>Health &amp;amp; Fitness</category>
            <pubDate>Sun, 05 Sep 2010 20:06:12 +0800</pubDate>
        </item>
        <item>
            <title>Just one question about my visual basic code.ASAP&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/1345256</link>
            <description>Basically my code is as follows:&lt;br /&gt;&lt;br /&gt;     Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged&lt;br /&gt;&lt;br /&gt;        Dim myArray() As String = Split(Trim(TextBox1.Text), &amp;quot; &amp;quot;)&lt;br /&gt;&lt;br /&gt;        If myArray.Count = 3 Then&lt;br /&gt;&lt;br /&gt;            Dim first1 As String = myArray(0)&lt;br /&gt;&lt;br /&gt;            Dim operand As String = myArray(1)&lt;br /&gt;&lt;br /&gt;            Dim second1 As String = myArray(2)&lt;br /&gt;&lt;br /&gt;            Dim first As Double = 0&lt;br /&gt;&lt;br /&gt;            Dim second As Double = 0&lt;br /&gt;&lt;br /&gt;            If Microsoft.VisualBasic.Strings.Right(first1, 1) = &amp;quot;(&amp;quot; Then first = CDbl(Mid(first1, 2, InStr(first1, &amp;quot;)&amp;quot;) - 1))&lt;br /&gt;&lt;br /&gt;            If Microsoft.VisualBasic.Strings.Right(second1, 1) = &amp;quot;(&amp;quot; Then second = CDbl(Mid(second1, 2, InStr(second1, &amp;quot;)&amp;quot;) - 1))&lt;br /&gt;&lt;br /&gt;            Dim output As Double&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            If IsNumeric(first) And IsNumeric(Second) Then&lt;br /&gt;&lt;br /&gt;                If Operand.ToUpper = &amp;quot;X&amp;quot; Then&lt;br /&gt;&lt;br /&gt;                    output = CDbl(first) * CDbl(second)&lt;br /&gt;&lt;br /&gt;                End If&lt;br /&gt;&lt;br /&gt;                If Operand.ToUpper = &amp;quot;+&amp;quot; Then&lt;br /&gt;&lt;br /&gt;                    output = CDbl(first) + CDbl(second)&lt;br /&gt;&lt;br /&gt;                End If&lt;br /&gt;&lt;br /&gt;                If Operand.ToUpper = &amp;quot;-&amp;quot; Then&lt;br /&gt;&lt;br /&gt;                    output = CDbl(first) - CDbl(second)&lt;br /&gt;&lt;br /&gt;                End If&lt;br /&gt;&lt;br /&gt;                If Operand.ToUpper = &amp;quot;÷&amp;quot; Then&lt;br /&gt;                    output = CDbl(first) / CDbl(second)&lt;br /&gt;                End If&lt;br /&gt;&lt;br /&gt;                If Operand.ToUpper = &amp;quot;,&amp;quot; Then&lt;br /&gt;                    output = CDbl(second) - CDbl(first)&lt;br /&gt;                End If&lt;br /&gt;&lt;br /&gt;                If Operand.ToUpper = &amp;quot;+ (&amp;quot; Then&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                    output = CDbl(first) - CDbl(second)&lt;br /&gt;                End If&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                TextBox2.Text = output.ToString&lt;br /&gt;            End If&lt;br /&gt;        End If&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Somehow whatever i input, e.g. 4 - 3, answer will be 0... Why?</description>
            <author>1300131300</author>
            <category>Codemasters</category>
            <pubDate>Thu, 04 Mar 2010 23:10:52 +0800</pubDate>
        </item>
        <item>
            <title>Hi, whats wrong with my code?</title>
            <link>http://forum.lowyat.net/topic/1344858</link>
            <description>Basically i have this chunk of code which solves math equations for me, like 6 x 5, 4+ 24, etc..&lt;br /&gt;I input the 6 x 5 into one of the textboxes in my form, and then i get the answer in another. But the problem is, when I put in &amp;#39;6 x 5 &amp;#39; *note the space after digit 5*, the program cant generate the answer. Help me pls&amp;#33;&lt;br /&gt;&lt;br /&gt; Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged&lt;br /&gt;&lt;br /&gt;        Dim myArray() As String = Split(TextBox1.Text, &amp;quot; &amp;quot;)&lt;br /&gt;&lt;br /&gt;        If myArray.Count = 3 Then&lt;br /&gt;            Dim first As Double = myArray(0)&lt;br /&gt;            Dim Operand As String = myArray(1)&lt;br /&gt;            Dim Second As Double = myArray(2)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            Dim output As Double&lt;br /&gt;&lt;br /&gt;            If IsNumeric(first) And IsNumeric(Second) Then&lt;br /&gt;&lt;br /&gt;                If Operand.ToUpper = &amp;quot;X&amp;quot; Then&lt;br /&gt;&lt;br /&gt;                    output = CDbl(first) * CDbl(Second)&lt;br /&gt;&lt;br /&gt;                End If&lt;br /&gt;&lt;br /&gt;                If Operand.ToUpper = &amp;quot;+&amp;quot; Then&lt;br /&gt;&lt;br /&gt;                    output = CDbl(first) + CDbl(Second)&lt;br /&gt;&lt;br /&gt;                End If&lt;br /&gt;&lt;br /&gt;                If Operand.ToUpper = &amp;quot;-&amp;quot; Then&lt;br /&gt;&lt;br /&gt;                    output = CDbl(first) - CDbl(Second)&lt;br /&gt;&lt;br /&gt;                End If&lt;br /&gt;&lt;br /&gt;                If Operand.ToUpper = &amp;quot;÷&amp;quot; Then&lt;br /&gt;                    output = CDbl(first) / CDbl(Second)&lt;br /&gt;                End If&lt;br /&gt;                TextBox2.Text = output.ToString&lt;br /&gt;            End If&lt;br /&gt;        End If&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks&amp;#33; &lt;!--emo&amp;:stars:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxub.gif' border='0' style='vertical-align:middle' alt='rclxub.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>1300131300</author>
            <category>Codemasters</category>
            <pubDate>Thu, 04 Mar 2010 17:17:49 +0800</pubDate>
        </item>
        <item>
            <title>How to use visual basic to scan data on a web page</title>
            <link>http://forum.lowyat.net/topic/1343260</link>
            <description>How do I code a program on VB so that it inputs info which will be displayed on a web page? e.g. the web page game displays: 2x2 = [   ]&lt;br /&gt;&lt;br /&gt;How do i code it so that my program inputs the 2x2, calculates the answer, and types it out?&lt;br /&gt;&lt;br /&gt;Thanks very much..&lt;br /&gt;&lt;br /&gt;[addedon]March 3, 2010, 12:56 pm[/addedon]Someone just told me to search for event handling? Will that help? And how... Thanks&amp;#33;</description>
            <author>1300131300</author>
            <category>Codemasters</category>
            <pubDate>Wed, 03 Mar 2010 12:23:33 +0800</pubDate>
        </item>
        <item>
            <title>Where to buy hooked gloves?</title>
            <link>http://forum.lowyat.net/topic/1306197</link>
            <description>Anyone knows where to a pair of these? Or something similar? Also if you could, pls include price. tq.&lt;br /&gt;[attachmentid=1416941]</description>
            <author>1300131300</author>
            <category>Bodybuilding &amp;amp; Strength Training</category>
            <pubDate>Mon, 25 Jan 2010 14:11:37 +0800</pubDate>
        </item>
        <item>
            <title>Which phone can read ebooks pretty well?</title>
            <link>http://forum.lowyat.net/topic/1153243</link>
            <description>I was thinking about getting a new phone at the phone sale at 1U today.. But I want a phone that can do all those other stuff, e.g. play music, take pictures, do what other phones can do, etc. But I also want a phone which can read ebooks pretty well. I heard that the Iphone, or the Fake Iphone for that matter, can read ebooks. Any recommendations anyone?&lt;br /&gt;Thanks</description>
            <author>1300131300</author>
            <category>Mobile Phones and Tablets</category>
            <pubDate>Sat, 05 Sep 2009 08:35:04 +0800</pubDate>
        </item>
        <item>
            <title>Gym membership</title>
            <link>http://forum.lowyat.net/topic/1052225</link>
            <description>Im looking for a decent gym, with weights, and a stationary bike, and a treadmill. Not too expensive, and maybe a gym which comes with lifetime membership too. Thanks&amp;#33;</description>
            <author>1300131300</author>
            <category>Health &amp;amp; Fitness</category>
            <pubDate>Thu, 04 Jun 2009 13:24:10 +0800</pubDate>
        </item>
        <item>
            <title>Computer wont start up completely</title>
            <link>http://forum.lowyat.net/topic/1048951</link>
            <description>Hi everyone.. My computer starts up and then theres a selection between the safe mode, last known good configuration, normal mode. If I select anything other than safe mode, it goes to the windows loading screen (with the loading bar) and gets stuck there. What can i do?</description>
            <author>1300131300</author>
            <category>Technical Support</category>
            <pubDate>Mon, 01 Jun 2009 16:50:21 +0800</pubDate>
        </item>
        <item>
            <title>Where to buy Debit cards</title>
            <link>http://forum.lowyat.net/topic/999624</link>
            <description>Where do I buy a debit card?</description>
            <author>1300131300</author>
            <category>Resource Centre</category>
            <pubDate>Wed, 15 Apr 2009 18:23:40 +0800</pubDate>
        </item>
        <item>
            <title>Preparing for SAT</title>
            <link>http://forum.lowyat.net/topic/997313</link>
            <description>I have recently heard of successes from my former colleagues in taking the SATs and passing with flying colors. To anyone who has done this, please could you share ANY information about the preparation and stuff. Thanks. =)</description>
            <author>1300131300</author>
            <category>Education Essentials</category>
            <pubDate>Mon, 13 Apr 2009 20:53:12 +0800</pubDate>
        </item>
        <item>
            <title>Books</title>
            <link>http://forum.lowyat.net/topic/963867</link>
            <description>I was just wondering, since i have a friend whos in singapore for 2 days, which books should i get to improve my studies? Preferably math and the sciences subjects. Also, i would like to get books which can only be gotten there, not here. Thanks&amp;#33; Pretty urgent too tho. XD</description>
            <author>1300131300</author>
            <category>Education Essentials</category>
            <pubDate>Fri, 13 Mar 2009 23:01:13 +0800</pubDate>
        </item>
        <item>
            <title>debit card, credit card</title>
            <link>http://forum.lowyat.net/topic/927497</link>
            <description>Is it possible to get a credit/debit card without having to be 18?</description>
            <author>1300131300</author>
            <category>Finance, Business and Investment House</category>
            <pubDate>Fri, 06 Feb 2009 16:08:36 +0800</pubDate>
        </item>
        <item>
            <title>what should i do?</title>
            <link>http://forum.lowyat.net/topic/920256</link>
            <description>Hi everyone, i am 16 this year and i would like your opinions on this matter.&lt;br /&gt;&lt;br /&gt;You see, i want to skip the spm/o level stage of examinations because i cant take o levels this year as a private candidate (lack of preparation) and i dont want to take spm XD&lt;br /&gt;So, i was thinking of taking A levels as a private candidate, which prompted me to think of taking A levels as a private candidate in singapore followed by going to a university of my choice and continuing my life after that.&lt;br /&gt;&lt;br /&gt;I would like everyones opinion on this as i need guidance. XD&lt;br /&gt; &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; &lt;br /&gt;Thanks&amp;#33; =)</description>
            <author>1300131300</author>
            <category>Education Essentials</category>
            <pubDate>Fri, 30 Jan 2009 11:24:41 +0800</pubDate>
        </item>
    </channel>
</rss>
