VBS implements the Save Clipboard text and edits or saves _vbs

Source: Internet
Author: User

Saves the text in the Clipboard. vbs

The principle is to first determine whether there is a file with the same name, the existence of the name after +1, and then save the contents of the Clipboard to the custom extension file

Copy Code code as follows:

Set Fso=createobject ("Scripting.FileSystemObject"): name=1
Dim NA
Na=inputbox ("Please enter the extension name:", "Development name", "TXT")
While Fso.fileexists (name& ".") &na) =true
Name=name+1
Wend
Set O=fso.opentextfile (name& ".") &na,2,true)
Set Hf=createobject ("Htmlfile")
Wind=hf.parentwindow.clipboarddata.getdata ("text")
O.writeline Wind:o.close

Saves the text on the Clipboard and edits. vbs

Copy Code code as follows:

Set Fso=createobject ("Scripting.FileSystemObject"): name=1
Dim NA
Na=inputbox ("Please enter the extension name:", "Development name", "TXT")
While Fso.fileexists (name& ".") &na) =true
Name=name+1
Wend
Set O=fso.opentextfile (name& ".") &na,2,true)
Set Hf=createobject ("Htmlfile")
Wind=hf.parentwindow.clipboarddata.getdata ("text")
O.writeline Wind:o.close
CreateObject ("Wscript.Shell"). Exec "notepad.exe" &name& "." &na& ""

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.