Coding Standards & Program Structure

D

DazedAndConfused

Is it proper to structure your code in the basic work flow of the program?

i.e.
Form_Load
 
C

Carlos J. Quintero [.NET MVP]

You can use any layout for your functions: by proximity (usage) or by scope
(private, public, etc) or by functional groups, it's up to you and the
compiler does not care about it. Notice that VS.NET allows you to group
functions in code regions:

#Region "My private functions"
Private Sub f1()
End Sub

Private Sub f2()
End Sub
#End Region

Then you can expand/collapse the regions (The +/- signs) to see/hide the
code layout.

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
You can code, design and document much faster.
Free resources for add-in developers:
http://www.mztools.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top