.Net
● Greatis ● Security ● AppDatabase ● Utilities ● Delphi/CB ● Android ● just4fun
.Net Software
.Net Components for Visual Studio
Nostalgia .Net
Homepage
Documentation
Download
Order
Other software for developers
Form Designer .Net
Print Suite .Net
Gradient Controls .Net
iGrid Plotter
Life .Net

Delphi / C++ Builder

Follow us
LinkedIn Twitter Facebook
Share this page
Special offer!

Nostalgia .Net • Clipboard Monitor

Clipboard content changing watcher


Very simple in use component with the only ClipboardChanged event. Just activate ClipboardMonitor component from your code:

    clipboardMonitor.Active = true;
and create handler for ClipboardChanged event:
    private void clipboardMonitor_ClipboardChanged(object sender, EventArgs e)
    {
      IDataObject data = new DataObject();
      data = Clipboard.GetDataObject();
      if (data.GetDataPresent(DataFormats.Text))
        textBoxText.Text = (string)data.GetData(DataFormats.Text);
      if (data.GetDataPresent(DataFormats.Rtf))
        richTextBox.Rtf = (string)data.GetData(DataFormats.Rtf);
      if (data.GetDataPresent(DataFormats.Html))
        textBoxHTML.Text = (string)data.GetData(DataFormats.Html);
      if (data.GetDataPresent(DataFormats.Bitmap))
        pictureBox.Image = (Image)data.GetData(DataFormats.Bitmap);
    }
Demo project shows how the text, RTF, HTML and bitmap clipboard content can be tracked:


Clipboard Monitor Demo


Download free trial version
Order Nostalgia .Net right now!


Greatis Software
eXTReMe Tracker