J
Jon
I think I read somewhere once that said you should not do this:
whateverSub
If somecondition is false THEN
Exit Sub
Else
do whatever it is you will do if somecondition is true
go on with rest of sub
End Sub
I think I read where you shouldn't just Exit Sub in the middle of a If clause,
Is that true? If true, then you should substitute GoTo for Exit Sub, and jump
to a label where you Resume (the Resume being just before the End Sub)?
I hope that makes sense.....
Thanks
whateverSub
If somecondition is false THEN
Exit Sub
Else
do whatever it is you will do if somecondition is true
go on with rest of sub
End Sub
I think I read where you shouldn't just Exit Sub in the middle of a If clause,
Is that true? If true, then you should substitute GoTo for Exit Sub, and jump
to a label where you Resume (the Resume being just before the End Sub)?
I hope that makes sense.....
Thanks