Clipboard Size Limitation

J

JetPielut

I'm working with high capacity audio and video files - using a program that
allows for "cut & paste" - but when trying to either cut or copy, I get the
error that the file size is too large for the clipboard. Is there any way to
dramatically increase the usable file size for the clipboard?
 
A

Andrew McLaren

JetPielut said:
error that the file size is too large for the clipboard. Is there any way
to
dramatically increase the usable file size for the clipboard?

Not really. There is no fixed capacity for the clipboard. An application
places data into the clipboard by calling the Win32 SetClipboardData()
function. This allocates memory for the data by calling GlobalAlloc(). If
the call to GlobalAlloc() fails with a "not enough available memory", you'll
get an error message. So basically, the room for clipboard data is the
current virtual memory available to the application. For a 32-bit process,
this will be 2GB, minus whatever the application has already allocated
(including its own code)..

There's no registry key that means "Use a small clipboard, unless this key
is turned off" or the like; the clipboard can always use as much free memory
as is available.

By design, the clipboard is an in-memory form of inter-process communication
(IPC). That makes it very easy and simple to use (for both the user, and for
the application's programmer); but means its capacity is more limited than
other more complex forms of IPC (named pipes, RPC, message queues, etc).

In general, the way to get more capacity would be to have more available
memory within the application's virtual address space. One way to do this
would be to run a 64-bit application, on 64 bit Windows. This dramatically
increases the memory available. But that's only a workaround if your
application is available in a 64-bit version.

Handling the enormous objects generated by multimedia applications is one of
the good reasons for moving to 64 bits.

Hope it helps,

Andrew
 
J

Johnw

JetPielut was thinking very hard :
I'm working with high capacity audio and video files - using a program that
allows for "cut & paste" - but when trying to either cut or copy, I get the
error that the file size is too large for the clipboard. Is there any way to
dramatically increase the usable file size for the clipboard?

Maybe one of these will help.

AccelClip
http://www.softpedia.com/get/Office-tools/Clipboard/AccelClip.shtml
http://www.softpedia.com/progScreenshots/AccelClip-Screenshot-22500.html
http://www.flexigensoft.com/clipboard-extension-tool

MultiClipBoard
http://www.softpedia.com/get/Office-tools/Clipboard/MultiClipBoard.shtml
http://www.softpedia.com/progScreenshots/MultiClipBoard-Screenshot-16224.html
http://www.luziusschneider.com/MultiClipBoardHome.htm

M8 Free Clipboard
http://www.softpedia.com/get/Office-tools/Clipboard/M8-Clipboard-and-Screen-Capture.shtml
http://www.softpedia.com/progScreenshots/M8-Clipboard-and-Screen-Capture-Screenshot-10572.html
http://m8software.com/clipboards/freeclip/freeclip.htm

PasteCopy.NET
http://www.freewarefiles.com/PasteCopyNET_program_42180.html
http://www.freewarefiles.com/screenshot.php?programid=42180
http://www.softpedia.com/get/Office-tools/Clipboard/PasteCopyNET.shtml
http://www.softpedia.com/progScreenshots/PasteCopyNET-Screenshot-101988.html
http://www.pastecopy.net/

ClipGuru
http://www.softpedia.com/get/Office-tools/Clipboard/ClipGuru.shtml
http://www.softpedia.com/progScreenshots/ClipGuru-Screenshot-53604.html
http://clipguru.com/
Portable ClipGuru
http://www.softpedia.com/get/PORTAB...Portable-Applications-Portable-ClipGuru.shtml

ExtraClipboard
http://www.softpedia.com/get/Office-tools/Clipboard/ExtraClipboard.shtml
http://www.softpedia.com/progScreenshots/ExtraClipboard-Screenshot-100949.html
http://extraclipboard.sourceforge.net/

ClipMagic
http://www.freewarefiles.com/ClipMagic_program_18877.html
http://www.freewarefiles.com/screenshot.php?programid=18877
http://www.clipmagic.com/more.html

Oct0pus
http://www.softpedia.com/get/Desktop-Enhancements/Other-Desktop-Enhancements/Oct0pus.shtml
http://www.softpedia.com/progScreenshots/Oct0pus-Screenshot-128200.html
http://sourceforge.net/projects/octopusproject/

Hot Clips-On-Ice
http://www.softpedia.com/get/Office-tools/Clipboard/Hot-Clips-On-Ice.shtml
http://www.angelfire.com/in/honysoft/hcoidesc.html

Copynicus
http://www.softpedia.com/get/Office-tools/Clipboard/Copynicus.shtml
http://www.softpedia.com/progScreenshots/Copynicus-Screenshot-31542.html
http://www.geocities.com/iamvikramgandhi/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top