LAST DECLARED PROCS VISIBLE TO EARLY DECLARD PROCS
- Posted by ZNorQ <znorq at holhaug.com> Mar 29, 2005
- 514 views
Lame title, I know.. Spent quite some time, and came up with that..! Doh! When we declare procedures and functions, the last procedures/functions aren't visible to the early procedures/functions. ie; procedure firstproc() lastproc() end procedure procedure lastproc() end procedure If I want to execute lastproc() within firstproc(), I have to make lastproc() visible/known to firstproc() - and I've been twisting my brains for hours! Could someone please remind me what to do..? (And yes - I know I could just move firstproc() declaration below lastproc(), but in my case it isn't that easy, since both procedures must know of each- other!) Kenneth/ZNorQ