Click here to Skip to main content
15,890,717 members

Lim Bio Liong - Professional Profile



Summary

    Blog RSS
64,911
Author
1,663
Authority
588
Debator
112
Organiser
1,019
Participant
0
Editor
0
Enquirer
Lim Bio Liong is a Specialist at a leading Software House in Singapore.

Bio has been in software development for over 10 years. He specialises in C/C++ programming and Windows software development.

Bio has also done device-driver development and enjoys low-level programming. Bio has recently picked up C# programming and has been researching in this area.

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralConcerning making copies of and deletion of objects stored inside VARIANT parameters. Pin
Lim Bio Liong6-Dec-07 19:56
Lim Bio Liong6-Dec-07 19:56 
GeneralThe use of the importlib keyword in an IDL file. Pin
Lim Bio Liong17-May-07 4:12
Lim Bio Liong17-May-07 4:12 
GeneralRe: The use of the importlib keyword in an IDL file. Pin
Lim Bio Liong30-Jun-07 21:46
Lim Bio Liong30-Jun-07 21:46 
GeneralPossible For VB to use MTA objects Pin
Lim Bio Liong14-Aug-06 23:44
Lim Bio Liong14-Aug-06 23:44 
GeneralWhen do we use extern "C"? Is this a compiler-specific feature? Pin
Lim Bio Liong19-Mar-06 5:39
Lim Bio Liong19-Mar-06 5:39 
GeneralRe: When do we use extern "C"? Is this a compiler-specific feature? Pin
Yaki_1513-Sep-06 3:58
Yaki_1513-Sep-06 3:58 
GeneralConcerning Proxy/Stub DLLs [modified] Pin
Lim Bio Liong18-Mar-06 5:36
Lim Bio Liong18-Mar-06 5:36 
GeneralRe: Concerning Proxy/Stub DLLs [modified] Pin
Lim Bio Liong2-May-07 23:17
Lim Bio Liong2-May-07 23:17 
2007 May 3rd
-------------
More notes :

1. Note that it is the Proxy/Stub DLL which generates the appropriate information for a non-OLE-automation-compatible (i.e. custom) interface. This includes the GUID and name of the interface, the number of methods it exposes, etc.

2. When the Proxy/Stub DLL is registered, it officially writes these Interface information in the registry (inside the custom interface's entry under the HKEY_CLASSES_ROOT\Interface registry key). The DLL also registers the GUID of the Proxy/Stub DLL (i.e. itself) associated with each custom interface.

3. In order to enable the Proxy/Stub DLL to contain such information, the Interface as defined in the original IDL must be declared outside the "library" block.

4. The best practice is to define the interface outside the library block and then reference that interface from inside the library block, as shown in this example:

//file: AllKnown.idl

[
object, uuid(. . .), <other interface="" attributes="">
]
interface IKnown : IUnknown
{
import "unknwn.idl";
<declarations,>
};

[
<library attributes="">]
library KnownLibrary
{

//reference interface IKnown:
interface IKnown;

//or create a new class:
[
<coclass attributes="">
]
coclass KnowMore
{
interface IKnown;
};
};

[example above taken from MSDN]

5. Note that the original Type Library whose compile-time IDL-file being the one in which the custom interface was originally defined, would not be able to generate the information mentioned in point 1 above for the custom interface. This is because it has no knowledge of the GUID of the Proxy/Stub which will be associated with the custom interface.

6. Note also that for custom interfaces, the type library is not needed. In fact, type libraries are not relevant for them to be used by a client.

modified on Friday, June 20, 2008 6:01 AM

GeneralRe: Concerning Proxy/Stub DLLs Pin
Lim Bio Liong20-Jun-08 1:08
Lim Bio Liong20-Jun-08 1:08 
Generaluse of mem_fun1 and mem_fun_ref in for_each() Pin
Lim Bio Liong13-Mar-06 0:24
Lim Bio Liong13-Mar-06 0:24 
GeneralRe: use of mem_fun1 and mem_fun_ref in for_each() Pin
Lim Bio Liong13-Mar-06 0:28
Lim Bio Liong13-Mar-06 0:28 
GeneralEclipse CDT Pin
Lim Bio Liong4-Mar-06 6:34
Lim Bio Liong4-Mar-06 6:34 
GeneralRelease Minimum Dependency Project Settings Pin
Lim Bio Liong4-Mar-06 5:54
Lim Bio Liong4-Mar-06 5:54 
GeneralRe: Release Minimum Dependency Project Settings Pin
Lim Bio Liong4-Mar-06 5:56
Lim Bio Liong4-Mar-06 5:56 
GeneralTemplate Explicit Specialization & Policy-Based Design Pin
Lim Bio Liong21-Feb-06 4:31
Lim Bio Liong21-Feb-06 4:31 
GeneralRe: Template Explicit Specialization & Policy-Based Design Pin
Lim Bio Liong21-Feb-06 4:32
Lim Bio Liong21-Feb-06 4:32 
GeneralRe: Template Explicit Specialization & Policy-Based Design Pin
Lim Bio Liong21-Feb-06 4:33
Lim Bio Liong21-Feb-06 4:33 
GeneralRe: Template Explicit Specialization & Policy-Based Design Pin
Lim Bio Liong21-Feb-06 4:34
Lim Bio Liong21-Feb-06 4:34 
GeneralRe: Template Explicit Specialization & Policy-Based Design Pin
Lim Bio Liong21-Feb-06 4:36
Lim Bio Liong21-Feb-06 4:36 
GeneralRe: Template Explicit Specialization & Policy-Based Design Pin
Jubith26-Mar-08 3:56
Jubith26-Mar-08 3:56 
GeneralAdvanced C++ : Placement New Pin
Lim Bio Liong19-Feb-06 19:44
Lim Bio Liong19-Feb-06 19:44 
GeneralRe: Advanced C++ : Placement New Pin
Lim Bio Liong19-Feb-06 19:51
Lim Bio Liong19-Feb-06 19:51 
GeneralDCOM Settings on Server side (WinXP SP2) Pin
Lim Bio Liong15-Feb-06 1:34
Lim Bio Liong15-Feb-06 1:34 
GeneralINI File Comments Pin
Lim Bio Liong1-Feb-06 23:38
Lim Bio Liong1-Feb-06 23:38 
GeneralCLASS_E_NOTLICENSED when trying to instantiate VB Controls Pin
Lim Bio Liong30-Dec-05 1:31
Lim Bio Liong30-Dec-05 1:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.