If you have two progs in the IDE and they have procedures with the same name:
Code: Select all
;Prog one
Procedure getItem(num.l, grp.l)
...
Code: Select all
;Prog two
Procedure getItem(method.l, item.l, area.l)
...
So if in Prog One getItem( is typed you see getItem(num.l, grp.l).
Then in Prog Two when typing getItem( you also see getItem(num.l, grp.l).
Not a huge thing, this post is just informational.