Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

someone point me to some clipboard basics ?

Status
Not open for further replies.

lpphiggp

Technical User
Dec 6, 2001
19
US
All i want to do is make a simple script, that when double clicked , clears the clipboard, then puts a fixed text string (my login id) into it, something like setclipboardata()".lpphiggp.myverylong.andsilly.context.ou"
(I have no idea if that's even close)
Then I can just manually paste it in when accessing the NetWare portal rather than have to type it. (Im not worried about my password)
This seems to me to be something very simple to do, but I can't find this info to save my life. I don't have time to take a whole course on VB or WSH, unfortunately.
Can anyone provide a quick sample or link ?
Thanks
 
The basics are,

Clipboard.Clear
Clipboard.SetText "Your String"
Text1 = Clipboard.GetText

Look in VB help, msdn and search tek-tips for lots of good information.

Thanks and Good Luck!

zemp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top