Tagged Questions
0
votes
0answers
7 views
How to detect which program put data into windows clipboard
Is there any way to find which program put data(Image data) in to clipboard?
sukesh chand
-1
votes
0answers
23 views
How to make Ubuntu's Copying and Pasting websites work similar to Windows? [closed]
I am using Evernote on Windows its really good for taking notes so I installed the same Evernote on Ubuntu using Wine (PlayOnLinux). In windows when I copy(ctrl + c) a web site and past(ctrl + v) it ...
0
votes
0answers
26 views
C++ how to get data size of clipboard bmp image
So far the problem is getting image's size (but also might be something in addition to that)
unsigned char* dstTmp = NULL;
FILE *file;
file =fopen("C:/1.bmp","rb");
fseek (file , 0 , SEEK_END);
...
2
votes
1answer
58 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.
...
0
votes
1answer
73 views
Copy text with colors to clipboard
As the title says, how can I copy colored/styled text to the windows clipboard in Java?
The text is located in a JEditorPane like this:
JEditorPane je = new JEditorPane("text/html","a <font ...
1
vote
0answers
81 views
How to reterive clipboard file pointer CF_HDROP
Whenever we copy any file to clipboard using cntrl+c it stores file pointer for cut,copy,paste operation .Is there any way by which we can retrieve that file pointer using c# . I tried this article ...
1
vote
2answers
98 views
How data is stored in windows clipboard
Whenever we copy any multimedia file or any file except text (Not sure about it) in clipboard , does it stores the address of file or data copy because whenever we copy any movie of like 3 GB , C disk ...
2
votes
1answer
84 views
How to tell if my application has been removed from the clipboard listener chain?
I am writing a small utility application to monitor my clipboard. This at current works quite well, but a friend has told me that it randomly will stop showing alerts upon clipboard change, and that ...
0
votes
0answers
40 views
Unix clipboard in Windows [closed]
Is it possible to have the same x-window-like clipboard in Windows? So that you can mark something and it is copied to another clipboard (means middle-mouse-click-clipboard) than Ctrl+C?
And I am not ...
0
votes
0answers
28 views
Threads and how their functions can be called, Allow only single access to a function?
I have a function in my program which sets the system clipboard to the given text
public void setClip(String arg)
{
while(true)
{
try{sysClip.setContents(new ...
0
votes
1answer
294 views
How to copy/paste special characters with Windows Clipboard and C#
I found a similar question in this post, but my problem is different, so worthy of a new post.
Basically, I have a WPF/C# application that generates a text output. The text output includes several ...
0
votes
1answer
88 views
Interacting with OS functions through C++ [closed]
I am trying to make a tool in C++ that interacts with the OS functions, but I've never did anything similar before, so I don't even have a clue on where to search for an answer.
Here's an overview ...
2
votes
1answer
169 views
Why is my clipboard listener being called twice/application opened twice?
I Wrote a short program in C# that monitors the clipboard. When a certain string enters the clipboard, a program must be opened with Process.Start (depending on the string). Everything works fine, but ...
0
votes
0answers
98 views
Relation between Windows Deployment Server, rdpwd and Clipboard
I was wondering what the fDisableClip, fDisableCam etc dwords doing in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\Wds\rdpwd
and where/who uses these dwords, especially the ...
1
vote
1answer
76 views
Unexpected/weird results using OLE clipboard and classic clipboard, or do I miss something?
I'm trying to do the following trick:
I have IDataObject* to be set into the clipboard, so I'm using OleSetClipboard() to set it into the clipboard.
I have another CLIPFORMAT I want to add to the ...
0
votes
1answer
181 views
copy clipboard of linux into windows clip-board in network
I am writing a small tool, that copies clipboard of linux into windows clip-board. Let me take an example, both linux and windows in network connection. I copy something in linux to clip-board, then ...
0
votes
1answer
66 views
Clipboard copy action - whose file is the content?
I need to track copy-paste actions in Windows and Linux (I'm assuming gnome/unity) towards my app monitoring the clipboard content and the originating file's location (path)
How can I accomplish ...
0
votes
1answer
308 views
Is there a way in python or vbscript or .bat to copy text from clipboard and write to a file in utf-8 encoding? [duplicate]
Possible Duplicate:
How do I read text from the (windows) clipboard from python?
Is there a way in python or vb or .bat to copy text from clipboard and write to a file in utf-8 encoding?
1
vote
0answers
316 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 ...
1
vote
3answers
488 views
Turbo Pascal for Windows: Copy output to clipboard?
I'm completing a program in Turbo Pascal 7 for Windows as part of a programming class school project, essentially we've been given a brief and told to go off by ourselves and implement and code the ...
1
vote
1answer
422 views
Troubles with clipboard in Python
I'm learning Python right now and I want to write some script that will helps me with work. The idea is: while True: read some string from clipboard, modify it then return it into the clipboard then ...
1
vote
0answers
176 views
How can I listen for clipboard events in node.js?
I want to be able to listen for clipboard events (the copy event more precisely) in node.js.
I've already used windows keyboard hooks in java... so I'm already a bit familiar with the topic.
And as ...
0
votes
1answer
228 views
Java Clipboard Paste Checker?
I'm using Java with latest JDK 6 up.29 nor JDK 7.
And I'm glad that I could use the Clipboard via Java by using StringSelection and Clipboard classes. But, I got a new question regarding about this ...
3
votes
1answer
182 views
Want to know Windows Clipboard Internals
I am interested in learning windows system internals and how things work. I am inclined towards learning system programming on windows. With that context, I am curious to know few things on how ...
3
votes
1answer
125 views
How to checking if windows clipboard completed the operation of copying, pasting.
Our python program on Windows needs to know when copying or pasting is complete.
The time depends on the amount of data and the state of computer, etc.
We want our program to sleep until copying or ...
0
votes
1answer
176 views
FILEGROUPDESCRIPTOR fgd size
Looking at FILEGROUPDESCRIPTOR
http://msdn.microsoft.com/en-us/library/windows/desktop/bb773290%28v=vs.85%29.aspx
cItems = The number of elements in fgd
however the size of fgd is fixed to 1 in ...
2
votes
4answers
884 views
Copy data from the clipboard on Linux, Mac and Windows with a single Python script
I am trying to create a script in Python that will collect data put in the clipboard by the user and preferably save it as a list or in a text file or string/array/variable to work with later on.
...
-1
votes
2answers
243 views
What function to use to select text?
I search a lot of on internet but didn't find some good copy-paste manager for windows 7. I want to make something to easy copying multiple texts. So my question is what function to use in c++ to ...
1
vote
1answer
436 views
Clipboard data set as CF_TEXT can't be retrieved correctly as CF_UNICODETEXT
Our app has a bug in the non-unicode version; if we copy some Russian characters to the clipboard(using SetClipboardData(CF_TEXT)), and then paste them into notepad, they don't get pasted as the ...
4
votes
1answer
189 views
Ruby, windows clipboard bug?
Question: Is it normal for a Ruby TK GUI app to empty the windows clipboard on exit?
Problem: I have a TkText with some text in it, if I Ctrl + C then close the application the clipboard is empty, if ...
1
vote
3answers
1k views
Preserving text color while copy pasting on windows from eclipse to gmail?
When I copy paste from eclipse/RAD to outlook all the text colors and code formatting is preserved just as in RAD 7.5 IDE. But when I copy paste the same to gmail, I am left with no colors. Is this a ...
3
votes
2answers
129 views
Who is the system owner of the clipboard?
While reading about the clipboard in MSDN I came across this line:
After a memory object is placed on the clipboard, ownership of that
memory handle is transferred to the system. When the ...
3
votes
3answers
4k views
Access clipboard in Windows batch file
Any idea how to access the Windows clipboard using a batch file?
5
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 ...
6
votes
1answer
385 views
Include formatting information in windows clipboard copy buffer for pasting into Excel
My application writes tabular data to the windows copy buffer for the user to paste into Excel. This works fine for unformatted tabular data including tab-stops and new lines for cell and row ...
0
votes
1answer
465 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
1answer
309 views
Automatic syncing of clipboard between Windows and OSX
I want to sync clipboard between my Windows and OSX box.
I am currently accessing the OSX machine using VNC and want to be able to copy-paste (i.e. select+copy on Mac and paste on Windows) between ...
1
vote
1answer
289 views
Intercept clipboard changes
how it is possible to generally intercept clipboard changes in C++? E.g. I would like to write a Windows Service that intercepts any Ctrl-C. Is it possible? How?
Thank you in advance.
James
1
vote
1answer
154 views
Can aborting a process without resetting the clipboard chain cause trouble?
I've got a program that calls SetClipboardViewer at startup to register for clipboard change notifications. At shutdown time, it will call ChangeClipboardChain to remove itself from the chain ...
2
votes
3answers
22k views
How to copy to clipboard using Access/VBA?
Using VBA inside Access2003/2007.
How to copy the contents of a string variable to the clipboard?
This site recommends a creating a zero length TextBox, copying the string to the TextBox, then ...
0
votes
1answer
248 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. ...
2
votes
2answers
350 views
How can I do clipboard-like operations without using the real clipboard?
I am looking to write a program (in Delphi or C++) to protect my passwords, and I would like to be able to copy and paste them. Is it possible to copy and paste, per se, without the data going to the ...
2
votes
4answers
909 views
Access clipboard Windows (7) 64-bit
Is there a way to access (set, read etc.) the clipboard on Windows 7 64-bit in Python? I have seen PyWin32 but as far as I could see that was only 32-bit.
0
votes
2answers
688 views
How do I reliably invoke clipboard copy/paste actions in other apps without messing with input queue
A while ago I wrote a simple app, which surrounds selected text in any input field in any application with some unicode symbols when user presses some hotkey. Basically, app's logic is as follows:
...
0
votes
2answers
248 views
Windows aplication that lives only in the taskbar
I'm new to windows programming (any win 32 API).
I want to create a windows application that listens to the clipborad all the time and reacts to keyboard shortcuts (for example you copy text from the ...
0
votes
2answers
914 views
How to retrieve data from clipboard as System.String[]
When I copy data from my application, I wrote a simple C# script to check what type it is. Apparently (and I expected that), it's an array of strings:
IDataObject data = ...
2
votes
3answers
974 views
What do various clipboard/drag-and-drop formats mean?
So I was playing around with drag and drop. I made a sample application and dropped a file from My Music onto my application. Here's what e.Data.GetFormats() returned:
Shell IDList Array
...
1
vote
3answers
530 views
0
votes
3answers
1k views
set GLOBAL clipboard text in windows, native c++
I have an ASCII string (A null terminated char array)
in a console app.
all I want to do is make it so my app will put this string into the "global clipboard"
so that after running it, I can ctrl+v ...
3
votes
1answer
262 views
How do I safely and correctly create a backup of the Windows clipboard?
I'm trying to create a backup of the Windows clipboard. Basically what I'm doing is using EnumClipboardFormats() to get all of the formats that exist on the clipboard currently, and then for each ...



