I downloaded your program and am evaluating it.
I created an access db and one field has a url link in it. How can I display this url be displayed in list view and be clickable to take me to the link outside your program.
Additionally, ideally in my database I have a field with the common name for the link and a field with the acutal link.
Example:
common name | url
Yahoo | http://www.yahoo.com
google | http://www.google.com
How can I associated the url field to the common name field in the list view so users can click on the common name and take them to the url.
I even tried setting this in the _aspfunctions.asp
ProcessLargeText = strValue
and switched it back to
ProcessLargeText = HTMLEncode(strValue)
with no luck.