<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by miniskirt</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sat, 06 Jun 2026 14:05:08 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>U Mobile - How to Terminate?</title>
            <link>http://forum.lowyat.net/topic/749888</link>
            <description>Hey Guys,&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve got the U Mobile SIM Card, but I havent activated it yet, meaning I have not use it. The problem was when I signed up they told me it is a prepaid, but when I called U Mobile the first time this morning, she said she couldnt check whether it is prepaid/postpaid for me unless I activate my card (strange right?). Then I asked about termination, she said I could not terminate unless it is activated. TRICKY&amp;#33;&amp;#33;&amp;#33;&amp;#33; LIES?&lt;br /&gt;&lt;br /&gt;Nvm, I called the second time, another gal told me my card is &lt;b&gt;most probably postpaid &lt;/b&gt;coz I indicated there was a form which I signed&amp;#33;&lt;br /&gt;But when I asked will I be charged if I didnt activate the SIM card, she replied NO&lt;br /&gt;My worries are by the end of the month, they will send a postpaid month bill. &lt;br /&gt;Please advice, coz she said if I wanted to terminate the account I need to go to their service counter. &lt;br /&gt;&lt;br /&gt;&lt;u&gt;Question?&lt;/u&gt;&lt;br /&gt;Should I terminate it? OR&lt;br /&gt;Should I just let it be since the SIM card is not activated at all. It is still attached to the original card.&lt;br /&gt;&lt;br /&gt;Thanks in advance, everyone. &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>miniskirt</author>
            <category>Mobile Phones and Tablets</category>
            <pubDate>Thu, 24 Jul 2008 12:08:36 +0800</pubDate>
        </item>
        <item>
            <title>Cash In Hand Or Bank Transfer + Acknowledgement Re</title>
            <link>http://forum.lowyat.net/topic/463282</link>
            <description>Hi,&lt;br /&gt;&lt;br /&gt;Im new to freelance, recently I help a new copywriting entrepreneur to develop website, when the money comes into interest, he insist of bank transfer the &amp;#036;&amp;#036; to me plus requiring me to write the following acknowledgement for him, so that he would not need to get in tax of my share. &lt;br /&gt;&lt;br /&gt;Name:&lt;br /&gt;IC:&lt;br /&gt;Address:&lt;br /&gt;Tel:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Received Ringgit Malaysia XXXX Only (RMXXXX) being payment for freelance services to create website &lt;br /&gt;&lt;br /&gt;Signature:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The reason behind:&lt;br /&gt;He got a job, he subcontract it to me, so he doesnt want my sum of money received for web design being tax to him. SO he is using the acknowledgement receipt to get over tax. &lt;br /&gt;&lt;br /&gt;I was a bit hesitate, I thought it is unnessary. Since, I was new I want to know is this normal norm or im over reacting? And he doesnt want to giv me cash in hand. &lt;br /&gt;&lt;br /&gt;Please advice  &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>miniskirt</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Sun, 27 May 2007 09:19:19 +0800</pubDate>
        </item>
        <item>
            <title>ASP - Counter</title>
            <link>http://forum.lowyat.net/topic/297418</link>
            <description>I want to develop a counter on specific webpage that save the hits to database. It will trace where the users are from, either from the website itself, from email or pop up. I have the following code. But i dont know why it is not working&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;&amp;#60;%&lt;br /&gt;&lt;br /&gt; &amp;nbsp; Dim objConn, strSQL, strSource&lt;br /&gt; &amp;nbsp; Dim objRS, hits, strFieldName&lt;br /&gt; &amp;nbsp; Set objConn = Server.CreateObject&amp;#40;&amp;#34;ADODB.Connection&amp;#34;&amp;#41;&lt;br /&gt; &amp;nbsp; objConn.Open &amp;#34;Provider=SQLOLEDB;Persist Security Info=False;Data Source=sqlserver.jen.com.my;Initial Catalog=CustomerDB;User Id=sa;Password=psd&amp;#34;&lt;br /&gt; &amp;nbsp; &lt;br /&gt; &amp;nbsp; &lt;br /&gt; &amp;nbsp; strSource = Request&amp;#40;&amp;#34;source&amp;#34;&amp;#41;&lt;br /&gt; &amp;nbsp; strFieldName = &amp;#34;Website_Hits&amp;#34;&lt;br /&gt; &amp;nbsp; Select Case strSource&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;Case &amp;#34;1&amp;#34;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; strFieldName = &amp;#34;Email_Hits&amp;#34;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;Case &amp;#34;2&amp;#34;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; strFieldName = &amp;#34;Popup_Hits&amp;#34;&lt;br /&gt; &amp;nbsp; End Select&lt;br /&gt; &amp;nbsp; &lt;br /&gt; &amp;nbsp; hits = 0&lt;br /&gt; &amp;nbsp; strSQL = &amp;#34;Select &amp;#34; &amp;amp; strFieldName &amp;amp; &amp;#34; From Counter&amp;#34;&lt;br /&gt; &amp;nbsp; Set objRS = objConn.Execute&amp;#40;strSQL&amp;#41;&lt;br /&gt; &amp;nbsp; &lt;br /&gt; &amp;nbsp; If Not&amp;#40;objRS.EOF&amp;#41; Then&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;hits = CLng&amp;#40;objRS&amp;#40;strFieldName&amp;#41;&amp;#41;&lt;br /&gt; &amp;nbsp; End If&lt;br /&gt; &amp;nbsp; objRS.Close&lt;br /&gt; &amp;nbsp; Set objRS = Nothing&lt;br /&gt; &amp;nbsp; &lt;br /&gt; &amp;nbsp; strSQL = &amp;#34;Update Counter Set &amp;#34; &amp;amp; strFieldName &amp;amp; &amp;#34;=&amp;#34; &amp;amp; CStr&amp;#40;hits+1&amp;#41;&lt;br /&gt; &amp;nbsp; objConn.Execute&amp;#40;strSQL&amp;#41;&lt;br /&gt; &amp;nbsp; objConn.Close&lt;br /&gt; &amp;nbsp; Set objConn = Nothing&lt;br /&gt;&lt;br /&gt;%&amp;#62;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>miniskirt</author>
            <category>Codemasters</category>
            <pubDate>Mon, 05 Jun 2006 17:36:36 +0800</pubDate>
        </item>
        <item>
            <title>ASP - Checkbox</title>
            <link>http://forum.lowyat.net/topic/287157</link>
            <description>&lt;!--emo&amp;:flex:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/flex.gif' border='0' style='vertical-align:middle' alt='flex.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;Dear All,&lt;br /&gt;&lt;br /&gt;I would like to have 2 checkboxes. Below it are textbox and dropdown list. However, I would like to disable the textbox and dropdown list initially unless chechkbox 1 is checked. How could I achieve this? &lt;br /&gt;&lt;br /&gt;I havent got the clue. Please guide me with some sample code.</description>
            <author>miniskirt</author>
            <category>Codemasters</category>
            <pubDate>Thu, 11 May 2006 16:26:55 +0800</pubDate>
        </item>
    </channel>
</rss>
