Changes between Version 7 and Version 8 of CodeBestPractices


Ignore:
Timestamp:
2011-12-10 13:31:14 (12 years ago)
Author:
jeroens
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodeBestPractices

    v7 v8  
    11= Best practices when coding EwE6 = 
    22This page attempts to convey some of the oddities and nasties that we have ran into over the years when building EwE6. 
     3 
     4== User Interface design guidelines == 
     5Please adhere to the [wiki:UserInterfaceGuidelines User Interface Guidelines] when building user interfaces. 
    36 
    47== Resources and localization == 
     
    1518 
    1619== Nasty experiences == 
    17  * Issue [http://sources.ecopath.org/trac/Ecopath/report/702 #702]: always override Dispose(bDisposing) to clean up controls, do not (smartly) use OnHandleDestroyed.   
     20 * Issue [http://sources.ecopath.org/trac/Ecopath/report/702 #702]: always override Dispose(bDisposing) to clean up controls, do not (smartly) use OnHandleDestroyed. Note that the Visual Studio designer automagically places a Dispose method in its *.designer.vb files which is blocked from debugging. You may want to manually move this method to your main vb file and strip off the tags that prevent the debugger from stepping through the code.