<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by doobi</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sat, 27 Jun 2026 05:59:06 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Lawyer Charges</title>
            <link>http://forum.lowyat.net/topic/3171068</link>
            <description>Hello guys, I need some advises.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m buying a second hand which selling at RM340K.&lt;br /&gt;I getting 90% loan + 5000 for MRTA. So total loan amount will be RM311K. &lt;br /&gt;&lt;br /&gt;My lawyer quotes me RM12000 (with 50% stamp duty exemption) for the S&amp;amp;P and loan agreement.&lt;br /&gt;&lt;br /&gt;And also,tThere is an item in S&amp;amp;P &amp;quot;registeration on transfer&amp;quot; which cost me about RM1500. Why it is so exp?&lt;br /&gt;&lt;br /&gt;Overall are the charges reasonable?&lt;br /&gt;</description>
            <author>doobi</author>
            <category>Property Talk</category>
            <pubDate>Mon, 24 Mar 2014 15:52:16 +0800</pubDate>
        </item>
        <item>
            <title>[WTA] C++/MFC - &amp;quot;.RC&amp;quot;</title>
            <link>http://forum.lowyat.net/topic/1643729</link>
            <description>hello dudes,&lt;br /&gt;&lt;br /&gt;I am trying to write a program to extract some strings from resource file.&lt;br /&gt;&lt;br /&gt;Is there anyway to retrieve the strings?&lt;br /&gt;&lt;br /&gt;For initialization file (INI) file, we can use GetPrivateProfileString(), what about for resource file?&lt;br /&gt;&lt;br /&gt;Thanks in advance.&lt;br /&gt;&lt;br /&gt;</description>
            <author>doobi</author>
            <category>Codemasters</category>
            <pubDate>Thu, 18 Nov 2010 17:09:25 +0800</pubDate>
        </item>
        <item>
            <title>[WTA] C++/MFC</title>
            <link>http://forum.lowyat.net/topic/1582064</link>
            <description>I copied the following code from Internet&lt;br /&gt;Could somebody tell me why we still need to include the following codes again?&lt;br /&gt; &lt;br /&gt; CFrameWnd::OnLButtonDown(nFlags, point);&lt;br /&gt; CFrameWnd::OnLButtonDown(nFlags, point);&lt;br /&gt;&lt;br /&gt;i tried to remove them and the program could run properly. &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;#include &amp;#60;afxwin.h&amp;#62;&lt;br /&gt;&lt;br /&gt;class MFC_Tutorial_Window &amp;#58;public CFrameWnd&lt;br /&gt;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; CPoint m_StartPoint, m_EndPoint;&lt;br /&gt; &amp;nbsp; &amp;nbsp; public&amp;#58;&lt;br /&gt; &amp;nbsp; &amp;nbsp; MFC_Tutorial_Window&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Create&amp;#40;NULL,&amp;#34;MFC Tutorial Part 2 CoderSource Window&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; }&lt;br /&gt; &amp;nbsp; &amp;nbsp; void OnLButtonDown&amp;#40;UINT nFlags, CPoint point&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; void OnLButtonUp&amp;#40;UINT nFlags, CPoint point&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; DECLARE_MESSAGE_MAP&amp;#40;&amp;#41;&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;BEGIN_MESSAGE_MAP&amp;#40; MFC_Tutorial_Window, CFrameWnd&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; ON_WM_LBUTTONDOWN&amp;#40;&amp;#41; &lt;br /&gt; &amp;nbsp; &amp;nbsp; ON_WM_LBUTTONUP&amp;#40;&amp;#41; &lt;br /&gt;END_MESSAGE_MAP&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;void MFC_Tutorial_Window&amp;#58;&amp;#58;OnLButtonDown&amp;#40;UINT nFlags, CPoint point&amp;#41; &lt;br /&gt;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; CFrameWnd&amp;#58;&amp;#58;OnLButtonDown&amp;#40;nFlags, point&amp;#41;; &amp;nbsp; &amp;nbsp; &amp;nbsp;// &amp;#60;-----------------HERE&lt;br /&gt; &amp;nbsp; &amp;nbsp; m_StartPoint = point;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void MFC_Tutorial_Window&amp;#58;&amp;#58;OnLButtonUp&amp;#40;UINT nFlags, CPoint point&amp;#41; &lt;br /&gt;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; CFrameWnd&amp;#58;&amp;#58;OnLButtonDown&amp;#40;nFlags, point&amp;#41;; &amp;nbsp; &amp;nbsp; &amp;nbsp;//&amp;#60;-----------------HERE&lt;br /&gt; &amp;nbsp; &amp;nbsp; m_EndPoint = point;&lt;br /&gt; &amp;nbsp; &amp;nbsp; CClientDC dc&amp;#40;this&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; dc.MoveTo&amp;#40;m_StartPoint&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; dc.LineTo&amp;#40;m_EndPoint&amp;#41;;&lt;br /&gt; &amp;nbsp; &lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;class MyApp &amp;#58;public CWinApp&lt;br /&gt;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; MFC_Tutorial_Window *wnd;&lt;br /&gt; &amp;nbsp; &amp;nbsp; public&amp;#58;&lt;br /&gt; &amp;nbsp; &amp;nbsp; BOOL InitInstance&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; wnd = new MFC_Tutorial_Window&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; m_pMainWnd = wnd;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; m_pMainWnd-&amp;#62;ShowWindow&amp;#40;1&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return 1;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;MyApp theApp;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>doobi</author>
            <category>Codemasters</category>
            <pubDate>Thu, 30 Sep 2010 16:57:46 +0800</pubDate>
        </item>
        <item>
            <title>C++ Question</title>
            <link>http://forum.lowyat.net/topic/1555701</link>
            <description>Guys, I&amp;#39;m C++ newbie. Can someone tell me my question below... &lt;br /&gt;&lt;br /&gt;#include &amp;lt;iostream&amp;gt;&lt;br /&gt;using namespace std;&lt;br /&gt;&lt;br /&gt;class CRectangle {&lt;br /&gt;	int *width, *height;&lt;br /&gt;	public:&lt;br /&gt;	CRectangle (int,int);&lt;br /&gt;&lt;br /&gt;	int area () {&lt;br /&gt;		return (*width * *height);&lt;br /&gt;	}&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;CRectangle::CRectangle (int a, int b) {&lt;br /&gt;	width = new int;        //is it a must to set it to dynamic memory???why&lt;br /&gt;	height = new int;       //is it a must to set it to dynamic memory???why&lt;br /&gt;	*width = a;&lt;br /&gt;	*height = b;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int main () {&lt;br /&gt;	CRectangle rect (3,4);&lt;br /&gt;	cout &amp;lt;&amp;lt; &amp;quot;rect area: &amp;quot; &amp;lt;&amp;lt; rect.area() &amp;lt;&amp;lt; endl;&lt;br /&gt;&lt;br /&gt;	return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;could someone tell me why the program is not running when i removed &amp;quot;width = new int; heigh = new int;&amp;quot; inside the constructor.&lt;br /&gt;Thanks in advance.</description>
            <author>doobi</author>
            <category>Codemasters</category>
            <pubDate>Wed, 08 Sep 2010 15:02:54 +0800</pubDate>
        </item>
        <item>
            <title>i nid ur suggestion</title>
            <link>http://forum.lowyat.net/topic/636306</link>
            <description>guys~~~ i&amp;#39;m looking for a dc now...&lt;br /&gt;hehe.... any dc recommend for me ?&lt;br /&gt;my budget is 1k...&lt;br /&gt;is tat canon ixus 70 good? gime some opinion pls...&lt;br /&gt;&lt;br /&gt;[addedon]February 22, 2008, 9:20 pm[/addedon]omg no ppl answer me.... y? &lt;br /&gt;= =&lt;br /&gt;i really nid pro help.... so pls gime some advices...&lt;br /&gt;is casio&amp;#39;s camera nice ?&lt;br /&gt;</description>
            <author>doobi</author>
            <category>Photography, Digital Imaging &amp;amp; Video</category>
            <pubDate>Thu, 21 Feb 2008 23:06:30 +0800</pubDate>
        </item>
        <item>
            <title>I nid help</title>
            <link>http://forum.lowyat.net/topic/636286</link>
            <description>halo guy....&lt;br /&gt;i&amp;#39;m looking for a dc now...&lt;br /&gt;but i have no idea about dc....&lt;br /&gt;any recommended dc for a normal user?&lt;br /&gt;my budget is below 1k &lt;!--emo&amp;^_^--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/happy.gif' border='0' style='vertical-align:middle' alt='happy.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;how about canon ixus 70 ??? is tat dc good ?</description>
            <author>doobi</author>
            <category>Photography, Digital Imaging &amp;amp; Video</category>
            <pubDate>Thu, 21 Feb 2008 22:41:47 +0800</pubDate>
        </item>
    </channel>
</rss>
