Did some messing around with SQL. Since you stated your users paste the link I converted this:
stuff before http://forum.snitz.com/forum/topic.asp?TOPIC_ID=60076 stuff after
to this:
stuff before
click here stuff after
Using a update query, based on "http://" appearing in the reply.
The query gets formatted in the posting so it doesn't appear exactly as shown.
UPDATE FORUM_REPLY SET FORUM_REPLY.R_MESSAGE = Left([r_message],InStr([r_message],"http://")-1) & '
,InStr([r_message],"http://"),InStr(InStr([r_message],"http://"),[r_message]," ")-InStr([r_message],"http://")) & '"]click here' & Mid([r_message],InStr(InStr([r_message],"http://"),[r_message]," "),Len([r_message])-InStr(InStr([r_message],"http://"),[r_message]," ")+1)
WHERE (((FORUM_REPLY.R_MESSAGE) Like "*http://*"));
Granted, this is not an elegant solution.
<