<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by nitec</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Mon, 08 Jun 2026 19:43:31 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>About starting a sendirian berhad</title>
            <link>http://forum.lowyat.net/topic/905452</link>
            <description>Dear friends,&lt;br /&gt;Im in noob in business world.Can anyone here tell me what is the registration fees like to start a sendirian berhad in Malaysia.Besides,where do i go to register one?Please help.Thank you in advance.</description>
            <author>nitec</author>
            <category>Finance, Business and Investment House</category>
            <pubDate>Tue, 13 Jan 2009 14:14:12 +0800</pubDate>
        </item>
        <item>
            <title>Need help with php configuration</title>
            <link>http://forum.lowyat.net/topic/883139</link>
            <description>Im new to php and i need help with php configuration.Im using wamp server(the latest version) and i am learning php from an ebook.The sample code from the book never uses the &amp;quot;&amp;lt;?php&amp;quot; tag infront instead just uses &amp;quot;&amp;lt;?&amp;quot; this tag.Can any 1 help me with this.Thank you.Need help from gurus&lt;br /&gt;&lt;br /&gt;Thank you in advance.</description>
            <author>nitec</author>
            <category>Codemasters</category>
            <pubDate>Mon, 22 Dec 2008 12:45:55 +0800</pubDate>
        </item>
        <item>
            <title>Survey on the best web hosting</title>
            <link>http://forum.lowyat.net/topic/799154</link>
            <description>Greetings to all,&lt;br /&gt;  i would like to host a web and currently looking for the best place,which web hosting would you suggest to me.Let this topic to be like a discussion where users can share their experiences.Thank you in advance&lt;br /&gt;&lt;br /&gt; &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;</description>
            <author>nitec</author>
            <category>Codemasters</category>
            <pubDate>Tue, 23 Sep 2008 13:30:44 +0800</pubDate>
        </item>
        <item>
            <title>Web site folder hidding</title>
            <link>http://forum.lowyat.net/topic/794934</link>
            <description>Dear Gurus,&lt;br /&gt;    how do i hide the folder eg:pages in the website address like this :-&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.mysite.com/pages/mypage.html' target='_blank'&gt;http://www.mysite.com/pages/mypage.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I want a user to click on a link,calling the page:mypage.html which is located in the folder &amp;quot;pages&amp;quot; and the website address should display&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.mysite.com/mypage.html' target='_blank'&gt;http://www.mysite.com/mypage.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;instead of&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.mysite.com/pages/mypage.html' target='_blank'&gt;http://www.mysite.com/pages/mypage.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;My question is,is there any scripts or method to hide the folders being displayed in the address bar?&lt;br /&gt;&lt;br /&gt;Thank you</description>
            <author>nitec</author>
            <category>Codemasters</category>
            <pubDate>Thu, 18 Sep 2008 16:15:42 +0800</pubDate>
        </item>
        <item>
            <title>What is the best datatype to deal with money</title>
            <link>http://forum.lowyat.net/topic/792555</link>
            <description>Dear SQL/DB Gurus...what would be the best datatype to deal with money,bills ,discounts ...i meant the best datatype dealing with large amount of money &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; Please share  &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; &lt;br /&gt;&lt;br /&gt;Thank you</description>
            <author>nitec</author>
            <category>Codemasters</category>
            <pubDate>Mon, 15 Sep 2008 22:44:40 +0800</pubDate>
        </item>
        <item>
            <title>vb.net inserting in to db using vs 2005</title>
            <link>http://forum.lowyat.net/topic/789005</link>
            <description>My intention is to insert a data into an access database in vb.net.I cant get it done.Need some guru&amp;#39;s help. Here is my code:&lt;br /&gt;&lt;br /&gt;Imports System.Data.OleDb&lt;br /&gt;Public Class Form1&lt;br /&gt;&lt;br /&gt;    Dim cn As OleDbConnection&lt;br /&gt;    Dim cmd As OleDbCommand&lt;br /&gt;    Dim dr As OleDbDataReader&lt;br /&gt;    Dim icount As Integer&lt;br /&gt;    Dim str As String&lt;br /&gt;&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Try&lt;br /&gt;            cn = New OleDbConnection(&amp;quot;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Data.mdb;&amp;quot;)&lt;br /&gt;            cn.Open()&lt;br /&gt;            str = &amp;quot;insert into test(ID,just,just2) values(2,&amp;#39;test&amp;#39;,2)&amp;quot;&lt;br /&gt;            &amp;#39;string stores the command and CInt is used to convert number to string&lt;br /&gt;            cmd = New OleDbCommand(str, cn)&lt;br /&gt;            icount = cmd.ExecuteNonQuery&lt;br /&gt;            MessageBox.Show(icount)&lt;br /&gt;            &amp;#39;displays number of records inserted&lt;br /&gt;        Catch&lt;br /&gt;        End Try&lt;br /&gt;        cn.Close()&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;br /&gt;need help urgently  &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>nitec</author>
            <category>Codemasters</category>
            <pubDate>Thu, 11 Sep 2008 16:04:47 +0800</pubDate>
        </item>
        <item>
            <title>ASP.Net help : datagrid</title>
            <link>http://forum.lowyat.net/topic/662659</link>
            <description>I have a datagrid:column which has the itemtemplate,edititemtemplate and footertempate.For the footer template,it loads a list from the database.I intend to create a edititemtemplate which the user is able to reselect items from the list but i want the previously selected item to be selected(highlighted) as default when editing.&lt;br /&gt;&lt;br /&gt;This is the code for the dgrdList_ItemDataBound_EditItem :-&lt;br /&gt;&lt;br /&gt;            Dim drwData As DataRowView&lt;br /&gt;            Dim ddlLocation As WebControls.DropDownList&lt;br /&gt;            Dim dtrSQL As OleDbDataReader&lt;br /&gt;            Dim i As Integer&lt;br /&gt;            Dim item As ListItem&lt;br /&gt;&lt;br /&gt;            ddlLocation = CType(e.Item.FindControl(&amp;quot;ddlLocation_Edit&amp;quot;), WebControls.DropDownList)&lt;br /&gt;&lt;br /&gt;            ddlLocation.Items.Clear()&lt;br /&gt;            ddlLocation.Items.Add(&amp;quot;&amp;quot;)&lt;br /&gt;            For Each item In Cmn.loadlist(&amp;quot;Location&amp;quot;)&lt;br /&gt;                ddlLocation.Items.Add(item)&lt;br /&gt;            Next&lt;br /&gt;&lt;br /&gt;            For i = 0 To (CInt(ddlLocation.Items.Count.ToString) - 1)                          &lt;br /&gt;                If ddlLocation.Items(i).Text = drwData(&amp;quot;LOCATION_DESC&amp;quot;) Then          //highlighted error&lt;br /&gt;                    ddlLocation.SelectedIndex = i                                                         &lt;br /&gt;                End If&lt;br /&gt;            Next&lt;br /&gt;&lt;br /&gt;And this is the error that i get with this code:-&lt;br /&gt;&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.NullReferenceException: Object reference not set to an instance of an object.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Need help from .net gurus  &lt;!--emo&amp;:(--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>nitec</author>
            <category>Codemasters</category>
            <pubDate>Sun, 30 Mar 2008 13:34:52 +0800</pubDate>
        </item>
        <item>
            <title>ASP.NET help ,data binding</title>
            <link>http://forum.lowyat.net/topic/660432</link>
            <description>I want to bind my database to an asp.net literal which is in a scrolling box function.I only managed to view 1 record.Unable to view all the records.Need help from some .net gurus &lt;br /&gt;&lt;br /&gt;this is my function&lt;br /&gt;&lt;br /&gt;            Dim dadAppDb As OleDbDataAdapter&lt;br /&gt;            Dim dstAppDb As DataSet&lt;br /&gt;            Dim dvwTable As DataView&lt;br /&gt;            Dim dr As DataRowView&lt;br /&gt;            Dim strFirstColumn As String&lt;br /&gt;            Dim strScroller As String&lt;br /&gt;&lt;br /&gt;            dstAppDb = New DataSet&lt;br /&gt;            dadAppDb = New OleDbDataAdapter(strSQL, conAppDb)&lt;br /&gt;            dadAppDb.Fill(dstAppDb, &amp;quot;TABLE&amp;quot;)&lt;br /&gt;&lt;br /&gt;            dvwTable = dstAppDb.Tables(&amp;quot;TABLE&amp;quot;).DefaultView&lt;br /&gt;            strFirstColumn = dvwTable.Table.Columns(0).ColumnName&lt;br /&gt;&lt;br /&gt;            For Each dr In dvwTable&lt;br /&gt;                strScroller = dr.Item(&amp;quot;INVENTORY_DESC&amp;quot;)        &lt;br /&gt;                ltrUpdates.Text = strScroller&lt;br /&gt;            Next&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>nitec</author>
            <category>Codemasters</category>
            <pubDate>Thu, 27 Mar 2008 00:50:16 +0800</pubDate>
        </item>
    </channel>
</rss>
