status bar: same proc name (2 progs) hint is for just 1.
Posted: Thu Dec 20, 2007 12:10 am
Apologies if this has been mentioned before.
If you have two progs in the IDE and they have procedures with the same name:
Then the hint in the status bar shows the syntax for just one (it appears to be the first procedure referred to when editing) regardless of which program you are in.
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.
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.