access XP code Segmentation

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
 
B

Brendan Reynolds

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.
 

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