ID:177450
 
Every time I try to compile it says "proc definition not allowed inside another proc"!
Your problem is obvious, you have a proc definition inside another proc.
In response to Garthor
LOL, Which Proc? There's little point in asking a question like this (which really belongs in Newbie Central) and not supplying the code at fault!!!
In response to Da_Rushyo
As the question stands now, it belongs in Newbie Central. Once he shows some code, it can go here.
XzeroX wrote:
Every time I try to compile it says "proc definition not allowed inside another proc"!

In my experience, this is usually because you have a proc indented too far. The indentation lines up that proc with the body of the proc above it. For all the compiler knows, the proc underneath is part of the body of the above proc. Try finding a proc that is lined up with the body of the proc above it and then delete the extra space on the left.