<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by violette</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Wed, 03 Jun 2026 20:42:05 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Repeat Data into a Column</title>
            <link>http://forum.lowyat.net/topic/2113190</link>
            <description>hi, i have found code that can copy the same data into a column. here&amp;#39;s the code;&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;With wbkSecond.Worksheets&amp;#40;&amp;#34;Yearly&amp;#34;&amp;#41; &lt;br /&gt;    .Range&amp;#40;&amp;#34;B&amp;#34; &amp;amp; .Range&amp;#40;&amp;#34;B&amp;#34; &amp;amp; Rows.Count&amp;#41;.End&amp;#40;xlUp&amp;#41;.Row + 1&amp;#41;.PasteSpecial xlPasteValues &lt;br /&gt;    Cells&amp;#40;1, 2&amp;#41; = DatePart&amp;#40;&amp;#34;yyyy&amp;#34;, Now&amp;#41; &lt;br /&gt;    Set copyRange = Worksheets&amp;#40;&amp;#34;Yearly&amp;#34;&amp;#41;.Range&amp;#40;&amp;#34;J5&amp;#58;J5000&amp;#34;&amp;#41; &lt;br /&gt;    Range&amp;#40;&amp;#34;B1&amp;#34;&amp;#41;.Copy copyRange &lt;br /&gt;    Set copyRange = Worksheets&amp;#40;&amp;#34;Yearly&amp;#34;&amp;#41;.Range&amp;#40;&amp;#34;K5&amp;#58;K5000&amp;#34;&amp;#41; &lt;br /&gt;    Range&amp;#40;&amp;#34;D1&amp;#34;&amp;#41;.Copy copyRange &lt;br /&gt;End With&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;however, this code is for a fixed range from J5 to J5000. what should i do if i want the data to be repeated more dynamic?for example, it will be repeated according to the number of data in column B.if data in column B has 500 data, so the data in column J should be repeated until 500 data only.</description>
            <author>violette</author>
            <category>Codemasters</category>
            <pubDate>Thu, 17 Nov 2011 20:39:26 +0800</pubDate>
        </item>
        <item>
            <title>Heart Beat Faster Than Usual</title>
            <link>http://forum.lowyat.net/topic/2110739</link>
            <description>This week is a rough week for me due to two important events. one is regarding my work and the other one is a sport tournament. i feel worried for both events and couldn&amp;#39;t stop thinking bout it.then yesterday morning my heart beat was faster than usual. it feels like i have just finished 5km running. the only time i feel relax was when im in the court playing with my team member. &lt;br /&gt;&lt;br /&gt;now i couldn&amp;#39;t sleep and i could feel my heart beat is faster than usual. how can i make myself relax n slow down my heart beat?any idea why is this thing happening to me?am i sick or what?&lt;br /&gt;</description>
            <author>violette</author>
            <category>Health &amp;amp; Fitness</category>
            <pubDate>Wed, 16 Nov 2011 01:31:59 +0800</pubDate>
        </item>
        <item>
            <title>Compare Sheets/File Name with Database</title>
            <link>http://forum.lowyat.net/topic/2101625</link>
            <description>Hi. I would like to do insert and update database data from excel file with the help of macro. before i can insert any data into the db, i have to check whether the field is already in the database or not. the primary key is year_id, period_id and stock_code. the data for year_id and period_id in excel file is according to the sheet&amp;#39;s name. for example; there are 5 sheets; yearly, quarter 1, quarter 2, quarter 3, and quarter 4. and the data for each company is arranged according to the sheets. how to compare the sheet name and file name with the field in the database for the checking purposes?&lt;br /&gt;&lt;br /&gt;sheet name               ||               period_id&lt;br /&gt;quarter 1                   ||                     1&lt;br /&gt;quarter 2                   ||                     2&lt;br /&gt;quarter 3                   ||                     3&lt;br /&gt;quarter 4                   ||                     4&lt;br /&gt;yearly                       ||                     5&lt;br /&gt;&lt;br /&gt;meanwhile for the year_id, it should take the name of the file. for example,&lt;br /&gt;&lt;br /&gt;file name     ||      year_id&lt;br /&gt;year2008     ||        2008&lt;br /&gt;year2009     ||        2009&lt;br /&gt;year2010     ||        2010</description>
            <author>violette</author>
            <category>Codemasters</category>
            <pubDate>Wed, 09 Nov 2011 10:26:09 +0800</pubDate>
        </item>
        <item>
            <title>Query for Year and Period</title>
            <link>http://forum.lowyat.net/topic/2100466</link>
            <description>I need to get data between year and period. 1 year have four periods.&lt;br /&gt;i.e; year = 2010 period = 1,2,3,4&lt;br /&gt;the problem is on the period part where i could not select second period smaller from the first period.&lt;br /&gt;for example, i choose year=2010 to year=2011&lt;br /&gt;and period=4 to period=2&lt;br /&gt;the result should display year=2010 period=4,year=2011 period=1,year=2011 period 2. but when i run the code, it returns nothing. however if i choose year=2010 to year=2011 and period=1 to period=4, the code works fine. &lt;br /&gt;&lt;br /&gt;here&amp;#39;s the example of my code;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;SELECT SUM&amp;#40;ma5.alert_value&amp;#41; &lt;br /&gt;FROM company_alert ma5 &lt;br /&gt;LEFT JOIN qiddb.company_info mb5 ON &amp;#40;mb5.stock_code=ma5.stock_code&amp;#41; &lt;br /&gt;LEFT JOIN ref_sector mc5 ON &amp;#40;mc5.sector_code=mb5.sector_code&amp;#41;&lt;br /&gt;WHERE ma5.alert_id=&amp;#39;VPAEH&amp;#39; AND mc5.sector_code=ref.sector_code AND ma5.year_id BETWEEN &amp;#39;2009&amp;#39; AND &amp;#39;2010&amp;#39; AND ma5.period_id BETWEEN &amp;#39;q3&amp;#39; AND &amp;#39;q1&amp;#39;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;which part should i fix to make it right? thanks all</description>
            <author>violette</author>
            <category>Codemasters</category>
            <pubDate>Tue, 08 Nov 2011 14:38:35 +0800</pubDate>
        </item>
        <item>
            <title>Copy multiple sheets</title>
            <link>http://forum.lowyat.net/topic/2085677</link>
            <description>I need to copy multiple sheets into the template accordingly. well, i manage to copy for the first sheet only. i&amp;#39;ve tried to modify the code to copy multiple sheets at one time and i couldnt get it right. here&amp;#39;s the code for copying the first sheet into the template. i have to specify the column as i just need certain column to be copied for that particular sheet.&lt;br /&gt;&lt;br /&gt;i have five sheets; Year, Q1, Q2, Q3, Q4&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;   Sub Copy&amp;#40;&amp;#41;&lt;br /&gt; &lt;br /&gt;    Dim wbk As Workbook&lt;br /&gt;    Dim strFirstFile As String&lt;br /&gt;    Dim strSecondFile As String&lt;br /&gt; &lt;br /&gt;    strFirstFile = &amp;#34;C&amp;#58;&amp;#092;Documents and Settings&amp;#092;user&amp;#092;My Documents&amp;#092;FiST Mac&amp;#092;Data.xls&amp;#34;&lt;br /&gt;    strSecondFile = &amp;#34;C&amp;#58;&amp;#092;Documents and Settings&amp;#092;user&amp;#092;My Documents&amp;#092;FiST Mac&amp;#092;FiST_data_template.xls&amp;#34;&lt;br /&gt; &lt;br /&gt;    Set wbk = Workbooks.Open&amp;#40;strFirstFile&amp;#41;&lt;br /&gt;    With wbk.Sheets&amp;#40;&amp;#34;Year&amp;#34;&amp;#41;&lt;br /&gt;        .Range&amp;#40;.Range&amp;#40;&amp;#34;A5&amp;#58;AJ5&amp;#34;&amp;#41;, .Range&amp;#40;&amp;#34;A65536&amp;#34;&amp;#41;.End&amp;#40;xlUp&amp;#41;&amp;#41;.Copy&lt;br /&gt; &lt;br /&gt;    End With&lt;br /&gt; &lt;br /&gt;    Set wbk = Workbooks.Open&amp;#40;strSecondFile&amp;#41;&lt;br /&gt;    With wbk.Sheets&amp;#40;&amp;#34;Yearly&amp;#34;&amp;#41;&lt;br /&gt; &lt;br /&gt;    Sheets&amp;#40;&amp;#34;Yearly&amp;#34;&amp;#41;.&amp;#91;B65536&amp;#58;AK65536&amp;#93;.End&amp;#40;xlUp&amp;#41;&amp;#40;2&amp;#41;.PasteSpecial Paste&amp;#58;=xlValues&lt;br /&gt; &lt;br /&gt;    End With&lt;br /&gt;    &lt;br /&gt;    Application.DisplayAlerts = False&lt;br /&gt;    wbk.SaveAs &amp;#34;C&amp;#58;&amp;#092;Documents and Settings&amp;#092;user&amp;#092;My Documents&amp;#092;FiST Mac&amp;#092;FISTdb.xls&amp;#34;&lt;br /&gt;    Windows&amp;#40;&amp;#34;Data.xls&amp;#34;&amp;#41;.Close&lt;br /&gt;    MsgBox &amp;#34;FiST Database Updated&amp;#34;, vbOKOnly, &amp;#34; FiST&amp;#34;&lt;br /&gt;    &lt;br /&gt;   &lt;br /&gt;    Application.DisplayAlerts = True&lt;br /&gt;&lt;br /&gt;End Sub&lt;br /&gt;    &lt;br /&gt;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>violette</author>
            <category>Codemasters</category>
            <pubDate>Thu, 27 Oct 2011 12:18:48 +0800</pubDate>
        </item>
        <item>
            <title>Update Database(mysql) using record from Excel</title>
            <link>http://forum.lowyat.net/topic/2083519</link>
            <description>I would like to have a macro to export data from an excel file into the database(SQL) for insert and update data into existing tables purposes. but i&amp;#39;m not sure how to do this.&lt;br /&gt;&lt;br /&gt;can anyone suggest me or give some ideas on how to make it possible? thanks a lot ur help is much appreciated.</description>
            <author>violette</author>
            <category>Codemasters</category>
            <pubDate>Tue, 25 Oct 2011 16:22:55 +0800</pubDate>
        </item>
        <item>
            <title>vb.net</title>
            <link>http://forum.lowyat.net/topic/2060544</link>
            <description>hi all&amp;#33; i&amp;#39;m not sure where to post this. i hope i&amp;#39;m posting at the right section.&lt;br /&gt;&lt;br /&gt;previously i use formula as below;&lt;br /&gt;receivable * 365 / revenue&lt;br /&gt;&lt;br /&gt;n here is how it looks like in vb.net coding.&lt;br /&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('5292a2065a50526659d02f0ddf6b899a')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;5292a2065a50526659d02f0ddf6b899a&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;        &lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;Dim total1 As Label = CType&amp;#40;e.Item.FindControl&amp;#40;&amp;#34;total1&amp;#34;&amp;#41;, Label&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;total1.Text = e.Item.DataItem&amp;#40;&amp;#34;receivable&amp;#34;&amp;#41;.ToString * 365 / e.Item.DataItem&amp;#40;&amp;#34;revenue&amp;#34;&amp;#41;.ToString&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;note that the &amp;#39;receivable&amp;#39; and &amp;#39;revenue&amp;#39; are taken from database(mysql)&lt;br /&gt;&lt;br /&gt;however,if the formula of a calculation involve data for current year divide by data from previous year, how should i implement it? &lt;br /&gt;for example;&lt;br /&gt;&lt;br /&gt;revenue from current year * 365 / revenue from previous year&lt;br /&gt;&lt;br /&gt;any idea?</description>
            <author>violette</author>
            <category>Codemasters</category>
            <pubDate>Thu, 06 Oct 2011 16:35:08 +0800</pubDate>
        </item>
        <item>
            <title>Cannot search from &amp;#39;Start&amp;#39; menu</title>
            <link>http://forum.lowyat.net/topic/2019081</link>
            <description>Hye all. I hope I&amp;#39;m posting at the right place. few days ago i&amp;#39;ve run the tune-up utilities. did some clean up. but then when i type in the search box at the &amp;#39;Start&amp;#39; menu, i could not find the program. even though i have type in the full name of the program. luckily im using rocketdock and got shortcuts for certain programs that is frequently being used. anyone know why does this problem happened? is it because of the clean up thingy that i&amp;#39;ve done previously? or i accidentally change any settings?  &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>violette</author>
            <category>Software</category>
            <pubDate>Fri, 02 Sep 2011 17:05:54 +0800</pubDate>
        </item>
        <item>
            <title>Autonumber for Datagrid</title>
            <link>http://forum.lowyat.net/topic/1989147</link>
            <description>i would like to add a new column that will generate autonumber to the existing datagrid. based on my research i got from google, i only manage to create the new column(but it is empty). hope someone will help me to solve my problem. here&amp;#39;s my code. please have a look and guide me. &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;asp&amp;#58;DataGrid id=&amp;#34;DataGrid1&amp;#34; runat=&amp;#34;server&amp;#34; BorderStyle=&amp;#34;None&amp;#34; AutoGenerateColumns=&amp;#34;False&amp;#34; Width=&amp;#34;950px&amp;#34; BackColor=&amp;#34;White&amp;#34; BorderColor=&amp;#34;#3366CC&amp;#34; BorderWidth=&amp;#34;1px&amp;#34; CellPadding=&amp;#34;4&amp;#34; HorizontalAlign=&amp;#34;Center&amp;#34; EmptyDataText=&amp;#34;There are no data records to display.&amp;#34; EnableTheming=&amp;#34;True&amp;#34; DataSourceID=&amp;#34;BrokerRanking&amp;#34; Font-Names=&amp;#34;calibri&amp;#34; Font-Size=&amp;#34;16px&amp;#34;&amp;#62;&lt;br /&gt;&amp;#60;HeaderStyle ForeColor=&amp;#34;White&amp;#34; /&amp;#62;&lt;br /&gt;&amp;#60;Columns&amp;#62;&lt;br /&gt;&amp;#60;asp&amp;#58;TemplateColumn HeaderText=&amp;#34;No&amp;#34;&amp;#62;&lt;br /&gt;&amp;#60;HeaderStyle BackColor=&amp;#34;#2B1B17&amp;#34; Font-Bold=&amp;#34;True&amp;#34; HorizontalAlign=&amp;#34;Center&amp;#34; Font-Names=&amp;#34;calibri&amp;#34; Font-Size=&amp;#34;16px&amp;#34; Width=&amp;#34;10px&amp;#34; /&amp;#62;&lt;br /&gt;&amp;#60;ItemStyle BackColor=&amp;#34;White&amp;#34; Font-Bold=&amp;#34;False&amp;#34; Font-Italic=&amp;#34;False&amp;#34; Font-Names=&amp;#34;Calibri&amp;#34;&lt;br /&gt;Font-Overline=&amp;#34;False&amp;#34; Font-Strikeout=&amp;#34;False&amp;#34; Font-Underline=&amp;#34;False&amp;#34; ForeColor=&amp;#34;Black&amp;#34; /&amp;#62;&lt;br /&gt; &lt;br /&gt;&amp;#60;/asp&amp;#58;TemplateColumn&amp;#62;&lt;br /&gt; &lt;br /&gt;&amp;#60;asp&amp;#58;BoundColumn DataField=&amp;#34;PName&amp;#34; ReadOnly=&amp;#34;True&amp;#34; HeaderText=&amp;#34;Name&amp;#34; DataFormatString=&amp;#34; {0&amp;#58;N2}&amp;#34;&amp;#62;&lt;br /&gt;&amp;#60;HeaderStyle BackColor=&amp;#34;#2B1B17&amp;#34; Font-Bold=&amp;#34;True&amp;#34; HorizontalAlign=&amp;#34;Center&amp;#34; Font-Names=&amp;#34;calibri&amp;#34; Font-Size=&amp;#34;16px&amp;#34; Width=&amp;#34;150px&amp;#34; /&amp;#62;&lt;br /&gt;&amp;#60;ItemStyle Font-Bold=&amp;#34;False&amp;#34; Font-Italic=&amp;#34;False&amp;#34; Font-Overline=&amp;#34;False&amp;#34; Font-Strikeout=&amp;#34;False&amp;#34;&lt;br /&gt;Font-Underline=&amp;#34;False&amp;#34; HorizontalAlign=&amp;#34;Left&amp;#34; /&amp;#62;&lt;br /&gt;&amp;#60;/asp&amp;#58;BoundColumn&amp;#62;&lt;br /&gt;&amp;#60;asp&amp;#58;BoundColumn DataField=&amp;#34;totalVolume&amp;#34; ReadOnly=&amp;#34;True&amp;#34; HeaderText=&amp;#34;Vol &amp;#40;&amp;#39;mil&amp;#41;&amp;#34; DataFormatString=&amp;#34; {0&amp;#58;N2}&amp;#34;&amp;#62;&lt;br /&gt;&amp;#60;HeaderStyle BackColor=&amp;#34;#2B1B17&amp;#34; Font-Bold=&amp;#34;True&amp;#34; HorizontalAlign=&amp;#34;Center&amp;#34; Font-Names=&amp;#34;calibri&amp;#34; Font-Size=&amp;#34;16px&amp;#34; Width=&amp;#34;100px&amp;#34; /&amp;#62;&lt;br /&gt;&amp;#60;ItemStyle Font-Bold=&amp;#34;False&amp;#34; Font-Italic=&amp;#34;False&amp;#34; Font-Overline=&amp;#34;False&amp;#34; Font-Strikeout=&amp;#34;False&amp;#34;&lt;br /&gt;Font-Underline=&amp;#34;False&amp;#34; HorizontalAlign=&amp;#34;Right&amp;#34; /&amp;#62;&lt;br /&gt;&amp;#60;/asp&amp;#58;BoundColumn&amp;#62;&lt;br /&gt;&amp;#60;asp&amp;#58;BoundColumn DataField=&amp;#34;PercentVolume&amp;#34; ReadOnly=&amp;#34;True&amp;#34; HeaderText=&amp;#34;%&amp;#34; DataFormatString=&amp;#34; {0&amp;#58;N2}&amp;#34;&amp;#62;&lt;br /&gt;&amp;#60;HeaderStyle BackColor=&amp;#34;#2B1B17&amp;#34; Font-Bold=&amp;#34;True&amp;#34; HorizontalAlign=&amp;#34;Center&amp;#34; Font-Names=&amp;#34;calibri&amp;#34; Font-Size=&amp;#34;16px&amp;#34; Width=&amp;#34;100px&amp;#34; /&amp;#62;&lt;br /&gt;&amp;#60;ItemStyle Font-Bold=&amp;#34;False&amp;#34; Font-Italic=&amp;#34;False&amp;#34; Font-Overline=&amp;#34;False&amp;#34; Font-Strikeout=&amp;#34;False&amp;#34;&lt;br /&gt;Font-Underline=&amp;#34;False&amp;#34; HorizontalAlign=&amp;#34;Right&amp;#34; /&amp;#62;&lt;br /&gt;&amp;#60;/asp&amp;#58;BoundColumn&amp;#62;&lt;br /&gt; &lt;br /&gt;&amp;#60;/Columns&amp;#62;&lt;br /&gt; &lt;br /&gt;&amp;#60;/asp&amp;#58;DataGrid&amp;#62;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;[addedon]August 9, 2011, 11:35 am[/addedon]i have found the solution guys. just add in this simple line to the column and it will generate the numbers accordingly. here&amp;#39;s the code;&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;&lt;br /&gt;&amp;#60;asp&amp;#58;TemplateColumn HeaderText=&amp;#34;No&amp;#34;&amp;#62;&lt;br /&gt;&amp;#60;HeaderStyle BackColor=&amp;#34;#2B1B17&amp;#34; Font-Bold=&amp;#34;True&amp;#34; HorizontalAlign=&amp;#34;Center&amp;#34; Font-Names=&amp;#34;calibri&amp;#34; Font-Size=&amp;#34;16px&amp;#34; Width=&amp;#34;10px&amp;#34; /&amp;#62;&lt;br /&gt;&amp;#60;ItemStyle BackColor=&amp;#34;White&amp;#34; Font-Bold=&amp;#34;False&amp;#34; Font-Italic=&amp;#34;False&amp;#34; Font-Names=&amp;#34;Calibri&amp;#34;&lt;br /&gt;Font-Overline=&amp;#34;False&amp;#34; Font-Strikeout=&amp;#34;False&amp;#34; Font-Underline=&amp;#34;False&amp;#34; ForeColor=&amp;#34;Black&amp;#34; /&amp;#62;&lt;br /&gt;&lt;br /&gt;&amp;#60;itemtemplate&amp;#62; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;#60;%# &amp;#40;DataGrid1.PageSize*DataGrid1.CurrentPageIndex&amp;#41;+ Container.ItemIndex+1%&amp;#62; &lt;br /&gt;&amp;#60;/itemtemplate&amp;#62; &amp;nbsp; &lt;br /&gt;&lt;br /&gt;&amp;#60;/asp&amp;#58;TemplateColumn&amp;#62;&lt;br /&gt; &amp;nbsp;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;</description>
            <author>violette</author>
            <category>Codemasters</category>
            <pubDate>Mon, 08 Aug 2011 09:26:26 +0800</pubDate>
        </item>
        <item>
            <title>girl&amp;#39;s attitude that makes you annoyed</title>
            <link>http://forum.lowyat.net/topic/1187667</link>
            <description>i admit that everyone have weaknesses, as no body&amp;#39;s perfect in this world. maybe we can share our experience here and how we can manage it so that friends, are still friends. some people might show it directly if he/she feels annoyed and some people just keep it inside and act as usual. somehow, at one time you will fell like -AARRGGHHH&amp;#33;&amp;#33; cannot tahan ady &lt;!--emo&amp;:furious:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/vmad.gif' border='0' style='vertical-align:middle' alt='vmad.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:furious:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/vmad.gif' border='0' style='vertical-align:middle' alt='vmad.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>violette</author>
            <category>Girl&amp;#39;s Club</category>
            <pubDate>Thu, 08 Oct 2009 14:00:07 +0800</pubDate>
        </item>
        <item>
            <title>auto shutdown</title>
            <link>http://forum.lowyat.net/topic/1114708</link>
            <description>Guys, Im facing this problem since last week and I really have no idea why and what is the cause of this problem. No matter whether I use it or just leave it on standby mode, it will switches off itself. Then, when I try to turn it on, &amp;#39;windows error recovery&amp;#39; will be displayed. I&amp;#39;ve sent my laptop to nearest service center at Ipoh and they told me something wrong with the motherboard and it will cost me rm800++ if I want them to get the new one. &lt;!--emo&amp;:sweat:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sweat.gif' border='0' style='vertical-align:middle' alt='sweat.gif' /&gt;&lt;!--endemo--&gt; Today, I went back to that shop and I told them I just wanna take my laptop. Just save money and buy new one is much better. Then, I simply try switch on my laptop. And it shutdown itself. Again&amp;#33; &lt;!--emo&amp;:sweat:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sweat.gif' border='0' style='vertical-align:middle' alt='sweat.gif' /&gt;&lt;!--endemo--&gt; Its ok.. I just wait few more miinutes, and try again. Then the &amp;#39;windows error recovery&amp;#39; displayed and I chose &amp;quot;SAFE MODE WITH NETWORKING&amp;quot;. And now I can use my laptop as usual [but using safe mode la.] So. Does anyone know what is happening actually? Im a lil bit confused now... &lt;!--emo&amp;:hmm:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/hmm.gif' border='0' style='vertical-align:middle' alt='hmm.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>violette</author>
            <category>Technical Support</category>
            <pubDate>Fri, 31 Jul 2009 15:57:35 +0800</pubDate>
        </item>
        <item>
            <title>help me</title>
            <link>http://forum.lowyat.net/topic/1045109</link>
            <description>Hello everyone. Recently I just noticed bout this problem. If I use headphone or earphone, any music play still can be heard from the laptop speaker and I hear nothing from the headphone. Only if i click on something, the click sound can be heard from the headphone. What does it mean? Something wrong with the setting or what? Help me please... &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;  &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;  &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; &lt;br /&gt;oh ya. my laptop is compaq presario f700</description>
            <author>violette</author>
            <category>Technical Support</category>
            <pubDate>Thu, 28 May 2009 20:06:48 +0800</pubDate>
        </item>
        <item>
            <title>help me with my laptop problem</title>
            <link>http://forum.lowyat.net/topic/1044693</link>
            <description>Hello everyone. Recently I just noticed bout this problem. If I use headphone or earphone, any music play still can be heard from the laptop speaker and I hear nothing from the headphone. Only if i click on something, the click sound can be heard from the headphone. What does it mean? Something wrong with the setting or what? Help me please... &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;  &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;  &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>violette</author>
            <category>Software</category>
            <pubDate>Thu, 28 May 2009 13:15:38 +0800</pubDate>
        </item>
        <item>
            <title>help me making calendar</title>
            <link>http://forum.lowyat.net/topic/1025470</link>
            <description>hye guys~*&lt;br /&gt;i need help here, &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;  actually this question was given by my lecturer which acquired me to make a calendar that will start with 1st of Jan according to the letter what user want. i didnt get it right-all months will start with the letter i&amp;#39;ve entered and every month got 31 days. i&amp;#39;ve ruined the calendar &lt;!--emo&amp;:sweat:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sweat.gif' border='0' style='vertical-align:middle' alt='sweat.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;&lt;br /&gt;can u guys help me out solving it?actually im scared if my thread will be closed by mod &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; &lt;br /&gt;&lt;br /&gt;this is my code&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;&lt;br /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;#include &amp;lt;conio.h&amp;gt;&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;    int i,j;&lt;br /&gt;    char day;&lt;br /&gt;    &lt;br /&gt;    printf(&amp;quot;Please enter first day of the year 2009 &amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;    scanf(&amp;quot;%c&amp;quot;,&amp;amp;day);&lt;br /&gt;    &lt;br /&gt;    switch (day)&lt;br /&gt;    {&lt;br /&gt;    case &amp;#39;M&amp;#39;:&lt;br /&gt;    case &amp;#39;m&amp;#39;:&lt;br /&gt;&lt;br /&gt;   for(i=1;i&amp;lt;=12;i++)&lt;br /&gt;    &lt;br /&gt;               {&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMONTH %d&amp;quot;,i);&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMo &amp;#092;tTu &amp;#092;tWe &amp;#092;tTh &amp;#092;tFr &amp;#092;tSa &amp;#092;tSun&amp;#092;n&amp;quot;);&lt;br /&gt;               for(j=1;j&amp;lt;=31;j++)&lt;br /&gt;               printf(&amp;quot;%d&amp;#092;t&amp;quot;,j);&lt;br /&gt;               }&lt;br /&gt;               break;&lt;br /&gt;    case &amp;#39;T&amp;#39;:&lt;br /&gt;    case &amp;#39;t&amp;#39;:&lt;br /&gt;              for(i=1;i&amp;lt;=12;i++)&lt;br /&gt;    &lt;br /&gt;               {&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMONTH %d&amp;quot;,i);&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMo &amp;#092;tTu &amp;#092;tWe &amp;#092;tTh &amp;#092;tFr &amp;#092;tSa &amp;#092;tSun&amp;#092;n&amp;quot;);&lt;br /&gt;               for(j=1;j&amp;lt;=31;j++)&lt;br /&gt;               printf(&amp;quot;&amp;#092;t%d&amp;quot;,j);&lt;br /&gt;               }&lt;br /&gt;               break;&lt;br /&gt;    case &amp;#39;W&amp;#39;:&lt;br /&gt;    case &amp;#39;w&amp;#39;:&lt;br /&gt;&lt;br /&gt;   for(i=1;i&amp;lt;=12;i++)&lt;br /&gt;    &lt;br /&gt;               {&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMONTH %d&amp;quot;,i);&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMo &amp;#092;tTu &amp;#092;tWe &amp;#092;tTh &amp;#092;tFr &amp;#092;tSa &amp;#092;tSun&amp;#092;n&amp;quot;);&lt;br /&gt;               for(j=1;j&amp;lt;=31;j++)&lt;br /&gt;               printf(&amp;quot;&amp;#092;t%d&amp;quot;,j);&lt;br /&gt;               }&lt;br /&gt;               break;&lt;br /&gt;    case &amp;#39;H&amp;#39;:&lt;br /&gt;    case &amp;#39;h&amp;#39;:&lt;br /&gt;&lt;br /&gt;  for(i=1;i&amp;lt;=12;i++)&lt;br /&gt;    &lt;br /&gt;               {&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMONTH %d&amp;quot;,i);&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMo &amp;#092;tTu &amp;#092;tWe &amp;#092;tTh &amp;#092;tFr &amp;#092;tSa &amp;#092;tSun&amp;#092;n&amp;quot;);&lt;br /&gt;               for(j=1;j&amp;lt;=31;j++)&lt;br /&gt;               printf(&amp;quot;&amp;#092;t%d&amp;quot;,j);&lt;br /&gt;               }&lt;br /&gt;               break;&lt;br /&gt;    case &amp;#39;F&amp;#39;:&lt;br /&gt;    case &amp;#39;f&amp;#39;:&lt;br /&gt;&lt;br /&gt;  for(i=1;i&amp;lt;=12;i++)&lt;br /&gt;    &lt;br /&gt;               {&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMONTH %d&amp;quot;,i);&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMo &amp;#092;tTu &amp;#092;tWe &amp;#092;tTh &amp;#092;tFr &amp;#092;tSa &amp;#092;tSun&amp;#092;n&amp;quot;);&lt;br /&gt;               for(j=1;j&amp;lt;=31;j++)&lt;br /&gt;               printf(&amp;quot;&amp;#092;t%d&amp;quot;,j);&lt;br /&gt;               }&lt;br /&gt;               break;&lt;br /&gt;    case &amp;#39;S&amp;#39;:&lt;br /&gt;    case &amp;#39;s&amp;#39;:&lt;br /&gt;&lt;br /&gt;    for(i=1;i&amp;lt;=12;i++)&lt;br /&gt;    &lt;br /&gt;               {&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMONTH %d&amp;quot;,i);&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMo &amp;#092;tTu &amp;#092;tWe &amp;#092;tTh &amp;#092;tFr &amp;#092;tSa &amp;#092;tSun&amp;#092;n&amp;quot;);&lt;br /&gt;               for(j=1;j&amp;lt;=31;j++)&lt;br /&gt;               printf(&amp;quot;&amp;#092;t%d&amp;quot;,j);&lt;br /&gt;               }&lt;br /&gt;               break;&lt;br /&gt;    case &amp;#39;U&amp;#39;:&lt;br /&gt;    case &amp;#39;u&amp;#39;:&lt;br /&gt;&lt;br /&gt;    for(i=1;i&amp;lt;=12;i++)&lt;br /&gt;    &lt;br /&gt;               {&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMONTH %d&amp;quot;,i);&lt;br /&gt;               printf(&amp;quot;&amp;#092;nMo &amp;#092;tTu &amp;#092;tWe &amp;#092;tTh &amp;#092;tFr &amp;#092;tSa &amp;#092;tSun&amp;#092;n&amp;quot;);&lt;br /&gt;               for(j=1;j&amp;lt;=31;j++)&lt;br /&gt;               printf(&amp;quot;&amp;#092;t%d&amp;quot;,j);&lt;br /&gt;               }&lt;br /&gt;               break;&lt;br /&gt;              &lt;br /&gt;&lt;br /&gt;    default:&lt;br /&gt;            printf(&amp;quot;&amp;#092;nSorry, you have enter the wrong input.&amp;quot;);&lt;br /&gt;    &lt;br /&gt;}&lt;br /&gt;        getch();&lt;br /&gt;        return(0);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;my other prob is, i dont know how to make the date follow the column of the day.&lt;br /&gt;i got 10 days each row but the column only have 7 due to 7 days in each month &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;&lt;br /&gt;&lt;br /&gt;come2 help me &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>violette</author>
            <category>Codemasters</category>
            <pubDate>Sun, 10 May 2009 12:45:53 +0800</pubDate>
        </item>
    </channel>
</rss>
