<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by Glenhew</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sat, 06 Jun 2026 22:40:00 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>[WTB] Macbook Pro 15 inch</title>
            <link>http://forum.lowyat.net/topic/4816619</link>
            <description>Want to buy Macbook Pro 2016/2017 15inch, 512GB, 16GB ram</description>
            <author>Glenhew</author>
            <category>Notebooks Garage Sales</category>
            <pubDate>Thu, 01 Aug 2019 17:01:12 +0800</pubDate>
        </item>
        <item>
            <title>closed</title>
            <link>http://forum.lowyat.net/topic/4721751</link>
            <description>closed</description>
            <author>Glenhew</author>
            <category>Games Garage Sales</category>
            <pubDate>Sat, 12 Jan 2019 18:54:27 +0800</pubDate>
        </item>
        <item>
            <title>closed</title>
            <link>http://forum.lowyat.net/topic/4257521</link>
            <description>closed</description>
            <author>Glenhew</author>
            <category>Sports Garage Sales</category>
            <pubDate>Sat, 08 Apr 2017 23:01:46 +0800</pubDate>
        </item>
        <item>
            <title>Sold</title>
            <link>http://forum.lowyat.net/topic/4204984</link>
            <description>tem(s): Apple IPhone 7 plus 128GB ( jet black )&lt;br /&gt;&lt;br /&gt;Package includes: Everything in the box &lt;br /&gt;&lt;br /&gt;Price: RM3800&lt;br /&gt;&lt;br /&gt;Warranty: by Apple&lt;br /&gt;&lt;br /&gt;Dealing method: COD (Klang Valley)&lt;br /&gt;&lt;br /&gt;Location of seller:&lt;br /&gt;&lt;br /&gt;Contact method/details:&lt;br /&gt;&lt;br /&gt;Age of item: Brand New&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;Item(s) conditions: Brand New&lt;br /&gt;&lt;br /&gt;Picture:&lt;br /&gt;&lt;br /&gt;Reason for sale: lucky draw</description>
            <author>Glenhew</author>
            <category>Mobile Phones Garage Sales</category>
            <pubDate>Thu, 23 Feb 2017 12:13:22 +0800</pubDate>
        </item>
        <item>
            <title>anyone heard QuestQuad before ?</title>
            <link>http://forum.lowyat.net/topic/3171897</link>
            <description>Hello, did anyone heard QuestQuad before ?&lt;br /&gt;&lt;br /&gt;any comment about this company ?&lt;br /&gt;&lt;br /&gt;thx</description>
            <author>Glenhew</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Tue, 25 Mar 2014 11:25:39 +0800</pubDate>
        </item>
        <item>
            <title>Closed</title>
            <link>http://forum.lowyat.net/topic/3154887</link>
            <description>Closed</description>
            <author>Glenhew</author>
            <category>Garage Sales Archive</category>
            <pubDate>Sat, 08 Mar 2014 08:34:40 +0800</pubDate>
        </item>
        <item>
            <title>Closed</title>
            <link>http://forum.lowyat.net/topic/2918820</link>
            <description>Closed</description>
            <author>Glenhew</author>
            <category>Garage Sales Archive</category>
            <pubDate>Sun, 11 Aug 2013 14:34:49 +0800</pubDate>
        </item>
        <item>
            <title>How to Handle Multiple User update same table</title>
            <link>http://forum.lowyat.net/topic/2743039</link>
            <description>hello, i has a question regarding how to handle multiple users update same table at the same time&lt;br /&gt;&lt;br /&gt;for the example:&lt;br /&gt;&lt;br /&gt;there has a button to allow user to click and generate Sequence No.&lt;br /&gt;&lt;br /&gt;but if more than one users click it at the same time. Then the Sequence No will be duplicate &amp;amp; skip one No.&lt;br /&gt;&lt;br /&gt;can anyone know how to solve it ?&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;Protected Sub Button2_Click&amp;#40;ByVal sender As Object, ByVal e As System.EventArgs&amp;#41; Handles Button2.Click&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim sqlcmd2012 As SqlCommand&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim conn2012 As New SqlConnection&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim strconn2012 As String = ConfigurationManager.ConnectionStrings&amp;#40;&amp;#34;ConnectionString&amp;#34;&amp;#41;.ConnectionString&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;conn2012.ConnectionString = strconn2012&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;conn2012.Open&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim cmdstring2012 As String&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;cmdstring2012 = &amp;#34;SELECT NextNumber FROM SequenceNo &amp;#34;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;sqlcmd2012 = New SqlCommand&amp;#40;cmdstring2012, conn2012&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim myreader2012 As SqlDataReader&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;myreader2012 = sqlcmd2012.ExecuteReader &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim SequenceNo as string&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;While myreader2012.Read&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;SequenceNo = myreader2012&amp;#40;&amp;#34;NextNumber&amp;#34;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End While&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;myreader2012.Close&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;conn2012.Close&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39;update next number&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim sqlcmd11 As SqlCommand&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim conn11 As New SqlConnection&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim strconn11 As String = ConfigurationManager.ConnectionStrings&amp;#40;&amp;#34;ConnectionString&amp;#34;&amp;#41;.ConnectionString&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;conn11.ConnectionString = strconn11&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim cmdstring11 As String&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;cmdstring11 = &amp;#34;UPDATE SequenceNo SET NextNumber = NextNumber + 1&amp;#34;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;sqlcmd11 = New SqlCommand&amp;#40;cmdstring11, conn11&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;conn11.Open&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;sqlcmd11.ExecuteNonQuery&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;conn11.Close&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#39;****************&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;br /&gt;&lt;br /&gt;End Sub&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;</description>
            <author>Glenhew</author>
            <category>Codemasters</category>
            <pubDate>Wed, 20 Mar 2013 10:30:07 +0800</pubDate>
        </item>
        <item>
            <title>help hard disk problem &amp;#33;</title>
            <link>http://forum.lowyat.net/topic/2426163</link>
            <description>can anyone help me to solve this problem ?? &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;  &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; &lt;br /&gt;&lt;br /&gt;when i start my computer, &lt;br /&gt;&lt;br /&gt;it run to a black screen, it recommend me to check my hard disk. &lt;br /&gt;then it load 10sec to start checking my hard disk....&lt;br /&gt;&lt;br /&gt;then it show something like the pic i upload...&lt;br /&gt;&lt;br /&gt;but i run almost 24hours then show an error found, then it stop run and start the window,&lt;br /&gt;&lt;br /&gt;but my when i open my hard disk, it run very slow and keep not responding.&lt;br /&gt;&lt;br /&gt;izzit any way to slove this problem or my hard disk going to &amp;#39;die&amp;#39; ??  &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;  &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;  &lt;br /&gt;&lt;br /&gt;</description>
            <author>Glenhew</author>
            <category>Technical Support</category>
            <pubDate>Fri, 13 Jul 2012 10:03:00 +0800</pubDate>
        </item>
    </channel>
</rss>
