<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by fhunkyfhinky</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Fri, 05 Jun 2026 05:44:49 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>KTM Duke200 New vs Duke250 Used, which one better</title>
            <link>http://forum.lowyat.net/topic/4736352</link>
            <description>Sifusss. Need your help&lt;br /&gt;&lt;br /&gt;- duke 200, new 12800 OTR&lt;br /&gt;- duke 250 (2015), 2nd hand, mileage 4k 12000&lt;br /&gt;&lt;br /&gt;Which one better to get? Same price. Going to buy with cash ngam ngam got RM13k</description>
            <author>fhunkyfhinky</author>
            <category>Biker Base</category>
            <pubDate>Mon, 11 Feb 2019 15:55:22 +0800</pubDate>
        </item>
        <item>
            <title>MSA Focus International - Anyone?</title>
            <link>http://forum.lowyat.net/topic/1767863</link>
            <description>&lt;br /&gt;Hi everyone. Sorry first if I open new tred in wrong place.&lt;br /&gt;&lt;br /&gt;But, I would like to gain opinion from all of you guys. Have you heard this company : MSA Focus International?&lt;br /&gt;&lt;br /&gt;From what mr google show me, it is broadcast management system distributor. They are inviting me for interview as Software Developer. But I kinda sked of, because never work with company which is based outside Malaysia. It based at Cardiff.&lt;br /&gt;&lt;br /&gt;So can I had any opinion? Or experience for who have been work there?&lt;br /&gt;&lt;br /&gt;Many thanks&amp;#33;</description>
            <author>fhunkyfhinky</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Fri, 25 Feb 2011 09:45:19 +0800</pubDate>
        </item>
        <item>
            <title>BB 9300 - Curve 3G</title>
            <link>http://forum.lowyat.net/topic/1547018</link>
            <description>&lt;br /&gt;&lt;br /&gt;Any opinion on this model?&lt;br /&gt;&lt;br /&gt;I was thinking of upgrading my Curve 8520 to torch. But then I find Curve 3G not bad.</description>
            <author>fhunkyfhinky</author>
            <category>Others OS General Discussion</category>
            <pubDate>Wed, 01 Sep 2010 15:01:59 +0800</pubDate>
        </item>
        <item>
            <title>(WTA) HTC HD Mini - Screen Cracked</title>
            <link>http://forum.lowyat.net/topic/1543776</link>
            <description>Hi everyone&lt;br /&gt;&lt;br /&gt;I would like to ask. I got HTC HD mini, just use for 4 days, and now screen cracked after accidentally dropped. As i know, I can send back to SiS distribution, as they are distributor for HTC in Malaysia.&lt;br /&gt;&lt;br /&gt;The problem is my phone got no sticker SiS. Only sticker I have there is &amp;quot;pda gadgets&amp;quot;.&lt;br /&gt;&lt;br /&gt;Is it I cannot claim warranty?</description>
            <author>fhunkyfhinky</author>
            <category>Others OS General Discussion</category>
            <pubDate>Mon, 30 Aug 2010 00:09:13 +0800</pubDate>
        </item>
        <item>
            <title>Submitting Array to C DLL</title>
            <link>http://forum.lowyat.net/topic/1513732</link>
            <description>Hi everyone.&lt;br /&gt;&lt;br /&gt;I would like to have some opinion on solving this problem. I have one Dynamic Link Libary (DLL) file in C call my.DLL. There is one function call _Open@8 which their parameter is&lt;br /&gt;&lt;br /&gt;&lt;b&gt;long Open(long COMPortNo, PCHAR pUSBDeviceName);&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;So, I was doing some application using VB.Net, and declare this function as:&lt;br /&gt;&lt;b&gt;&lt;br /&gt;Declare Function OpenCBMReader Lib &amp;quot;my.dll&amp;quot; Alias &amp;quot;_Open@8&amp;quot; (ByVal intPortNum As Integer, ByVal  USBDeviceName() As Byte) As Long&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A reason I change second parameter as byte because I also have successfully application in C# that successfully run with this dll. I overlook in this C# solutions, and this is a declaration for same function in DLL.&lt;br /&gt;&lt;b&gt;&lt;br /&gt;[DllImport(&amp;quot; my.dll &amp;quot;, EntryPoint = &amp;quot; _Open@8 &amp;quot;, CallingConvention=CallingConvention.StdCall)] _ &lt;br /&gt;public static extern int Open(int iPortNo, byte[] USBDeviceName );&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;So, I call this function in VB.Net with two variables, intPortNum = 256, and USBDeviceName is series of byte array with size 21. Same method in C# solutions, and I catch an error with VB.Net. An error is :&lt;br /&gt;&lt;br /&gt;Attempted to read or write protected memory. This is often an indication that other memory is corrupt.&lt;br /&gt;&lt;br /&gt;This is source code in C#&lt;br /&gt;&lt;br /&gt;&lt;b&gt;string strRdrname =  &amp;quot;251606824-0821M01147X&amp;quot;;&lt;br /&gt;&lt;br /&gt;byte[] bRdrName = new byte[strRdrname.ToCharArray().Length];&lt;br /&gt;int i = 0;&lt;br /&gt;foreach (char ch in strRdrname.ToCharArray())&lt;br /&gt;      {&lt;br /&gt;            bRdrName[i] = (byte)ch;&lt;br /&gt;            i++;&lt;br /&gt;      }&lt;br /&gt;iReturn = MyKad_SDK.CBM_OpenReader(256, bRdrName);&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;And this is what I am doing in VB.Net:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dim tmpCharSet As Integer&lt;br /&gt;Dim strTmpStringToConv As String&lt;br /&gt;Dim tmpNameByte() As System.Byte&lt;br /&gt;&lt;br /&gt;Dim strReaderName As String = &amp;quot; 251606824-0821M01147X&amp;quot;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        Try&lt;br /&gt;            ReDim tmpNameByte(strReaderName.Length - 1)&lt;br /&gt;&lt;br /&gt;            For i = 0 To strReaderName.Length - 1&lt;br /&gt;                strTmpStringToConv = strReaderName.Substring(i, 1)&lt;br /&gt;                tmpCharSet = AscW(strTmpStringToConv)&lt;br /&gt;                tmpNameByte(i) = tmpCharSet&lt;br /&gt;            Next&lt;br /&gt;&lt;br /&gt;            intResult = OpenCBMReader (256, tmpNameByte)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            If intResult = 0 Then&lt;br /&gt;                Return True&lt;br /&gt;            Else&lt;br /&gt;                Return False&lt;br /&gt;            End If&lt;br /&gt;&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;&lt;br /&gt;               MsgBox(ex.Message)&lt;br /&gt;&lt;br /&gt;        End Try&lt;br /&gt;&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Any opinion please?I am already stuck here for two days.&lt;br /&gt;&lt;br /&gt;Thank you so much for any of your opinion&amp;#33;</description>
            <author>fhunkyfhinky</author>
            <category>Codemasters</category>
            <pubDate>Wed, 04 Aug 2010 12:42:42 +0800</pubDate>
        </item>
        <item>
            <title>Buying Application In Malaysia</title>
            <link>http://forum.lowyat.net/topic/1512402</link>
            <description>Do anyone have any idea. How to buy application (not free) here in Malaysia?&lt;br /&gt;&lt;br /&gt;I was wondering because I find some good application,and I have to pay. But I dont know how.</description>
            <author>fhunkyfhinky</author>
            <category>Others OS General Discussion</category>
            <pubDate>Tue, 03 Aug 2010 11:50:40 +0800</pubDate>
        </item>
        <item>
            <title>Calling DLL in C from VB.Net</title>
            <link>http://forum.lowyat.net/topic/1511091</link>
            <description>Hi. Greetings everyone.&lt;br /&gt;&lt;br /&gt;I would like to have some opinion on how to call and receive function in VB.Net from DLL that have C struct. I have one DLL called  &amp;quot;CBM.dll&amp;quot;&lt;br /&gt;&lt;br /&gt;Below is sample of code in for reference using C#, that integrate with same DLL&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;public struct RdrName&lt;br /&gt;{ &amp;#91;MarshalAs&amp;#40;UnmanagedType.ByValArray, SizeConst = 100&amp;#41;&amp;#93; _&lt;br /&gt; public char&amp;#91;&amp;#93; cRdrName;&lt;br /&gt; public Int32 iNbrRdr;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt; &amp;#91;DllImport&amp;#40;&amp;#34;CBM.dll&amp;#34;, EntryPoint = &amp;#34;Enumerate@4&amp;#34;, _ &lt;br /&gt; CallingConvention = CallingConvention.StdCall&amp;#41;&amp;#93; .&lt;br /&gt; public static extern int Enumerate&amp;#40;&amp;#91;Out, _ &lt;br /&gt; MarshalAs&amp;#40;UnmanagedType.LPArray&amp;#41;&amp;#93; RdrName&amp;#91;&amp;#93; dlgRdr&amp;#41;;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;I have to convert it to Visual Basic. May i have opinion how VB.Net will integrate with this DLL?&lt;br /&gt;&lt;br /&gt;I have try same method, and just convert accordingly to this C# reference, but I found error&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;Public Structure CBMArray&lt;br /&gt;&amp;#60;MarshalAs&amp;#40;UnmanagedType.ByValArray,SizeConst&amp;#58;=100&amp;#41;&amp;#62; &lt;br /&gt; Dim cRdrName&amp;#40;&amp;#41; AsChar&lt;br /&gt; Public iNbrRdr As Int32&lt;br /&gt;End Structure&lt;br /&gt;&lt;br /&gt;Declare Function EnumCBMReader Lib &amp;#34;CBM.dll&amp;#34; Alias _ &lt;br /&gt;&amp;#34;Enumerate@4&amp;#34; &amp;#40;&amp;#60;Out&amp;#40;&amp;#41;, MarshalAs&amp;#40;UnmanagedType.LPArray&amp;#41;&amp;#62; _ &lt;br /&gt;ByRef dlgRdr As CBMArray&amp;#40;&amp;#41;&amp;#41; As Integer&lt;br /&gt; &amp;#41;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;And the result was:&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&amp;quot;Attempted to read or write protected memory. This is often an indication that other memory is corrupt.&amp;quot;&lt;br /&gt;&lt;br /&gt;Do anyone have some opinion on this?&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Thank you.</description>
            <author>fhunkyfhinky</author>
            <category>Codemasters</category>
            <pubDate>Mon, 02 Aug 2010 11:27:44 +0800</pubDate>
        </item>
        <item>
            <title>Alliance Bank..Any Suggestions?</title>
            <link>http://forum.lowyat.net/topic/1489695</link>
            <description>Hye.&lt;br /&gt;&lt;br /&gt;I just want to start buying a new house at Puchong. Price of the house is Rm130,000.&lt;br /&gt;&lt;br /&gt;Recently, I have brought all my application to CIMB, and I only get 70% from loan, so it just 91000. My budget i set to 90% loan minimum. They don give me 90% loan because my name is too clean in CTOS system (pardon me if I wrong), and I never have any loan before. And my age is 22 years old, and this is my first time taking a bank loan. So thats why bank dont give me 90%, because they cant see my pattern in paying loan.&lt;br /&gt;&lt;br /&gt;So my agent insist to bring my application to Alliance Bank. However, if I have another bank in mind, he can also bring my application go to that bank.&lt;br /&gt;&lt;br /&gt;Is the bank (Alliance Bank) okay?any recommendations?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;TQ&lt;br /&gt;&lt;br /&gt;p/s:&lt;br /&gt;&lt;br /&gt;BTW, this morning Alliance Bank have been announced their new BLR rate, 6.3% starting yesterday.&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.alliancebank.com.my/adhoc_blr_announcement.html' target='_blank'&gt;Alliance Bank&lt;/a&gt;</description>
            <author>fhunkyfhinky</author>
            <category>Property Talk</category>
            <pubDate>Wed, 14 Jul 2010 12:52:28 +0800</pubDate>
        </item>
        <item>
            <title>Enough or Not? : Celcom Exec50 + BIS + Basic Plan</title>
            <link>http://forum.lowyat.net/topic/1426323</link>
            <description>Hi.&lt;br /&gt;&lt;br /&gt;I would like to share with reader.&lt;br /&gt;&lt;br /&gt;Is it enough for subscribing Celcom EXEC50 + BIS + Basic Plan ( 5MB only per month )&lt;br /&gt;I just used BB started this month, and my bill now exceed to RM120&amp;#33;&amp;#33;&lt;br /&gt;&lt;br /&gt;I ask celcom operators, and they say my bill excluding all necessary fee (BIS + EXEC50 + Basic Plan Fee). I read at other thread for maxis user, they said they hardly enough to exceed 5MB per month.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;your opinion please......&lt;br /&gt;&lt;br /&gt;</description>
            <author>fhunkyfhinky</author>
            <category>Others OS General Discussion</category>
            <pubDate>Mon, 17 May 2010 17:39:49 +0800</pubDate>
        </item>
    </channel>
</rss>
