Search the web
Sign In
New User? Sign Up
codesnips · Code Snippets
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
[C#] Retrieving Text on Clipboard   Message List  
Reply | Forward Message #27 of 48 |

// import

import System.Windows.Forms;

// get clipboard data and if any then show in MessageBox

// Retrieves the data from the clipboard.

IDataObject iData = Clipboard.GetDataObject();

// Determines whether the data is in text format.

if(iData.GetDataPresent(DataFormats.Text))

{   

        // do anything

        MessageBox.Show((String)iData.GetData(DataFormats.Text));

}

// See the DataFormats class for other types



Fri Feb 28, 2003 5:11 pm

laghari78
Online Now Online Now
Send Email Send Email

Forward
Message #27 of 48 |
Expand Messages Author Sort by Date

// import import System.Windows.Forms; // get clipboard data and if any then show in MessageBox // Retrieves the data from the clipboard. IDataObject iData =...
Nauman Leghari
laghari78
Online Now Send Email
Feb 28, 2003
5:15 pm
Advanced

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help