Tuesday, August 12, 2008

Clear Clipboard Content using VB.NET

VB.NET Code to Delete Clipboard Contents

Sub Delete_ClipBoard_Content()

Try
My.Computer.Clipboard.Clear()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

End Sub

See Also:

Get Stored Images from Clipboard using VB.NET

Get Stored Text from Clipboard using VB.NET

No comments:

Post a Comment