2
votes
1answer
40 views

How do I put an image on the Clipboard?

I'm using WinForms alongside a WinForms version of ChartFX, and trying to convert the chart to a Metafile and place it in the clipboard. I'm ceratain the Metafile is being created correctly in the ...
0
votes
2answers
58 views

Unable to access clipboard in FileSystemWatcher's renamed event

I have an object of FileSystemWatcher called 'watcher' instantiated in my main function. I tried to store the text on clipboard in a string variable during the 'watcher.renamed' event but it always ...
1
vote
5answers
97 views

How do I run a function continuosly in a c# program

I am using my desktop application written for Windows 8 in C# to provide the readings of different device sensors on clipboard. Now, there is an external application (I dont have any control over its ...
3
votes
1answer
96 views

How to copy both - html and text to the clipboard?

I'm trying to put in the clipoard piece of html and plain text at the same time, so that html-capable editors could paste html, and other editors could use plain text. ...
1
vote
0answers
64 views

How to copy EMF images from .NET Windows.Forms into Visio?

I am working on a diagram editor written in .NET 2.0 using Windows.Forms. Diagrams must be copied into Microsoft Word and Visio as vector graphics. The editor has a Save as EMF function that works: ...
0
votes
0answers
32 views

Error when setting tooltip text of selected listbox item to clipboard [duplicate]

