E
Eric Schwartz
Nikos said:Iam suign it i just did not post it but since it seems you want it and
blame me for not psoting all the code, here, take it ALL
We do not want all. We want the smallest possible code required to
show the problem. Don't start with all of the code you have--
instead, figure out where the problem is, and then start with only
that code. You actually got that part right. Then, put it in a file
by itself, and add only the bare minimum required to get that code
running. Then start deleting code until you can't reproduce the
problem anymore-- most often, this will in itself help you find the
problem.
Only then should you cut and paste the entire example-- not your
original file, just the example. However, if you find yourself
pasting more than about 20 lines, then you probably haven't simplified
your code enough yet, so keep working on it.
Also, you need to sit down and read all of "Learning Perl", about
three times. I know it's hard, I know you don't like to work that
way-- sorry, but that's life. If you want to irritate everyone here
who knows how to help you enough so that they killfile you, and the
only people who see your posts don't know the right way to answer,
then please continue the way you have been. If you want to get the
best answers possible from the smartest people, then stop right now,
and work your way through the book, very slowly. Also, read the FAQ,
and learn how to search the documentation to find the answer you're
looking for.
And always always ALWAYS cut and paste error messages EXACTLY. Do NOT
retype them, as you will make mistakes. Do NOT retype your example
code, as you will make mistakes there, too. ALWAYS cut and paste!
ALWAYS!
-=Eric (seriously, always)