-
been ages since I looked at this one. If I have a html page, and want to call a procedure in a com/dll file, how can I link them please ?
I don't want to set up script, but link the page to a dllfrom the start, I think if I remember rightly it's something like :
<HTML Lookat="MyDllNameHere.dll">
Thanks !
-
I'll try rephrasing that a little. Rather than having :
Code:
<script Language="vbscript">
Sub Command1_OnClick
'some code
End Sub
</script>
I could have a normal vb dll with
Private sub command1_Click
'some code
And link this to the html page. Probably not possible, but wanted to check. Thanks all.;)