J
Jaez
I have a VB6 application running on my laptop that outputs text to the
clipboard.
I would like to open a webpage hosted on my asp.net 2 powered website and
when the webpage opens a textbox already has a copy of the text from the
clipboard displayed in it
I have seen the following line suggested as a possibility
window.clipboardData.getData("Text");
but have no idea how to add this to my form load code beyond this which
doesnt work?
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs)
textbox2.text=window.clipboardData.getData("Text");
End Sub
Jaez
clipboard.
I would like to open a webpage hosted on my asp.net 2 powered website and
when the webpage opens a textbox already has a copy of the text from the
clipboard displayed in it
I have seen the following line suggested as a possibility
window.clipboardData.getData("Text");
but have no idea how to add this to my form load code beyond this which
doesnt work?
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs)
textbox2.text=window.clipboardData.getData("Text");
End Sub
Jaez