How do I obtain clipboard information using code?

C

Charles

I use Frontpage 2003 to publish my web site. How do I use my computers copy
and paste feature in the code of FrontPage?
 
T

Trevor L.

Charles said:
I use Frontpage 2003 to publish my web site. How do I use my
computers copy and paste feature in the code of FrontPage?

I am not sure that I understand the question.

The code in FP Code view can be cut and pasted as can code from anywhere
else.
Ctrl-C to Cut
Ctrl-V to Paste

What is the relevance of this to publishing ?
(BTW, My use of FP2003 is usually editing in Code view and publishing.)

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------
 
C

Charles

I to edit in the code page. I am aware of the cut and paste features in FP
and almost all programs. But I was talking about doing that same function by
using code in FP. Let me explain. In VB code, here is the code that you use
to cut and paste using the VB lanugage.
Clipboard.Clear ' Clear Clipboard.
Clipboard.SetText "txtboxinfo" ' Capture text into the clipboard
How do you do this same function using code to preform the function.
Charles

Trevor L. said:
Charles said:
I use Frontpage 2003 to publish my web site. How do I use my
computers copy and paste feature in the code of FrontPage?

I am not sure that I understand the question.

The code in FP Code view can be cut and pasted as can code from anywhere
else.
Ctrl-C to Cut
Ctrl-V to Paste

What is the relevance of this to publishing ?
(BTW, My use of FP2003 is usually editing in Code view and publishing.)

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
T

Trevor L.

Charles said:
I to edit in the code page. I am aware of the cut and paste features
in FP and almost all programs. But I was talking about doing that
same function by using code in FP. Let me explain. In VB code, here
is the code that you use to cut and paste using the VB lanugage.
Clipboard.Clear ' Clear Clipboard.
Clipboard.SetText "txtboxinfo" ' Capture text into the clipboard
How do you do this same function using code to preform the function.
Charles

AFAIK, there is no HTML code which will do this. But there may be JavaScript
which will do it.

Perhaps someone else can reply as to whether there is or not, or you could
try posting to
microsoft.public.scripting.jscript

This NG deals with JScript rather than Javascript, but generally they work
the same.
(In fact I forget that it is a JScript NG most of the time when I post to
it)

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------
 
T

Thomas A. Rowe

Especially IE users (but other browsers may also), accessing the clipboard via a web page is block,
since it is a security/privacy issue.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================


Charles said:
I to edit in the code page. I am aware of the cut and paste features in FP
and almost all programs. But I was talking about doing that same function by
using code in FP. Let me explain. In VB code, here is the code that you use
to cut and paste using the VB lanugage.
Clipboard.Clear ' Clear Clipboard.
Clipboard.SetText "txtboxinfo" ' Capture text into the clipboard
How do you do this same function using code to preform the function.
Charles

Trevor L. said:
Charles said:
I use Frontpage 2003 to publish my web site. How do I use my
computers copy and paste feature in the code of FrontPage?

I am not sure that I understand the question.

The code in FP Code view can be cut and pasted as can code from anywhere
else.
Ctrl-C to Cut
Ctrl-V to Paste

What is the relevance of this to publishing ?
(BTW, My use of FP2003 is usually editing in Code view and publishing.)

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top