<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by kinni</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Mon, 08 Jun 2026 03:29:39 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Hybrid App</title>
            <link>http://forum.lowyat.net/topic/4560122</link>
            <description>Hi there, I have recently built a hybrid app using cordova and successfully deployed to both Android and iOS. The whole process was smooth util I try to install the app on other iOS devices.  The problem goes here, when I drag and drop the app installer to iTunes which connected to my iOS device. The app does appear on iOS device&amp;#39;s screen but stay dark for seconds and eventually the app goes disappeared. I did checked the UDID and its on my list as well as my mobileprovision file. Something weird is, the app worked fine on random devices and some are not working. I have tried to update the iOS to latest version (in case of iOS issue) but still failed. However, the app is running absolutely fine on Android.&lt;br /&gt;&lt;br /&gt;I am looking forward of your help. Appreciate to everyone who read, and reply. Sincerely&lt;br /&gt;Thanks &lt;!--emo&amp;:bangwall:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/bangwall.gif' border='0' style='vertical-align:middle' alt='bangwall.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>kinni</author>
            <category>Codemasters</category>
            <pubDate>Mon, 09 Apr 2018 09:20:22 +0800</pubDate>
        </item>
        <item>
            <title>C# Finding Exact Match Value</title>
            <link>http://forum.lowyat.net/topic/4299341</link>
            <description>Hi every master here, may I know is there a way to find an exactly match word in a string which is located at last index?&lt;br /&gt;I tried regular expression but it will return the first found word in a string. Let&amp;#39;s say I have &amp;quot;A OR B OR C OR D&amp;quot;, I wish to get index of OR which before D.&lt;br /&gt;&lt;br /&gt;The first regex working find but only return the first found.&lt;br /&gt;Second method goes well but this will return a value even a string contains the word &amp;quot;form&amp;quot; &amp;lt;&amp;lt;&amp;lt; or is between f and m.&lt;br /&gt;&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;string str = &amp;#34;A OR B OR C OR D&amp;#34;;&lt;br /&gt;var index Regex.Match&amp;#40;str, @&amp;#34;&amp;#092;WOR&amp;#092;W&amp;#34;&amp;#41;.Index;&lt;br /&gt;Int32 OrIndex = str.LastIndexOf&amp;#40;&amp;#34;OR&amp;#34;, str.Length, StringComparison.OrdinalIgnoreCase&amp;#41;;&lt;br /&gt;Console.WriteLine&amp;#40;OrIndex&amp;#41;;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>kinni</author>
            <category>Codemasters</category>
            <pubDate>Wed, 24 May 2017 12:00:17 +0800</pubDate>
        </item>
        <item>
            <title>[Question] DA-X55 and Da-X55 ProC Mark II</title>
            <link>http://forum.lowyat.net/topic/4164689</link>
            <description>I am currently looking for a karaoke amp &amp;amp; speaker and I am not familiar in this field and wish to get some information from you guys if possible.&lt;br /&gt;May I know the different between DA-X55 and DA-X55 Pro C Mark II? I am thinking to get a used BMB amplifier and a new pair of BMB speaker in this case but I didn&amp;#39;t know how exactly to choose a speaker that is capable with the amplifier. May I have some suggestion from you guys please? &lt;!--emo&amp;:bye:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/bye.gif' border='0' style='vertical-align:middle' alt='bye.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>kinni</author>
            <category>Home Entertainment</category>
            <pubDate>Tue, 03 Jan 2017 09:18:28 +0800</pubDate>
        </item>
        <item>
            <title>Update Table</title>
            <link>http://forum.lowyat.net/topic/3825653</link>
            <description>Morning to all the master here. May I ask the how can I effectively update the table? I&amp;#39;m currently using DataTables method where I could only add row but it will not save. The table is just simply re-draw to the default one. At the current stage, I insert the data using code but eventually will implement database into it. Thinking to make the add and edit functioning first before moving on to database.&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;&lt;br /&gt;&amp;#60;script type=&amp;#34;text/javascript&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#036;&amp;#40;document&amp;#41;.ready&amp;#40;function &amp;#40;&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#036;&amp;#40;&amp;#34;#inventory&amp;#34;&amp;#41;.footable&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;function restoreRow&amp;#40;oTable, nRow&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var aData = oTable.fnGetData&amp;#40;nRow&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var jqTds = &amp;#036;&amp;#40;&amp;#39;&amp;#62;td&amp;#39;, nRow&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for &amp;#40;var i = 0, iLen = jqTds.length&amp;#59; i &amp;#60; iLen&amp;#59; i++&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;oTable.fnUpdate&amp;#40;aData&amp;#91;i&amp;#93;, nRow, i, false&amp;#41;;&lt;br /&gt; &amp;nbsp; &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;oTable.fnDraw&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;function editRow&amp;#40;oTable, nRow&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var aData = oTable.fnGetData&amp;#40;nRow&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var jqTds = &amp;#036;&amp;#40;&amp;#39;&amp;#62;td&amp;#39;, nRow&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;jqTds&amp;#91;0&amp;#93;.innerHTML = &amp;#39;&amp;#60;input type=&amp;#34;text&amp;#34; value=&amp;#34;&amp;#39; + aData&amp;#91;0&amp;#93; + &amp;#39;&amp;#34;&amp;#62;&amp;#39;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;jqTds&amp;#91;1&amp;#93;.innerHTML = &amp;#39;&amp;#60;input type=&amp;#34;text&amp;#34; value=&amp;#34;&amp;#39; + aData&amp;#91;1&amp;#93; + &amp;#39;&amp;#34;&amp;#62;&amp;#39;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;jqTds&amp;#91;2&amp;#93;.innerHTML = &amp;#39;&amp;#60;input type=&amp;#34;text&amp;#34; value=&amp;#34;&amp;#39; + aData&amp;#91;2&amp;#93; + &amp;#39;&amp;#34;&amp;#62;&amp;#39;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;jqTds&amp;#91;3&amp;#93;.innerHTML = &amp;#39;&amp;#60;input type=&amp;#34;text&amp;#34; value=&amp;#34;&amp;#39; + aData&amp;#91;3&amp;#93; + &amp;#39;&amp;#34;&amp;#62;&amp;#39;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;jqTds&amp;#91;4&amp;#93;.innerHTML = &amp;#39;&amp;#60;a class=&amp;#34;edit&amp;#34; href=&amp;#34;&amp;#34;&amp;#62;Save&amp;#60;/a&amp;#62;&amp;#39;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;function saveRow&amp;#40;oTable, nRow&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var jqInputs = &amp;#036;&amp;#40;&amp;#39;input&amp;#39;, nRow&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;oTable.fnUpdate&amp;#40;jqInputs&amp;#91;0&amp;#93;.value, nRow, 0, false&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;oTable.fnUpdate&amp;#40;jqInputs&amp;#91;1&amp;#93;.value, nRow, 1, false&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;oTable.fnUpdate&amp;#40;jqInputs&amp;#91;2&amp;#93;.value, nRow, 2, false&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;oTable.fnUpdate&amp;#40;jqInputs&amp;#91;3&amp;#93;.value, nRow, 3, false&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;oTable.fnUpdate&amp;#40;&amp;#39;&amp;#60;a class=&amp;#34;edit&amp;#34; href=&amp;#34;&amp;#34;&amp;#62;Edit&amp;#60;/a&amp;#62;&amp;#39;, nRow, 4, false&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;oTable.fnDraw&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#036;&amp;#40;document&amp;#41;.ready&amp;#40;function &amp;#40;&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var oTable = &amp;#036;&amp;#40;&amp;#39;#inventory&amp;#39;&amp;#41;.dataTable&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var nEditing = null;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#036;&amp;#40;&amp;#39;#addButton&amp;#39;&amp;#41;.click&amp;#40;function &amp;#40;e&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;e.preventDefault&amp;#40;&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var aiNew = oTable.fnAddData&amp;#40;&amp;#91;&amp;#39;&amp;#39;, &amp;#39;&amp;#39;, &amp;#39;&amp;#39;, &amp;#39;&amp;#39;, &amp;#39;&amp;#60;a class=&amp;#34;edit&amp;#34; href=&amp;#34;&amp;#34;&amp;#62;Edit&amp;#60;/a&amp;#62;&amp;#39;, &amp;#39;&amp;#60;a class=&amp;#34;delete&amp;#34; href=&amp;#34;&amp;#34;&amp;#62;Delete&amp;#60;/a&amp;#62;&amp;#39;&amp;#93;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var nRow = oTable.fnGetNodes&amp;#40;aiNew&amp;#91;0&amp;#93;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;editRow&amp;#40;oTable, nRow&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;nEditing = nRow;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#036;&amp;#40;&amp;#39;#inventory a.delete&amp;#39;&amp;#41;.click&amp;#40;&amp;#39;click&amp;#39;, function &amp;#40;e&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;e.preventDefault&amp;#40;&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var nRow = &amp;#036;&amp;#40;this&amp;#41;.parents&amp;#40;&amp;#39;tr&amp;#39;&amp;#41;&amp;#91;0&amp;#93;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;oTable.fnDeleteRow&amp;#40;nRow&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#036;&amp;#40;&amp;#39;#inventory a.edit&amp;#39;&amp;#41;.click&amp;#40;&amp;#39;click&amp;#39;, function &amp;#40;e&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;e.preventDefault&amp;#40;&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* Get the row as a parent of the link that was clicked on */&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var nRow = &amp;#036;&amp;#40;this&amp;#41;.parents&amp;#40;&amp;#39;tr&amp;#39;&amp;#41;&amp;#91;0&amp;#93;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if &amp;#40;nEditing &amp;#33;== null &amp;amp;&amp;amp; nEditing &amp;#33;= nRow&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* Currently editing - but not this row - restore the old before continuing to edit mode */&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;restoreRow&amp;#40;oTable, nEditing&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;editRow&amp;#40;oTable, nRow&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;nEditing = nRow;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else if &amp;#40;nEditing == nRow &amp;amp;&amp;amp; this.innerHTML == &amp;#34;Save&amp;#34;&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* Editing this row and want to save it */&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;saveRow&amp;#40;oTable, nEditing&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;nEditing = null;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* No edit in progress - let&amp;#39;s start one */&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;editRow&amp;#40;oTable, nRow&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;nEditing = nRow;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;&amp;#60;/script&amp;#62;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>kinni</author>
            <category>Codemasters</category>
            <pubDate>Mon, 04 Jan 2016 11:26:00 +0800</pubDate>
        </item>
        <item>
            <title>Java Script</title>
            <link>http://forum.lowyat.net/topic/3807077</link>
            <description>Hi everyone, Sorry that I am asking such stupid question regarding to the dollar sign (&amp;#036;) in Javascript.&lt;br /&gt;&lt;br /&gt;I have go through some articles and research as well as a summary of a book to explain about the dollar sign.&lt;br /&gt;&lt;br /&gt;But I am still not clear with the dollar sign as why shall we use this? Instead of some alphabet like a-z but people insist to use the &amp;#036; symbol.&lt;br /&gt;&lt;br /&gt;Sorry for asking this stupid question sincerely</description>
            <author>kinni</author>
            <category>Codemasters</category>
            <pubDate>Wed, 16 Dec 2015 17:09:22 +0800</pubDate>
        </item>
        <item>
            <title>SQL Statement Need Help</title>
            <link>http://forum.lowyat.net/topic/3778850</link>
            <description>Hi there, I am currently working out with EDI but unfortunately I am stuck at the &amp;quot;Filler&amp;quot; requirement. In previous works, I used to type manually with the desired length by using blank space like below:&lt;br /&gt;&lt;b&gt;&amp;quot;, &amp;#39;(space * 100) &amp;quot; +&lt;br /&gt;space *(100)                           &amp;quot;                                                                                                                                                 &amp;quot; +&lt;br /&gt;&amp;quot;  space * (100)                                                                                                                                            &amp;#39; AS filler &amp;quot; +&lt;/b&gt;&lt;br /&gt;But the problem now, current filler required 9k digits&amp;#33;&amp;#33; Which really shock me as I might not wish to type 9000 blank space. I would like to ask is there any method or statement that I can specific a length for specific column during select statement?&lt;br /&gt;Therefore, may I have helping hand from experts in lowyat forum?&lt;br /&gt;&lt;br /&gt;Thank you everyone</description>
            <author>kinni</author>
            <category>Codemasters</category>
            <pubDate>Wed, 18 Nov 2015 12:50:03 +0800</pubDate>
        </item>
        <item>
            <title>Renoma Bag</title>
            <link>http://forum.lowyat.net/topic/3383731</link>
            <description>&lt;b&gt;Item(s): Renoma bag&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes: Renoma bag, Renoma plastic beg, Renoma bag cover, Adjustable belt(Optional)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price: RM 369 (Retail Price : RM 469)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Warranty:None&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method: COD (I never do postage for bag so I couldn&amp;#39;t estimate the fee)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location of seller:Pavilion, Sri Petaling, Kajang or Bukit Jalil&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method/details:PM&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Age of item: Brand New and bought it on 8 Oct 2014 &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions: Brand New and Just open for checking purpose&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Picture:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reason for sale:Extra&lt;/b&gt;</description>
            <author>kinni</author>
            <category>Garage Sales Archive</category>
            <pubDate>Mon, 20 Oct 2014 00:31:00 +0800</pubDate>
        </item>
        <item>
            <title>Clear Jtable</title>
            <link>http://forum.lowyat.net/topic/3292008</link>
            <description>Hello everyone. I would like to ask a question about how to clear the data from JTable. I have tried to search on Internet which is create a default table by using get mode method but when I set the new default table, the code always showing red line. Is there anyone can provide the code or explanation about my error here?&lt;br /&gt;Beside this, is there anyone know how to set the table not editable? I got the source on internet but then maybe I am not get used to java and I didn&amp;#39;t know how to apply the code. So, hope to get the answer here. Thank you and sorry</description>
            <author>kinni</author>
            <category>Codemasters</category>
            <pubDate>Thu, 17 Jul 2014 02:00:45 +0800</pubDate>
        </item>
        <item>
            <title>WTB Savanna 2</title>
            <link>http://forum.lowyat.net/topic/3261819</link>
            <description>Hi, guys. I know the price in savanna 2 and please don&amp;#39;t shoot me. But I would like to ask for anyone one here owner or agent, is there any unit in savanna 2 with 940k? Serious buyer. Bukit jalil, savanna 2.</description>
            <author>kinni</author>
            <category>Property For Sale</category>
            <pubDate>Wed, 18 Jun 2014 09:46:30 +0800</pubDate>
        </item>
        <item>
            <title>Study in Australia</title>
            <link>http://forum.lowyat.net/topic/3236634</link>
            <description>Hi, everyone. Yours every single opinion, comment, suggestion and advice are very important and useful to me.&lt;br /&gt;&lt;br /&gt;First of all, I am Han and currently studying in APU (Asia Pacific University) known as APIIT before or UCTI. My question here is whether possible to do credit transfer to Australia University from Degree level 2 to level 3. I heard that applying partnership as QUT will be much more easier rather than others. Since APU doesn&amp;#39;t have any partnership like HELP in Australia. What is the probability to success in this case? I am studying Software Engineering.&lt;br /&gt;Secondly, is there anyone know the actual distance from QUT to Queensland University? What if I plan to stay in the middle point of these, so that I could able to share room with my friend. Because he is going apply Queensland University. By the same token, how is the transport over there? I mean, any better suggestion or advice to stay at the place which better transport provided? Convenient I mean.  &lt;br /&gt;Thank you for everyone. &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>kinni</author>
            <category>Education Essentials</category>
            <pubDate>Mon, 26 May 2014 09:30:30 +0800</pubDate>
        </item>
        <item>
            <title>Software engineer</title>
            <link>http://forum.lowyat.net/topic/3190687</link>
            <description>May I know that is such job in Malaysia, working as a planner or negotiator rather than programming after graduated from collage as software engineer? I mean, I don&amp;#39;t hate coding but I feel more like working as a planner or whatever it calls instead of coding. As I know, lot of people says that software engineer is programmer and you can&amp;#39;t do anything beside coding and this makes me doubt and I wish to get a better answer from others. &lt;br /&gt;&lt;br /&gt;Is it possible to work as project planner after graduated or I need to have some other certification?&lt;br /&gt;&lt;br /&gt;What that I really can make a choice after graduate as software engineering?&lt;br /&gt;&lt;br /&gt;Is study aboard an better ideal rather than completing degree in Malaysia?&lt;br /&gt;&lt;br /&gt;Is there any advise from any seniors?&lt;br /&gt;&lt;br /&gt;Sincerely.&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;</description>
            <author>kinni</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Sat, 12 Apr 2014 01:19:48 +0800</pubDate>
        </item>
        <item>
            <title>Corsair RAM</title>
            <link>http://forum.lowyat.net/topic/3163541</link>
            <description>&lt;b&gt;Item(s):Corsair Dominator 1600 6GB (2GB * 3)Blue&lt;br /&gt;                Corsair Dominator 2000 4GB  (2GB * 2)Red&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes:Ram itself&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price: 220(Sold out)&lt;br /&gt;              250&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Warranty: LifeTime&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method:Postage or COD in Kajang or Bukit Jalil (Postage fee not included)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location of seller: Bukit Jalil&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method/details: PM&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Age of item: Can&amp;#39;t remember&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions: Working perfectly (Never overclock)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Picture:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reason for sale: Extra RAM &lt;!--emo&amp;:nod:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/nod.gif' border='0' style='vertical-align:middle' alt='nod.gif' /&gt;&lt;!--endemo--&gt; &lt;/b&gt;</description>
            <author>kinni</author>
            <category>Garage Sales Archive</category>
            <pubDate>Mon, 17 Mar 2014 10:48:01 +0800</pubDate>
        </item>
        <item>
            <title>Masteron</title>
            <link>http://forum.lowyat.net/topic/3119253</link>
            <description>I would like to ask the quality of masteron project? How good is it? Is it trustable?</description>
            <author>kinni</author>
            <category>Property Talk</category>
            <pubDate>Mon, 03 Feb 2014 13:52:27 +0800</pubDate>
        </item>
        <item>
            <title>VB.NET problem</title>
            <link>http://forum.lowyat.net/topic/3063768</link>
            <description>Hi, guys. I need some help from you guys. &lt;br /&gt;I am building a system for store information purpose.&lt;br /&gt;I have actually done the system, but when I testing my system and I figured out my database doesn&amp;#39;t work as my wish.&lt;br /&gt;I have insert some simple information Like&lt;br /&gt;Name&lt;br /&gt;address&lt;br /&gt;Phone number&lt;br /&gt;No-plate&lt;br /&gt;Vehicle model&lt;br /&gt;and so on. After that, when I click submit some error has occurred. It was show &amp;quot;Data type mismatch.&amp;quot;&lt;br /&gt;In my information I did using space but no symbol&lt;br /&gt;Is there anyone can help me from it?&lt;br /&gt;There are some additional information:&lt;br /&gt;&lt;br /&gt;Microsoft access 2007&lt;br /&gt;Visual Basic 2010&lt;br /&gt;Data type: &amp;quot;Text&amp;quot; and &amp;quot;Currency&amp;quot; and &amp;quot;Numeric&amp;quot;&lt;br /&gt;&lt;br /&gt;Please let me know, if I am doing anything wrong or Microsoft doesn&amp;#39;t accept space.&lt;br /&gt;Here is my INSERT code:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;check = New OleDbCommand(&amp;quot;SELECT * FROM Inventory WHERE [ID] = &amp;#39;&amp;quot; &amp;amp; txtID.Text &amp;amp; &amp;quot;&amp;#39;&amp;quot;, DbCon)&lt;br /&gt;            sdr = check.ExecuteReader&lt;br /&gt;            If (sdr.Read = True) Then&lt;br /&gt;                MessageBox.Show(&amp;quot;Duplicated has been found.&amp;quot;, &amp;quot;Error Information&amp;quot;)&lt;br /&gt;            Else&lt;br /&gt;                cmd.Connection = DbCon&lt;br /&gt;                cmd.CommandText = &amp;quot;INSERT INTO Inventory (ID,Manufacturer, Model, Generation, CompanyName, CompanyAdd, CompanyNum, StockName, StockPrice, StockDes, Stock)&amp;quot; &amp;amp; &amp;quot;VALUES (&amp;#39;&amp;quot; &amp;amp; txtID.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; txtManufacturer.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; txtModel.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; txtGeneration.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; txtCompanyN.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; txtCompanyA.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; txtCompanyN.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; txtName.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; txtDescription.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; txtPrice.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; txtStock.Text &amp;amp; &amp;quot;&amp;#39;)&amp;quot;&lt;br /&gt;                cmd.ExecuteNonQuery()&lt;br /&gt;                MessageBox.Show(&amp;quot;Stock has been created.&amp;quot;, &amp;quot;System Information&amp;quot;)&lt;br /&gt;            End If&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-------------------------------------------------&lt;br /&gt;Beside this, May I know how to prevent the message box pop-out twice?&lt;br /&gt;Because when I using &amp;quot;IF Not isNumeric&amp;quot; statement, whenever I click clear or back it will pop-out the error message twice, even I typing anything other than number.</description>
            <author>kinni</author>
            <category>Codemasters</category>
            <pubDate>Thu, 12 Dec 2013 18:50:58 +0800</pubDate>
        </item>
        <item>
            <title>New desktop</title>
            <link>http://forum.lowyat.net/topic/2983649</link>
            <description>Hi everyone, I have a question here and unable to find the solution on internet. Therefore, I need your help to overcome this problem. Please lend a hand to solve this problem and I just can&amp;#39;t to wait for my new rig. The problem is :&lt;br /&gt;I have a new rig with old hard disk (Except Hard disk everything is new)&lt;br /&gt;When start up the computer it will show the blue screen with error 0x0000007B and ask for remove new hardware.&lt;br /&gt;But the problem is I didn&amp;#39;t keep my old stuff. &lt;br /&gt;In this situation, what should I do to solve this problem? Can I just format the hard disk? (Think to use new windows instead of old XP windows)&lt;br /&gt;Or I should install the driver of the hard ware first? I don&amp;#39;t know how to install the driver without accessing windows.  &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>kinni</author>
            <category>Technical Support</category>
            <pubDate>Sat, 05 Oct 2013 13:05:56 +0800</pubDate>
        </item>
        <item>
            <title>VB.NET Insert Command</title>
            <link>http://forum.lowyat.net/topic/2971633</link>
            <description>Hi there, sorry for asking so simple and stupid question. Since I have 6 column database in my access, but in this part I would like to insert only 5 column data into the access. So, what should I do for my code? Because I am getting syntax error while debugging. Can anyone help me this stupid?&lt;br /&gt;Here is my code:&lt;br /&gt;Dim cmd As New OleDb.OleDbCommand&lt;br /&gt;cmd.Connection = DBCon&lt;br /&gt;cmd.CommandText = &amp;quot;INSERT INTO Vehicle(Manufacturer, Model, No_plate, Colour, Year) &amp;quot; &amp;amp;_&lt;br /&gt;                                &amp;quot; VALUES(&amp;quot; &amp;amp; Me.txtManu.Text &amp;amp; &amp;quot;,&amp;#39;&amp;quot; &amp;amp; Me.txtCM.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; Me.txtNP.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; Me.txtCol.Text &amp;amp; &amp;quot;&amp;#39;,&amp;#39;&amp;quot; &amp;amp; Me.txtYOM.Text &amp;amp; &amp;quot;&amp;#39;)&amp;quot;&lt;br /&gt;cmd.ExecuteNonQuery()&lt;br /&gt; DBCon.Close() &lt;br /&gt; &lt;!--emo&amp;:respect:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/notworthy.gif' border='0' style='vertical-align:middle' alt='notworthy.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>kinni</author>
            <category>Codemasters</category>
            <pubDate>Wed, 25 Sep 2013 09:30:02 +0800</pubDate>
        </item>
        <item>
            <title>VB.Net picture storing</title>
            <link>http://forum.lowyat.net/topic/2966060</link>
            <description>Hi there, may I get some helps from you guys? Currently, I am doing my university project about car renting system. Since the system needs picture to show to the customer so I have to store the picture into database when I add a car into the system, but I have found that picture storing is not as simple as normal data. I have tried search on Internet but they didn&amp;#39;t provide any explanation and I don&amp;#39;t wish to just copy and paste, can anyone there can help to provide simple code and explanation? &lt;br /&gt;Additional, can I store the picture and normal data together with a single command? Or I must do it separately ?&lt;br /&gt;Thank you</description>
            <author>kinni</author>
            <category>Codemasters</category>
            <pubDate>Fri, 20 Sep 2013 11:59:34 +0800</pubDate>
        </item>
        <item>
            <title>Sold-iPad 4th generation</title>
            <link>http://forum.lowyat.net/topic/2922810</link>
            <description>&lt;b&gt;Item(s):Apple iPad 4th&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes:Everything&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price:1200 - COD in bukit Jalil&lt;br /&gt;1250 - COD somewhere else but not too far and postage.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Warranty:Unknown(get it from bank, point exchange)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method:COD or postage are available.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location of seller:Kajang and bukit Jalil.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method/details:016-3597900( whatsapp, we chat ) also available.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Age of item: New unit&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions:no plastic cover but never switch on just for checking&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reason for sale:I have another iPad already.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Thanks for forum guy, a very nice deal and also thanks to lowyat forum platform</description>
            <author>kinni</author>
            <category>Garage Sales Archive</category>
            <pubDate>Wed, 14 Aug 2013 17:55:49 +0800</pubDate>
        </item>
        <item>
            <title>PS3 fat model</title>
            <link>http://forum.lowyat.net/topic/2894142</link>
            <description>Does anyone know where can I get a 19 blades fan for fat model PS3?&lt;br /&gt;Prefer KL area, because I am looking for a fan to replace but I don&amp;#39;t know where can I buy this fan.&lt;br /&gt;Thank you</description>
            <author>kinni</author>
            <category>Playstation</category>
            <pubDate>Sun, 21 Jul 2013 21:12:26 +0800</pubDate>
        </item>
        <item>
            <title>Fan damaged</title>
            <link>http://forum.lowyat.net/topic/2889114</link>
            <description>My ps3 has problem on fan damaged. How much it take for repair and can I just add a external fan? &lt;!--emo&amp;:blink:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/blink.gif' border='0' style='vertical-align:middle' alt='blink.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>kinni</author>
            <category>Playstation</category>
            <pubDate>Wed, 17 Jul 2013 22:34:50 +0800</pubDate>
        </item>
    </channel>
</rss>
