Hai ,
I want to check if the copied value is integer or not .That is basically my requirement
>Is your question, How do I get the information on the clipboard?
>
>If so, try
>
>DataObject data = (DataObject) Clipboard.GetDataObject();
>if(data.GetDataPresent(DataFormats.Text))
>{
> string s = (string)data.GetData(DataFormats.Text);
> //s holds the string on the clipboard
>}
>