<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by avatar123</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Tue, 21 Jul 2026 15:20:41 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>i10 1.25 fullspec 2012</title>
            <link>http://forum.lowyat.net/topic/2853334</link>
            <description>Hi, wanna ask is i10 1.25 full spec 2012 worth for 40k? I saw an ad in mudah, haven&amp;#39;t call the owner. Any suggestion where to check the market price? The milleage is less than 10000km.</description>
            <author>avatar123</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Tue, 18 Jun 2013 09:17:03 +0800</pubDate>
        </item>
        <item>
            <title>how much capital needed for fashion shop</title>
            <link>http://forum.lowyat.net/topic/1810379</link>
            <description>Hi, I&amp;#39;m planning to start up a small business, fashion shop (since i love fashion so so so much XD).&lt;br /&gt;&lt;br /&gt;Anyone can share how much capital is needed for this? I had asked around, the rental for a shop in shopping complex at my place is about 3-3.5k per month. Plan to sell clothes from taiwan/ korean but definitely not low quality&amp;#39;s china stuff.&lt;br /&gt;&lt;br /&gt;I have totally no experience in business, plan to start it then let my parents run it, since they are getting old and this job will not burden them so much.&lt;br /&gt;&lt;br /&gt;Please comment/ suggest/ advice ya...thanks&amp;#33;&amp;#33;    &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>avatar123</author>
            <category>Finance, Business and Investment House</category>
            <pubDate>Mon, 28 Mar 2011 10:35:40 +0800</pubDate>
        </item>
        <item>
            <title>What business can I do with 15k</title>
            <link>http://forum.lowyat.net/topic/1566506</link>
            <description>Hello, I&amp;#39;m doing survey on what business can be done with model 10k-15k ? Any suggestion and experience sharing is appreciated.</description>
            <author>avatar123</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Sat, 18 Sep 2010 21:18:07 +0800</pubDate>
        </item>
        <item>
            <title>pass table name as parameter</title>
            <link>http://forum.lowyat.net/topic/1529030</link>
            <description>Hi, let&amp;#39;s say i want to take a table name which will be generated daily. For eg the table name is WKDxxxx, where xxxx mean mmyy in date.&lt;br /&gt;&lt;br /&gt;so i assign a table name as:&lt;br /&gt;&lt;br /&gt;v_date     VARCHAR(4)    := TO_CHAR(sysdate,&amp;#39;mmyy&amp;#39;);&lt;br /&gt;v_table    VARCHAR2(20)  := TO_CHAR(&amp;#39;WKD&amp;#39;||v_date);&lt;br /&gt;&lt;br /&gt;So the table name will be updated as most current data following the day the script is run. &lt;br /&gt;&lt;br /&gt;I&amp;#39;m facing problem in this, &lt;br /&gt;&lt;br /&gt;SELECT TOPIC &lt;br /&gt;  FROM v_table&lt;br /&gt; WHERE book_id = &amp;#39;14230&amp;#39;;&lt;br /&gt;&lt;br /&gt;It return &amp;quot;table or view does not exist&amp;quot;.&lt;br /&gt;&lt;br /&gt;Anyone know how to use the variable inside plsql select statement so that selection can be make? &lt;br /&gt;&lt;br /&gt;Thank you.</description>
            <author>avatar123</author>
            <category>Codemasters</category>
            <pubDate>Tue, 17 Aug 2010 15:46:29 +0800</pubDate>
        </item>
        <item>
            <title>add in data to custom database using foreign key</title>
            <link>http://forum.lowyat.net/topic/1393974</link>
            <description>&lt;b&gt;Hi, I wish to add additional data other than the template provided for .net sign up template. Thus I customize my own database table and link them as below:&lt;br /&gt;&lt;br /&gt;1. assign &amp;quot;userId&amp;quot; as primary key for new table&lt;br /&gt;2. link it as foreign key to main existing table&amp;#39;s &amp;quot;userId&amp;quot; column&lt;br /&gt;&lt;br /&gt;The code i have for sql data source is:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;asp:SqlDataSource ID=&amp;quot;InsertExtraInfo&amp;quot; runat=&amp;quot;server&amp;quot; ConnectionString=&amp;quot;&amp;lt;%&amp;#036;ConnectionStrings:fyp_busTicketingConnectionString  %&amp;gt;&amp;quot;&lt;br /&gt;    InsertCommand=&amp;quot;INSERT INTO [Verification] ([UserId],[NRIC],[Gender]) VALUES (@UserId, @NRIC,@Gender)&amp;quot;&lt;br /&gt;    ProviderName=&amp;quot;&amp;lt;%&amp;#036; ConnectionStrings:fyp_busTicketingConnectionString.ProviderName %&amp;gt;&amp;quot;&amp;gt;&lt;br /&gt;    &amp;lt;InsertParameters&amp;gt;&lt;br /&gt;        &amp;lt;asp:ControlParameter Name=&amp;quot;UserId&amp;quot; Type=&amp;quot;String&amp;quot; ControlID=&amp;quot;UserId&amp;quot; PropertyName=&amp;quot;Text&amp;quot; /&amp;gt;&lt;br /&gt;        &amp;lt;asp:ControlParameter Name=&amp;quot;NRIC&amp;quot; Type=&amp;quot;String&amp;quot; ControlID=&amp;quot;NRIC&amp;quot; PropertyName=&amp;quot;Text&amp;quot; /&amp;gt;&lt;br /&gt;        &amp;lt;asp:ControlParameter Name=&amp;quot;Gender&amp;quot; Type=&amp;quot;String&amp;quot; ControlID=&amp;quot;Gender&amp;quot; PropertyName=&amp;quot;Text&amp;quot; /&amp;gt;&lt;br /&gt;    &amp;lt;/InsertParameters&amp;gt;&lt;br /&gt;&amp;lt;/asp:SqlDataSource&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;The code for back end code to insert is:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;  protected void CreateUserWizard1_CreatedUser(object sender, EventArgs e)&lt;br /&gt;    {&lt;br /&gt;        TextBox UserNameTextBox = (TextBox)CreateUserWizardStep1.ContentTemplateContainer.FindControl(&amp;quot;UserName&amp;quot;);&lt;br /&gt;        SqlDataSource DataSource = (SqlDataSource)CreateUserWizardStep1.ContentTemplateContainer.FindControl(&amp;quot;InsertExtraInfo&amp;quot;);&lt;br /&gt;&lt;br /&gt;        MembershipUser User = Membership.GetUser(UserNameTextBox.Text);&lt;br /&gt;        object UserGUID = User.ProviderUserKey;&lt;br /&gt;&lt;br /&gt;        DataSource.InsertParameters.Add(&amp;quot;UserId&amp;quot;, UserGUID.ToString());&lt;br /&gt;        DataSource.Insert();&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;However it return&lt;span style='color:blue'&gt; Could not find control &amp;#39;UserId&amp;#39; in ControlParameter &amp;#39;UserId&amp;#39;. &lt;br /&gt;Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. &lt;br /&gt;&lt;br /&gt;Exception Details: System.InvalidOperationException: Could not find control &amp;#39;UserId&amp;#39; in ControlParameter &amp;#39;UserId&amp;#39;.&lt;br /&gt;&lt;br /&gt;Source Error: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Line 36: &lt;br /&gt;Line 37:         DataSource.InsertParameters.Add(&amp;quot;UserId&amp;quot;, UserGUID.ToString());&lt;br /&gt;Line 38:         DataSource.Insert();&lt;br /&gt;Line 39:     }&lt;br /&gt;Line 40: }&lt;br /&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Can somebody tell me what go wrong ??The dateline is getting closer &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;&lt;br /&gt;</description>
            <author>avatar123</author>
            <category>Codemasters</category>
            <pubDate>Sat, 17 Apr 2010 18:47:07 +0800</pubDate>
        </item>
        <item>
            <title>Linux Professional Institute Certificate</title>
            <link>http://forum.lowyat.net/topic/1373746</link>
            <description>Hi, I&amp;#39;m a final sem student and had register with 3P program previously. Now they offered me this course called&lt;b&gt; 	Linux Professional Institute Certificate &lt;/b&gt; and is free. Anyone know that what is it about and do it important? I need to decide whether to accept or decline the course and start finding accommodation if i wish to participate as it take about one month to complete the course.&lt;br /&gt;&lt;br /&gt;Thank you.&lt;br /&gt;&lt;br /&gt;[addedon]March 30, 2010, 5:04 pm[/addedon]any comment??</description>
            <author>avatar123</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Tue, 30 Mar 2010 14:18:14 +0800</pubDate>
        </item>
        <item>
            <title>intel kulim contact</title>
            <link>http://forum.lowyat.net/topic/1361261</link>
            <description>Hi, I had receive call from intel kulim recently for interview. Somehow i wish to change the interview date but when call back the number can&amp;#39;t reach the person. Anyone can help with this? Urgent as i dun want lost any opportunity, thank you&amp;#33; &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>avatar123</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Fri, 19 Mar 2010 12:37:39 +0800</pubDate>
        </item>
        <item>
            <title>.net framework 3.5 &amp;amp; setup</title>
            <link>http://forum.lowyat.net/topic/1343296</link>
            <description>I had update to window7 and start .net framework 3.5 and IIS by CONTROL PANEL &amp;gt; PROGRAM&amp;amp;FEATURES &amp;gt; TURN WINDOWS ON&amp;amp;OFF &amp;gt; select IIS, .net framework 3.5 &amp;gt;APPLY.&lt;br /&gt;&lt;br /&gt;Suppose I have to set environment variables but can&amp;#39;t find the command. Anyone can help? Complete guide until what it will show when i type &lt;a href='http://localhost/' target='_blank'&gt;http://localhost/&lt;/a&gt; like what it did in apache is &amp;quot;It works&amp;#33;&amp;quot;.&lt;br /&gt;&lt;br /&gt;Thanks in advance. &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>avatar123</author>
            <category>Technical Support</category>
            <pubDate>Wed, 03 Mar 2010 13:08:01 +0800</pubDate>
        </item>
        <item>
            <title>Average salary for fresh grad</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Codemasters</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>Average salary for fresh grad</title>
            <link>http://forum.lowyat.net/topic/1339177</link>
            <description>Hi, I&amp;#39;ll grad soon thus start seeking for job. Some company offer 1800+- but some around 2300. May i know is the maximum salary is RM2300 for 2nd Upper Class?&lt;br /&gt;&lt;br /&gt;Tq in advance for your comment &lt;!--emo&amp;:P--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/tongue.gif' border='0' style='vertical-align:middle' alt='tongue.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>avatar123</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Sat, 27 Feb 2010 15:03:34 +0800</pubDate>
        </item>
        <item>
            <title>Getting start with C#</title>
            <link>http://forum.lowyat.net/topic/1338124</link>
            <description>Greeting&amp;#33; I only learn Java in my degree but now wanna try to learn by myself C# for FYP. Anyone can tell me what i need to create a website (eg. i need java IDE and apache for JAVA language) and any suggestion of website for self-learning? I choose c# because it is quite similar to Java thus easier for me to pick up the language. &lt;br /&gt;&lt;br /&gt;I really hope that can learn one more language so that can be more competative when looking for job after grad. &lt;br /&gt;&lt;br /&gt;Tq&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;</description>
            <author>avatar123</author>
            <category>Codemasters</category>
            <pubDate>Fri, 26 Feb 2010 13:57:00 +0800</pubDate>
        </item>
    </channel>
</rss>