I am trying to set tooltip text of selected listbox item on clipboard using this code: [STAThread] private void listBox1_SelectionChanged(object sender, SelectionChangedEventArgs e) { ...
1
vote
0answers
89 views

Clipboard.SetText with large amount of text fails with no error .NET

I'm trying to use Clipboard.SetText() to allow the user of my application to copy certain items into the clipboard. It is very possible that the user could attempt to copy a very large amount of text ...
5
votes
1answer
142 views

Unable to paste any text or file in my pc - Clipboard error

I am using a code to capture text of an application. When I start the application I cant to copy and paste any text or file in my pc.I know Why I am getting this error its because the clipboard is ...
2
votes
1answer
94 views

How can I convert a CF_DIBV5 from Clipboard (Format17) to a Transparent Bitmap?

GDI+ has not support to CF_DIBV5 format BUT when several applications put transparent images to clipboard they use CF_DIBV5 (Format 17) format to maintain Alpha Channel. .NET Framework can't handle ...
0
votes
3answers
253 views

How to copy the contents of a Multiline textbox to the clipboard in C#?

I have some text coming from database in a Multiline textbox, how can I copy that to the clipboard so that the user can paste it into another window or file (e.g. from my application to another ...
0
votes
1answer
87 views

Extra line returns in text boxes clipboard

I have created a "Word Merge" routine that i use personally. When I add items into my 3 text boxes, and then merge, everything looks fine. but when i copy to a clipboard, there are extra carriage ...
2
votes
2answers
161 views

Clipboard transfer between apps

Mysterious clipboard issue: I have an application under development that launches an external application (as a System.Diagnostics.Process object) which is expected to copy some data (text) to the ...
0
votes
2answers
249 views

How can I copy a string to clipboard within my console app WITHOUT adding a reference to System.Windows.Forms?

I have a .NET 4.0 console app that generates SQL and stores it in a string variable. I want this string to be copied directly to the clipboard. So far, all my research indicates that the ONLY way ...
-2
votes
1answer
52 views

copy code from one file to other file in c#

Using Below Code, We Can Copy Code from One textbox to other textbox. private void Copybtn_Click(object sender, EventArgs e) { Clipboard.SetText(txtSour.Text); } ...
2
votes
2answers
186 views

Clipboard + PresentationFramework = OutOfMemoryException?

Why does System.Windows.Clipboard(PresentationCore.dll) is not friendly with the System.Windows.Thickness (PresentationFramework.dll) but friendly with System.Windows.Point (WindowsBase.dll) using ...
2
votes
2answers
442 views

How to set html text in clipboard?

I want to set rich html text to clipboard so when the users paste to Word it will include the source html formatting. Using Clipboard.SetText method doesn't work. Also I would like that if users ...
0
votes
1answer
726 views

How to copy RTF text to clipboard for use in excel

Is it possible to copy a rtf string to the clipboard for excel. The formatting should be preserved as much as possible (e.g. text-color). The following .Net code is used to fill the clipboard var ...
0
votes
0answers
226 views

unable to paste image in rich textbox in VB.NET

I want to copy an image file and paste it into a Rich Textbox This is my code block, but its not displaying the image in RTB:- Dim img As Image = Image.FromFile("c:\FakePhoto1.jpg") ...
0
votes
0answers
119 views

5 seconds delay of Clipboard.SetText call

I have simple call from legacy system, my very simple .NET win application calls Clipboard.SetText("small data portion") This call last 5 seconds. Next SetText calls works fine. Most important ...
0
votes
1answer
168 views

Save OLE object from Clipboard

I have unmanaged OLE object in clipboard. I put it in clipboard via next code: [DllImport("mfc80u.dll", CallingConvention = CallingConvention.ThisCall, EntryPoint = "#1532")] public static extern ...
8
votes
1answer
753 views

WPF Datagrid COMException on using IncludeHeader ClipboardCopyMode

In my WPF app, I am using a Datagrid control; in the control definition I defined ClipboardCopyMode property as 'IncludeHeader'. <DataGrid Name="datagrid" ClipboardCopyMode="IncludeHeader"> ...
0
votes
1answer
141 views

datagridview copy to clipboard exceptions

I am trying to copy a fairly large amount of data (~ 50,000 rows, 200 columns of doubles) from a datagridview to the clipboard. To do this I'm selecting all cells and pressing Ctrl+C, at which point ...
0
votes
1answer
113 views

Paste multiple formatted cells into excel 12

I use a custom data grid to store some formatted text in the cells, which in turn uses winforms builtin rtf editor to show and store data in the cells. I want to exchange data with excel using the ...
1
vote
0answers
172 views

“Saving” directly to Clipboard - Possible?

I'm working with an API that produces images in BMP or JPG format. The API method in question requires a path and filename. However, in some cases, I would like to simply put the image into the ...
1
vote
0answers
329 views

How to store HTML with images in clipboard without leaking temporary files?

Is there any way to store HTML fragments in the Windows clipboard containing <img...> elements that reference temporary image files and to make sure that no temporary image files are left in the ...
21
votes
1answer
1k views

Clipboard behaves differently in .NET 3.5 and 4, but why?

We recently upgraded a very large project from .NET framework 3.5 to 4, and initially everything seemed to work the same. But now bugs have started to appear on copy paste operations. I have managed ...
0
votes
1answer
607 views

My VB.NET solution does not contain a Main function

MSDN: Every Visual Basic application must contain a procedure called Main. I... Didn't find such a method in my solution... It starts from Private Sub MyApplication_Startup( _ ByVal ...
2
votes
2answers
863 views

Clipboard.ContainsData and Clipboard.GetData

I try to paste some copied objects using Clipboard class. <Serializable()> Public Class DogsZoo Public Property Dogs As List(Of Dog) Public Property Workers As List(Of Worker) ...
1
vote
1answer
160 views

Reading locale info from Clipboard

using .NET Clipboard API you can write following code: //dataObject - instance of IDataObject, received from Clipboard if (dataObject != null) { if (dataObject.GetDataPresent(DataFormats.Locale)) ...
2
votes
1answer
259 views

Copy formatted text to the clipbord, except for the font

I'm trying to programatically generate and copy formatted text to the clipboard for the purposes of pasting it into an e-mail. The only formatting I want to copy is line breaks and bold text. I want ...
1
vote
2answers
624 views

How can I copy text to the clipboard from a Mono/C# console application on OS X?

I'm writing a console app in C#, using Mono on OS X. On Windows, here is how I copy text to the clipboard: Clipboard.SetText("text"); ...from a method marked up with the STAThread attribute: ...
2
votes
1answer
588 views

C# - System.Windows.Forms.Clipboard.GetDataObject() doesnt response

Does anybody know why System.Windows.Forms.Clipboard.GetDataObject() doesnt return when calling it from a different thread and before the main thread stops, after calling ...
0
votes
0answers
67 views

How do I tell windows explorer that what I put on the clipboard is for moving, not copying? [duplicate]

Possible Duplicate: Cut files to clipboard in C# I put a filedroplist on the clipboard. But how do I tell windows explorer to move those files instead of just copying them? Thanks.
0
votes
0answers
213 views

how to store HTML Content to clipboard in Vb.net 2.0

how to store HTML Content to clipboard for web email clients like gmail, yahoo and msn. I want to send the HTML to these email clients using clipboard. Updated: The HTML is for new email compose area ...
0
votes
0answers
300 views

Working with Clipboard via .Net (WinForms) within VS/TFS2010 WorkItem controls works on some machines, on some it does not?

I am putting an instance of a serializable class into the windows clipboard via Clipboard.Clear(); Clipboard.SetData("MyCustomDataFormatName", serializableInstance); and calling ...
4
votes
5answers
536 views

Waiting for clipboard text change (error)

I'm trying to detect every time the clipboard data changes. And so, I set a timer and have it continuously check Clipboard.GetText() for changes. I'm using the following code: public void ...
0
votes
1answer
487 views

Limit on text data size in clipboard?

** ADDENDUM: After some serious hours of research i found that i was barking up the wrong tree. The problem was not the clipboard itself but what happens if you feed it malformed unicode text which i ...
2
votes
2answers
407 views

.NET: Saving Clipboard Image to PNG fails

I have a weird issue with saving of clipboard image to png. When taking a screenshot with prtscr or snipping tool it works fine with Clipboard.GetImage() and PngBitmapEncoder. But when copying the ...
1
vote
2answers
755 views

How to determine encoding of Clipboard contents

I have a 3rd party application from which I need to copy texts and paste it into visual studio. However, when I copy the text like vysvedčenie and paste into Visual Studio text editor, I get ...
1
vote
2answers
1k views

Drawing on a Image in C#

I'm trying to copy an image from the clipboard onto an existing image. Basically the existing image is 150 X 150 white coloured .jpg image. (Acting as the canvas) I would like to know how to draw my ...
0
votes
1answer
256 views

how can I access and try parse clipboard data from other applications, like MS Word or Visual Studio?

I understand that developers of 3rd party apps don't necessarily want me to access their clipboard data beyond, in the best case, a text summary like what I get when pasting from Word to Notepad. ...
0
votes
1answer
551 views

Will windows.forms.sendkeys() send formatted text to ms doc/ms outlook?

I would like to know whether it's possible to display formatted (like bold, font size) text using sendkeys.sendwait() method. Note: The indented text string is already formatted. I need to way to ...
0
votes
2answers
4k views

Copying text along with its formatting from a RichTextBox

How to copy the text in a RichTextBox along with its formatting to a wordpad or webbrowser?
0
votes
1answer
140 views

Clipboard access from NUnit-test

Is there a problem accessing the Windows Clipboard from an NUnit test? I have a VB.NET application which calls System.Windows.Forms.Clipboard.GetText—it works fine in my normal exe, however there is ...
3
votes
3answers
403 views

How to separate screenshot from copy on clipboard in C#

I'm having a bit of a problem here. I want to save screenshots to my desktop using the application I build. To do that I need to recognize which images on the clipboard are from a screenshot and which ...
1
vote
2answers
591 views

c# how do i print an image that is in the clipboard?

i am copying an image to the clipboard like this: using (MemoryStream ms = new MemoryStream()) { chart1.SaveImage(ms, ChartImageFormat.Bmp); Bitmap bm = new Bitmap(ms); ...
0
votes
1answer
941 views

C# copy gridview contents to clipboard

I have several gridviews. In each of them, I copy the contents to the clipboard using code like this: GV_Master.SelectAll(); DataObject dataObj = GV_Master.GetClipboardContent(); ...
0
votes
1answer
685 views

Excel 2003 Windows Forms Clipboard DataObject

I'm trying to get access to Excel 2003 Chart copied into the clipboard. The chart image pastes fine into mspaint or wordpad. The problem is that I don't see the chart's data on my ...
2
votes
1answer
3k views

WebBrowser Copy Image to Clipboard

I'm using a WebBrowser control and want to copy a particular image on the web page to the clipboard. I am aware that I can use the WebBrowser.Document.ExecCommand method to copy the currently selected ...
1
vote
1answer
499 views

Datagridview to Clipboard with formatting

For a VB.Net application needing to output the data to clipboard, with formatting, I am in need of some help. For now, I am exporting data from the clipboard using MainView.ClipboardCopyMode = ...

1 2