Advertisement
dcandygmailcom

Simple utility to clear the Windows' clipboard.

Feb 3rd, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.57 KB | None | 0 0
  1. REM Two files follow
  2. REM ClearClipboard.bat
  3. REM This file compiles ClearClipboard.vb to ClearClipboard.exe using the system VB.NET compiler
  4. REM ClearClipboard clears any data on the Windows' clipboard
  5. "C:\Windows\Microsoft.NET\Framework\v4.0.30319\vbc.exe" /target:winexe /out:"%~dp0\ClearClipboard.exe" "%~dp0\ClearClipboard.vb"
  6. pause
  7.  
  8.  
  9. ------------------------------------------
  10.  
  11. 'ClearClipboard.vb
  12. Imports System
  13. Imports System.Windows.Forms.Clipboard
  14. Public Module MyApplication  
  15.  
  16.  
  17.     Sub Main()
  18.         System.Windows.Forms.Clipboard.Clear()
  19.     End Sub
  20. End Module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement