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.


 
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 
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 
// Here is an example of using mem_fun1 together with bind1st()
// to call a member function of a class which has been instantiated.
// The basic objective is to be able to call the for_each() algorithm
// with the use of a member function of an object as the target function
// to be called on each item in the container.

#include <set>
#include <functional>
#include <algorithm>
#include <iostream>
#include <vector>
#include <string>

using namespace std;

class myClass
{
public :

// Note : parameter pString must not be a pointer
// nor a reference.
int DoSomethingWithString( std::string pString )
{
cout << pString.c_str() << endl;
return 0;
}

public:
void Go()
{
std::set<std::string> myStrings;

myStrings.insert("ABC");
myStrings.insert("DEF");
myStrings.insert("GHI");

std::for_each
(
myStrings.begin(),
myStrings.end(),
// Here is the challenging usage of bind1st and mem_fun1.
std::bind1st(std::mem_fun1(&myClass::DoSomethingWithString), this)
);
}
};

int _tmain(int argc, _TCHAR* argv[])
{
myClass mc;

mc.Go();

return 0;
}


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 
GeneralHow to call a COM C# component from VC++ Pin
Lim Bio Liong14-Dec-05 2:46
Lim Bio Liong14-Dec-05 2:46 
GeneralRe: How to call a COM C# component from VC++ Pin
Lim Bio Liong14-Dec-05 2:46
Lim Bio Liong14-Dec-05 2:46 

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.