Today, I figured this out, thus I'm replying to this post, for any future readers. The problem was with PCTeX 6.1, which was using an old (2007) version of the hyperref package. I downloaded the latest one from
http://www.tug.org/applications/hyperref/ (the TDS format), and copied pasted the files to their respective locations. After that, it was a matter of using "\&" in the url, i.e.:
Code: Select all
\href{http://www.latex-community.org/forum/viewtopic.php?f=5\&t=15253}{Your question on \LaTeX-Community}
"! Forbidden control sequence found while scanning use of \href@split."
This issue has been reported in the past and one of the authors of the hyperref package replied (for example) here:
http://newsgroups.derkeiler.com/Archive ... 00978.html
In case you get another error during compilation, about save_size exceeded....just change the value to a higher one, in the texmf.cnf file of your LaTeX distribution and save. In my case, I had to change it to:
save_size = 50000 % for saving values outside current group
to compile w/o any errors. And...voila it works now.