Tagged Questions
1
vote
0answers
46 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
2answers
107 views
DataObject.GetData() returns an object of type MemoryStream anyway?
I don't know why the method GetData() requires a parameter of Type, I thought the Type is to specify that of which class/type the object should be.
I have a structure called GraphicsPathWrap, it's ...
0
votes
0answers
35 views
Why Clipboard is filled by SendMessage? [closed]
Hi I am using this code to get text from another application.
public object WindowText(IntPtr hWnd)
{
object obj2 = "";
if (hWnd.Equals(IntPtr.Zero))
{
...
1
vote
1answer
104 views
How to set clipboard hook with hidden WinForm?
I'm trying to place clipboard hook with SetClipboardViewer method on user32.dll
[DllImport("User32.dll", CharSet = CharSet.Auto)]
public static extern IntPtr SetClipboardViewer(IntPtr ...
5
votes
1answer
137 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 ...
0
votes
2answers
210 views
How to Disable Copy Paste Options in C# Winforms
I have Two Winform Applications and when I try to Copy paste Text from that ProcessCmdKey Works Correctly if i made a check its not pasted ..
But when i try to paste my text in notepad its getting ...
0
votes
1answer
657 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 ...
1
vote
2answers
391 views
SendInput Ctrl + C and then retrieve copied content through Clipboard.GetText doesn't work
I have a simple windows forms application with a TextBox and a Button. Clicking on the Button will put focus on the TextBox and simulate keystrokes Ctrl + C to copy the content into the clipboard. I ...
0
votes
0answers
219 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")
...
2
votes
1answer
415 views
Copy and Paste from excel to windows form
I have made use of the _KeyDown function in my windows form:
if ((e.KeyCode == Keys.V) && (e.Modifiers == Keys.Control))
{
// do stuff
}
and then have used to get the copied data:
...
0
votes
2answers
188 views
Clipboard Data Source in C#
I have been searching and searching and searching for some code that will allow me to do this but i have gotten nothing. Lets say i copied a file, or image file. It is on my clipboard. How do i get ...
2
votes
1answer
554 views
How to paste a transparent image from the clipboard in a C# winforms app?
Note: This question is about pasting from the clipboard, not copying to the clipboard. There are several posts about copying to the clipboard, but couldn't find one that addresses this question.
How ...
2
votes
2answers
343 views
Copy numeric codes to clipboard and paste to Excel without having them formatted as numbers
I have a .NET Windows Forms applications and I need to copy a list of 8-digit numeric codes into the clipboard to be pasted to Excel sheet.
string tabbedText = string.Join("\n", codesArray);
...
0
votes
1answer
112 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
1answer
931 views
Ctrl-C on DataGridView displays junk characters when pasting
I have experiencing a strange issue when copying cell data from DataGridView. I have a ContextMenuStrip that includes an option to copy a specific field. When they select this option from the Menu, ...
0
votes
1answer
135 views
How to have same clipboard functionality in main menu and context menu
I have a TextBox which has some default context menu and it works fine. For some "user friendly" approach I want to have same functionality of Cut/Copy/Paste in the main menu, but for that items I ...
2
votes
1answer
565 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
284 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
...
0
votes
1answer
271 views
DataObject GetDataPresent(format) returns true, and GetData(format) return null
Here's the full setup for what I'm trying to do: We have an ActiveX control on a web page (ugh), and we want to save it's view to a image, and post that to the server. As this ActiveX control does not ...
6
votes
4answers
1k views
Clipboard change notification?
I know how put content to and retrieve content from the clipboard.
However, between these two operations, it is possible for another operation to change the content of the clipboard.
Is there a way ...
1
vote
1answer
251 views
Unable to set WinForms clipboard in unit test
I'd like to populate the Forms.Clipboard with text from a NUnit test.
The first problem I encountered was that the Clipboard must be used in STA mode. I found the solution (NUnit 2.5.x+) to set the ...
5
votes
3answers
689 views
C# Backing Up And Restoring Clipboard
I have a program that uses clipboard but I want to restore the clipboard to its former state after I am done with it.
This is my code :
IDataObject temp = Clipboard.GetDataObject();
//Some stuff ...
7
votes
5answers
4k views
Requested Clipboard operation did not succeed
Exception Type: ExternalException
Message: Requested Clipboard operation did not succeed.
Method: ThrowIfFailed
Source: System.Windows.Forms
Stack Trace:
at ...
0
votes
2answers
3k 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
200 views
pasting issue to a Rich text editor in Citrix
if I copy some text from MsWord or Notepad and want to paste it into a rich text editor that is used in my program that is running on my own machine: it is working BUT if I do the same in my program ...
1
vote
2answers
575 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
3answers
1k views
How to Clear the Clipboard Contents using c#
I have an application where i am using Clipboard for copy, paste operations. For copying i have used this code
Clipboard.Clear();
const byte VK_CONTROL = 0x11;
keybd_event(VK_CONTROL, 0, 0, 0);
...
1
vote
1answer
536 views
Causing another application to copy data to clipboard
I'm trying to programmatically make an external WinForms application copy its data to the clipboard, and it's driving me crazy.
Since pressing Ctrl-C in the application does the right thing, I've ...
1
vote
1answer
605 views
Exporting an Image from a WinForms application to PowerPoint with transparency
I've been having trouble pasting an image from my application into PowerPoint, while preserving transparency. I have an image stored as a System.Drawing.Graphics type which I then convert to a ...
1
vote
1answer
246 views
Why does this object always come back from the clipboard as null
I am working with the clipboard in .net with the following code
List<object> templateList = new List<object>();
Clipboard.Clear();
Clipboard.SetDataObject(templateList);
...
0
votes
1answer
579 views
ThreadStateException when using QueueUserWorkItem in a Timer
I have a ThreadStateException in my WinForms application.
Step to reproduce:
Create simple winforms app
Add a Timer
In click event, do :
timer1.Interval = 1000;
timer1.Tick += timer1_Tick;
...
2
votes
3answers
1k views
Handle clipboard copy on UserControl
I have complex UserControl (grid, edit controls for grid, etc...) and I want handle CTRL+C keyboard shortcut, however I don't want disable a native functions by edit controls (textboxes, comboboxes, ...
4
votes
2answers
356 views
Provide “Paste Link” Functionality in C# Winforms App
I would like to add Copy-Paste Link functionality to an application. The application replaces a complex Excel workbook. I would like to be able to copy tables, text, and charts from the application ...
6
votes
3answers
1k views
Need Help Setting an Image with Transparent Background to Clipboard
I need help setting a transparent image to the clipboard. I keep getting "handle is invalid". Basically, I need a "second set of eyes" to look over the following code. (The complete working project at ...
0
votes
2answers
186 views
Is there a way to findout the source application from which tha data has been copied to clipboard-Windows Forms
I am using Clipboard object to play with data copied to clipboard. Lets say I have few application from which I can copy data to clipboard like excel,notepad,etc.
I want to know is there any function ...
0
votes
1answer
248 views
Screen Capture Feature Overrides
what i want to do is write an application in C# like "fraps" and other scren capture apps that when you press the "Print Screen" it saves the current screen as an image.
What i thought of is that
...
5
votes
2answers
2k views
How to get correctly-encoded HTML from the clipboard?
Has anyone noticed that if you retrieve HTML from the clipboard, it gets the encoding wrong and injects weird characters?
For example, executing a command like this:
string s = (string) ...
11
votes
2answers
11k views
Copy files to clipboard in C#
I have a WinForms TreeView (node, subnodes). Each node contains in it's Tag some additional info. Also, each nodes maps a file on the disk. What's the easiest way copy/cut/paste nodes/files in C#? ...


