access XP code Segmentation

  • Thread starter Thread starter Khalil
  • Start date Start date
K

Khalil

hello all

I want to ask if there is a way to make a procedure or a function devided
into segments like the dot net showing plus and minus just like in the
example

Function Post()
+checking
+apply query
+update tables
End function

i need that because the function is too long so if i can do this it will be
easy to study and modify it
(the segments will be inside the function)

Thanks to all
khalil
 
Khalil said:
hello all

I want to ask if there is a way to make a procedure or a function devided
into segments like the dot net showing plus and minus just like in the
example

Function Post()
+checking
+apply query
+update tables
End function

i need that because the function is too long so if i can do this it will
be easy to study and modify it
(the segments will be inside the function)

Thanks to all
khalil


The VBA editor does not have that feature.

You can, of course, move some of the code into another procedure, and call
that procedure from the original procedure.
 
Back
Top