Does <a href='file: work with all browsers?
My system depends upon this working with all browsers.
Working with a browser within the app eliminates the need for many dialogs like open file by rendering lists within it. A great way to program.
My system depends upon this working with all browsers.
Working with a browser within the app eliminates the need for many dialogs like open file by rendering lists within it. A great way to program.
Code:
REM Fill browser with directory listing sTemp = "<html><body> For x = 1 to ubound(s(x)) sTemp = sTemp + "<a href =" + Chr$(34) + "file:\smtp\htm\" + s(x) + chr$(34) + ">" + s(x) + "<br> </a>" Next sTemp = sTemp + </body></html>"
Comment