<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by chasers_bc</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Mon, 03 Aug 2026 07:02:14 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Vios problem with GPS signal</title>
            <link>http://forum.lowyat.net/topic/1435664</link>
            <description>Hi all,&lt;br /&gt;i&amp;#39;ve got this problem with my GPS (papago), it just cannot get the signal inside my vios. I have a low spec vcool tint. i&amp;#39;ve tried my gps on other car that have no tint and also using high-end vcool, both got no problem getting the signal. &lt;br /&gt;&lt;br /&gt;i suspect it is due to the vcool tint, but then i try put the gps at the back seat of my vios, and weirdly the GPS signal is ok.&lt;br /&gt;Does vios have any device in the driver seat that will disturb the GPS signal? anyone experience this yet?</description>
            <author>chasers_bc</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Tue, 25 May 2010 20:50:10 +0800</pubDate>
        </item>
        <item>
            <title>Manage big data in dropdown list</title>
            <link>http://forum.lowyat.net/topic/831170</link>
            <description>Hi all,&lt;br /&gt;&lt;br /&gt;i have a big problem here. My data in the database is up to more than 8000 rows. In my list, i used a dropdown list to manage the pages for the list. But my problem is, because of the data, the dropdown list becomes to long (from 1 to 8000).&lt;br /&gt;&lt;br /&gt;I would like to create a dropdown list just like in phpmyadmin. If anyone notice, in phpmyadmin, if the data is too big, the dropdown list will show only some of the data like this :&lt;br /&gt;&lt;br /&gt;1&lt;br /&gt;2&lt;br /&gt;3&lt;br /&gt;4&lt;br /&gt;5&lt;br /&gt;50&lt;br /&gt;70&lt;br /&gt;90&lt;br /&gt;91&lt;br /&gt;92&lt;br /&gt;93&lt;br /&gt;&lt;br /&gt;does anyone can help me because i&amp;#39;m stuck trying to manage it. thanx</description>
            <author>chasers_bc</author>
            <category>Codemasters</category>
            <pubDate>Thu, 30 Oct 2008 15:40:32 +0800</pubDate>
        </item>
        <item>
            <title>Redirect page after displaying &amp;#39;save-as&amp;#39; dialogbox</title>
            <link>http://forum.lowyat.net/topic/802081</link>
            <description>Hi guys,&lt;br /&gt;&lt;br /&gt;i have a situation, where after the user clicked a button, i need to redirect my page after a &amp;#39;save-as&amp;#39; dialogbox is displayed to the user. Currently, my page cannot be redirected to another page. I&amp;#39;ve tried using response.redirect after the dialogbox code, but it didnt seem to work. This is my code :&lt;br /&gt;&lt;br /&gt;////////////////////////////////////////////////////////////////////////////////////////////////////////&lt;br /&gt;&lt;br /&gt;Protected Sub btn_eksport_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btn_eksport.Click&lt;br /&gt;&lt;br /&gt;&amp;#39;File name&lt;br /&gt;Dim FilePathSave As String = Folder.ToString() + strFileName + &amp;quot;.txt&amp;quot;&lt;br /&gt;Dim objTargetFile As System.IO.FileInfo = New System.IO.FileInfo(FilePathSave)&lt;br /&gt;&lt;br /&gt; &amp;#39;display save as dialog box for user to save&lt;br /&gt; With Response&lt;br /&gt;     .Clear()&lt;br /&gt;     .ContentType = &amp;quot;application/octet-stream&amp;quot;&lt;br /&gt;     .AppendHeader(&amp;quot;Content-Disposition&amp;quot;, &amp;quot;attachment; filename=&amp;quot; + objTargetFile.Name)&lt;br /&gt;     .TransmitFile(objTargetFile.FullName)&lt;br /&gt;     .End()&lt;br /&gt; End With&lt;br /&gt;&lt;br /&gt;&amp;#39;redirect to other page&lt;br /&gt;Response.Redirect(&amp;quot;trn_list.aspx&amp;quot;)&lt;br /&gt;&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;////////////////////////////////////////////////////////////////////////////////////////////////////////&lt;br /&gt;&lt;br /&gt;Is it because the save-as code that i use? Or can anyone show me other save-as code that can work with my situation?&lt;br /&gt;I&amp;#39;m really desperate, any help is really2 appreciated. thanx</description>
            <author>chasers_bc</author>
            <category>Codemasters</category>
            <pubDate>Fri, 26 Sep 2008 17:07:49 +0800</pubDate>
        </item>
        <item>
            <title>Adding two textbox value (asp.net)</title>
            <link>http://forum.lowyat.net/topic/777171</link>
            <description>Hi all,&lt;br /&gt;&lt;br /&gt;i&amp;#39;m an asp.net newbie, and i&amp;#39;m trying to add/substract values from two textbox. My situation is i&amp;#39;m trying to calculate the difference from two prices, 100.00 and 80.00 for example. The problem is, when i tried to substract the 1st textbox value with the 2nd one, it becomes like this : 100.00 - 80.00 = 2000. The decimal places is gone. Can anyone help me why this happen. Here i paste my simple code for your references.&lt;br /&gt;&lt;br /&gt;im using visual web developer 2008&lt;br /&gt;&lt;br /&gt;-----------------&lt;br /&gt;calculate.aspx&lt;br /&gt;-----------------&lt;br /&gt;&lt;br /&gt;&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;head runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;    &amp;lt;title&amp;gt;Untitled Page&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;    &amp;lt;form id=&amp;quot;form1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;    &amp;lt;div&amp;gt;&lt;br /&gt;    &lt;br /&gt;        &amp;lt;asp:TextBox ID=&amp;quot;tb1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/asp:TextBox&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;        &amp;lt;asp:TextBox ID=&amp;quot;tb2&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/asp:TextBox&amp;gt;&lt;br /&gt;        &amp;lt;br /&amp;gt;&lt;br /&gt;        &amp;lt;asp:Button ID=&amp;quot;Button1&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Kira&amp;quot; /&amp;gt;&lt;br /&gt;    &amp;lt;/div&amp;gt;&lt;br /&gt;    &amp;lt;/form&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;--------------------&lt;br /&gt;calculate.aspx.vb&lt;br /&gt;--------------------&lt;br /&gt;&lt;br /&gt;Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim a, b, c As Double&lt;br /&gt;&lt;br /&gt;        a = Convert.ToDecimal(txt_1.Text)&lt;br /&gt;        b = Convert.ToDecimal(txt_2.Text)&lt;br /&gt;        c = a - b&lt;br /&gt;        Response.Write( c )&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Example&lt;br /&gt;----------&lt;br /&gt;a = 100.00&lt;br /&gt;b = 80.00&lt;br /&gt;c = 2000 (it should be 20.00, but the decimal place is gone)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;can anyone help...tq</description>
            <author>chasers_bc</author>
            <category>Codemasters</category>
            <pubDate>Wed, 27 Aug 2008 20:45:44 +0800</pubDate>
        </item>
        <item>
            <title>Sum price for each checkbox</title>
            <link>http://forum.lowyat.net/topic/642791</link>
            <description>Hi,&lt;br /&gt;  I have a form with a list of item and its price. I want when user click any item (using checkbox), the total price will be updated according to what item is checked. Anyone can help me on this?  &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>chasers_bc</author>
            <category>Codemasters</category>
            <pubDate>Sat, 01 Mar 2008 18:07:58 +0800</pubDate>
        </item>
        <item>
            <title>How to detect my Video Controller</title>
            <link>http://forum.lowyat.net/topic/640289</link>
            <description>Hi,&lt;br /&gt;  I just formatted my laptop (HP Pavilion tx 1000) and installed WinXP (previously vista). The problem is, the drivers for VGA controller that is provided from the HP website is only for vista. So i&amp;#39;m trying to search through the web by myself. I know my graphic card is from NVIDIA but i dont know what type is it. Can anyone tell me how i can know my graphic cards type?</description>
            <author>chasers_bc</author>
            <category>Hardware</category>
            <pubDate>Wed, 27 Feb 2008 11:59:28 +0800</pubDate>
        </item>
        <item>
            <title>Updating a field when checkbox is checked</title>
            <link>http://forum.lowyat.net/topic/635874</link>
            <description>Hi all,&lt;br /&gt;&lt;br /&gt;I got a problem. This is my scenario : &lt;br /&gt;&lt;br /&gt;I have a list of items with their prices. Each item have a checkbox. and at the bottom of the form, there is a total price field. (just like a shopping cart). Whenever an items checkbox is checked or unchecked, the total price will sum all the checked item. &lt;br /&gt;&lt;br /&gt;Can anyone tell me or show me any link to solve this.</description>
            <author>chasers_bc</author>
            <category>Codemasters</category>
            <pubDate>Thu, 21 Feb 2008 12:12:04 +0800</pubDate>
        </item>
        <item>
            <title>install flash component in HP browser</title>
            <link>http://forum.lowyat.net/topic/625490</link>
            <description>hi&lt;br /&gt; i wanna ask...is it possible if we install the flash component for HP browser? i know that the N series already have a flash player...but for browsing a flash-based website using the phones browser, can we install flash for the browser?</description>
            <author>chasers_bc</author>
            <category>Mobile Phones and Tablets</category>
            <pubDate>Sun, 03 Feb 2008 20:31:38 +0800</pubDate>
        </item>
        <item>
            <title>Problem previewing flash in web browser</title>
            <link>http://forum.lowyat.net/topic/615687</link>
            <description>Hi..&lt;br /&gt; i got a problem...i used a flash banner in my web site...when i preview it in frontpage, the flash is displayed normally....but when i preview it in the internet...the flash cannot be displayed. and what problems me is that at other computer, the flash can be displayed without any problem. Its just my computer. i have tested both in IE and mozilla, but the prob still persist. and yes my computer already have flash components in it. anybody have a solution?</description>
            <author>chasers_bc</author>
            <category>Software</category>
            <pubDate>Sun, 20 Jan 2008 13:01:20 +0800</pubDate>
        </item>
        <item>
            <title>Problem generating excel file in server</title>
            <link>http://forum.lowyat.net/topic/529554</link>
            <description>hi all,&lt;br /&gt;   i have a function to generate an excel file using php. this function works well in my localhost. but when i upload it to the server....the system doesnt output an excel file..instead in outputs a text file containing the data in the excel. &lt;br /&gt;&lt;br /&gt;Does anyone know how to solve this? do i have to make any settings to my server? do i have do add a MIME type? help  &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>chasers_bc</author>
            <category>Codemasters</category>
            <pubDate>Mon, 01 Oct 2007 17:58:31 +0800</pubDate>
        </item>
        <item>
            <title>memory low in N73</title>
            <link>http://forum.lowyat.net/topic/509889</link>
            <description>Hi all,&lt;br /&gt;  My N73 recently kept displaying an warning message saying that memory is low...and even though i have cleared all my messages (my other file isnt that large) and have restarted my phone...the warning message still wont dissapear. is it because virus? does anyone know how i can format my phone? (not memory card, but phones memory)</description>
            <author>chasers_bc</author>
            <category>Mobile Phones and Tablets</category>
            <pubDate>Fri, 24 Aug 2007 20:32:39 +0800</pubDate>
        </item>
        <item>
            <title>Reading a list of textfield value</title>
            <link>http://forum.lowyat.net/topic/509136</link>
            <description>Hi all,&lt;br /&gt;  i have a list of students generated from db...and in each row of students have their own textfield to assign test results...after a &amp;#39;save&amp;#39; button is clicked....all this value is going to be saved in db, assigning each students with the results typed at the textfield. &lt;br /&gt; Does anyone know how i can read each textfield?</description>
            <author>chasers_bc</author>
            <category>Codemasters</category>
            <pubDate>Thu, 23 Aug 2007 11:47:49 +0800</pubDate>
        </item>
        <item>
            <title>retrieve data from pop-up window</title>
            <link>http://forum.lowyat.net/topic/508301</link>
            <description>hi all,&lt;br /&gt;  i would like to know how to get/retrieve data from a pop-up menu. This is my situation: there is a Page A with a textfield and a link. If the user clicks the link, a pop-up window will appear, listing a list of data. what i want is when the user clicks any data, the pop-up window will close and the data will appear at the textfield.&lt;br /&gt;&lt;br /&gt;  does anyone know how i can achieve this?</description>
            <author>chasers_bc</author>
            <category>Codemasters</category>
            <pubDate>Tue, 21 Aug 2007 19:52:35 +0800</pubDate>
        </item>
        <item>
            <title>get the &amp;#39;last post&amp;#39; message in forum</title>
            <link>http://forum.lowyat.net/topic/504337</link>
            <description>hi...i am trying to create a simple forum, and i want to retrieve the user and time for the last post for a topic. does anyone know how i can retrieve this info from the db?</description>
            <author>chasers_bc</author>
            <category>Codemasters</category>
            <pubDate>Tue, 14 Aug 2007 14:52:44 +0800</pubDate>
        </item>
        <item>
            <title>Message Toolbox using PHP/Javascript</title>
            <link>http://forum.lowyat.net/topic/482355</link>
            <description></description>
            <author>chasers_bc</author>
            <category>Codemasters</category>
            <pubDate>Tue, 03 Jul 2007 11:20:25 +0800</pubDate>
        </item>
        <item>
            <title>How to get date &amp;amp; time difference?</title>
            <link>http://forum.lowyat.net/topic/473962</link>
            <description>Hi all,&lt;br /&gt;  I would like to know if there is a way for me to get the difference between two date and time. This is my scenario :&lt;br /&gt;&lt;br /&gt;   When a user logged into his account, the system can highlight newly submitted news on the system. It highlights the news if the time that news is submitted is before the time the user logged in. &lt;br /&gt;&lt;br /&gt;Can anyone tell me how to do this? What is the field type in the database that must be used in order to to this calculation? THanx</description>
            <author>chasers_bc</author>
            <category>Codemasters</category>
            <pubDate>Sun, 17 Jun 2007 01:35:44 +0800</pubDate>
        </item>
        <item>
            <title>e-mail server for outlook</title>
            <link>http://forum.lowyat.net/topic/465434</link>
            <description>Hi all,&lt;br /&gt;   I&amp;#39;ve just tried to use outlook...and i&amp;#39;m not sure what to put at the &amp;#39;Incoming Mail Server&amp;#39; and &amp;#39;Outgoing mail server&amp;#39;...can anyone tell me what is the mail server for yahoo mail and gmail? thank you</description>
            <author>chasers_bc</author>
            <category>Software</category>
            <pubDate>Thu, 31 May 2007 10:23:23 +0800</pubDate>
        </item>
        <item>
            <title>Problem with MSXML 4.0 while installing game</title>
            <link>http://forum.lowyat.net/topic/455293</link>
            <description>Hi,&lt;br /&gt;&lt;br /&gt;  I just bought myself &amp;#39;rise of legends&amp;#39; yesterday...i&amp;#39;ve finished installing it and doing the crack...then when i want to launch it, an error message saying &amp;#39;MSXML 4.0 is not properly installed&amp;#39;. Does anyone knows how to solve this?</description>
            <author>chasers_bc</author>
            <category>Software</category>
            <pubDate>Fri, 11 May 2007 09:37:59 +0800</pubDate>
        </item>
        <item>
            <title>What bit for vista edition?</title>
            <link>http://forum.lowyat.net/topic/453882</link>
            <description>Hi,&lt;br /&gt; I would like to know, Windows Vista Business Edition is 32bit or 64bit? And for Ultimate?</description>
            <author>chasers_bc</author>
            <category>Software</category>
            <pubDate>Tue, 08 May 2007 16:58:50 +0800</pubDate>
        </item>
        <item>
            <title>Hdd infected by infrom.exe</title>
            <link>http://forum.lowyat.net/topic/451684</link>
            <description>Hi,&lt;br /&gt;  Yesterday i connect my 2nd hdd to my friends pc (as a slave), then when i plug it back to my pc, when i double click one of its partition, the &amp;#39;Open With&amp;#39; messagebox  appear. By then, i realize maybe my hdd is infected by virus.&lt;br /&gt;  I&amp;#39;ve scan my hdd and detected virus infrom.exe. I&amp;#39;ve already deleted the .exe file (which is located at each partition in my 2nd hdd, the one that i connect to my friends pc), but the &amp;#39;open with&amp;#39; messagebox still appears.&lt;br /&gt;  Can anybody help me to solve this problem?  &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>chasers_bc</author>
            <category>Technical Support</category>
            <pubDate>Fri, 04 May 2007 09:51:50 +0800</pubDate>
        </item>
    </channel>
</rss>
