Click here to Skip to main content

Eddy Vluggen - Professional Profile

Summary

3,026
Author
52,987
Authority
19,117
Debator
53
Editor
393
Enquirer
7,550
Organiser
5,273
Participant
I'm a Delphi-convert, mostly into WinForms and C#. My first article is from 2001, extending the Delphi-debugger, which is still visible on the WayBackMachine[^] and even available in Russion[^] Smile | :)
Member since Sunday, April 1, 2007 (6 years, 1 month)
  • 31 Dec 2012: CodeProject MVP 2013
  • 31 Dec 2009: CodeProject MVP 2010

 

Contributions

Articles 3 (Writer)
Tech Blogs 0
Messages 7,115 (Master)
Q&A Questions 0
Q&A Answers 112
Tips/Tricks 3
Comments 50

Links

Groups

Below is the list of groups in which the member is participating


CodeProject Beta Testers
United States United States
Member
Collaborative Group
members

No Biography provided

Reputation

For more 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, and the given member types also gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilverAdmin
Store personal files in your account areaplatinumplatinumSitebuilder, Subeditor, Supporter, Editor, Staff
Have live hyperlinks in your biographybronzebronzebronzebronzebronzebronzesilverSubeditor, Protector, Editor, Staff, Admin
Edit a Question in Q&AsilversilversilversilverYesSubeditor, Protector, Editor, Admin
Edit an Answer in Q&AsilversilversilversilverYesSubeditor, Protector, Editor, Admin
Delete a Question in Q&AYesSubeditor, Protector, Editor, Admin
Delete an Answer in Q&AYesSubeditor, Protector, Editor, Admin
Report an Articlesilversilversilversilver
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubeditor, Mentor, Protector, Editor, Staff, Admin
Edit other members' articlesSubeditor, Protector, Editor, Admin
Create an article without requiring moderationplatinumSubeditor, Mentor, Protector, Editor, Staff, Admin
Report a forum messagesilversilverbronzeProtector, Editor, Admin
Create a new tagsilversilversilversilverAdmin
Modify a tagsilversilversilversilverAdmin

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


 
You must Sign In to use this message board.
Search this forum  
GeneralBookmarks [modified] Pin
Friday, March 18, 2011 4:14 AM by Eddy Vluggen

MSDN

Best Practices

How To's

Cheat Sheets

Prebuilt code from Microsoft

Visual Studio Addons

Other



modified 12 Nov '12 - 16:07.

GeneralRelated Utilities [modified] PinmemberEddy Vluggen2 Mar '12 - 12:10 
NewsOnline tools [modified] PinmemberEddy Vluggen14 Mar '12 - 8:21 
NewsCustom Controls / Libraries PinmemberEddy Vluggen9 Apr '12 - 9:54 
NewsDebugging [modified] PinmemberEddy Vluggen26 Apr '12 - 22:02 
NewsDesign Patterns PinmemberEddy Vluggen17 Jun '12 - 0:25 
 
GeneralRefactorings Pin
Thursday, October 7, 2010 12:55 PM by Eddy Vluggen
15% of my work is coding, 30% is refactoring that mess again, 20% to add to the testing, 20% documentation, 15% is research/walking around thinking/reading/talking..
 
This "folder" is focussing mainly on questions and resources on refactoring. A technical scrapbook Smile | :)
 
To warm things up, consider the code below;
 
    if (value != null) return value;
    return defaultvalue;
this is functional equivalent with this;
     if (value != null)
     {
          return value;
     }
     else  // this statement would be superfluous, but it does add a extra visual marker to
     {      // indicate the two different paths that the thread could take, based on the value.
          return defaultvalue;
     }
     return (value == null)
        ? defaultvalue
        : value;
These are a mere three variations of the same code.
I are Troll Suspicious | :suss:

GeneralRe: Refactorings PinmemberVercas26 Dec '10 - 5:31 
 
News.NET related snippets Pin
Tuesday, October 5, 2010 9:58 AM by Eddy Vluggen
This is the place where I'm going to organize code that's not ready to be entered / suited for a trick. The toolbox that I'm using most Smile | :)
GeneralTemporaryOverride class PinmvpEddy Vluggen5 Oct '10 - 10:15 

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


Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 24 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid