Desktop Functions: Smart Device Functions:
|
OpenClipboard (user32)
C# Signature:
[DllImport("user32.dll", SetLastError=true)] VB.NET Signature:
<DllImport("user32.dll", ExactSpelling:=True, SetLastError:=True)> _ User-Defined Types:None. Notes:None. Tips & Tricks:I read on google about a flaw in the .Net System.Windows.Forms.Clipboard.SetDataObject where you had to run the SetDataObject function twice for it to work. On the first try it would just error out and the second with work just fine. Well I found that by using the 3 clipboard API's below first it work every time and you don't have to wait for the error. Sample Code:
OpenClipboard(IntPtr.Zero); Alternative Managed API:
System.Windows.Forms.Clipboard.SetDataObject("your message here \n if you would like", true); Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|