all software/

Kinex and 101 Clips - Multi Clipboard Software for Windows

Downloads and Reviews 1-10 of 10
Handy FTP, SFTP and WebDAV client for Windows
Screen saver for BitKinex users
The virtual construction toy with no limits
Never type the same thing twice!
$34 - Best FTP Clients

BitKinex integrates the functionality of an innovative FTP client, SFTP client and WebDAV client for Windows. In addition to features found in other popular FTP programs BitKinex introduces several unique approaches and solutions.



$0 - Barad-Dur FTP Clients

Screen saver for users of the BitKinex FTP client. It shows the tips for using this popular <a href=" client for Windows</a>.



$19.95 - Hypervisual

Blockworks, the virtual construction toy for kids of all ages, allows you to build anything you want. Choose among the hundreds of carefully drawn parts available and combine them in infinite ways. You will be amazed at the infinite possibilities!



$20 - 101 Software

Typing something youve typed before? Searching for that graphic file, web address or phone number you know you have somewhere? You need 101 Clips. No other multi clipboard offers 101's unique clip cataloging system.



 
Multi Clipboard and Screen Capture

! - M8 Multi Clipboard
$20 - M8 Software(UK)

M8 is the only multi clipboard to feature an on board graphic clip editor. You can create your own clip art from scratch or you can start with a screen shot or digital photo and add text and clipart to it. Your graphics can then be pasted straight into Outlook or Word or you can save them as BMP, JPEG or GIF files for your web site.

The M8 multi clipboard captures everything that you cut or copy from any program. It also captures all screen shots and web graphics. The last 30 clips or screen shots are shown in its clipboard area. Move the mouse over the clips and you see them in the viewer. If the clip is text, you see the first several lines and if it is a graphic, you see a thumbnail of it. To paste back a clip, you click on it. There are on board text and graphic editors so you can create your own clips within the program. It has an extensive, well organized library system. (See screen shot) Drag clips there to save them permanently. You can view up to three groups of 30 clips at any one time. There are 100 groups in the library and you can have 100 libraries (300,000 clip capacity). It has four customizable buttons to start your most used programs. It has a form filling mode. Any clip that is a web or email address can be used as a bookmark as well as a clip. Any clip that is a phone number can be used to dial and any clip that is a file or program on your PC can be used to open or run it. You can bulk paste up to 30 clips at once and there is a search facility for text clips.



 
Multi Clipboard and Screen Capture

A - M8 Multi Clipboard
$20 - M8 Software(UK)

M8 is the only multi clipboard to feature an on board graphic clip editor. You can create your own clip art from scratch or you can start with a screen shot or digital photo and add text and clipart to it. Your graphics can then be pasted straight into Outlook or Word or you can save them as BMP, JPEG or GIF files for your web site.

The M8 multi clipboard captures everything that you cut or copy from any program. It also captures all screen shots and web graphics. The last 30 clips or screen shots are shown in its clipboard area. Move the mouse over the clips and you see them in the viewer. If the clip is text, you see the first several lines and if it is a graphic, you see a thumbnail of it. To paste back a clip, you click on it. There are on board text and graphic editors so you can create your own clips within the program. It has an extensive, well organized library system. (See screen shot) Drag clips there to save them permanently. You can view up to three groups of 30 clips at any one time. There are 100 groups in the library and you can have 100 libraries (300,000 clip capacity). It has four customizable buttons to start your most used programs. It has a form filling mode. Any clip that is a web or email address can be used as a bookmark as well as a clip. Any clip that is a phone number can be used to dial and any clip that is a file or program on your PC can be used to open or run it. You can bulk paste up to 30 clips at once and there is a search facility for text clips.



Clipboard Extender,  Hold Thousands of Clips.

ClipMate Clipboard Extender
$34.95 - Thornsoft Development, Inc.

ClipMate enhances the Windows clipboard, making it a true power tool. The cut/copy paste capability of Windows works well for transferring single items of data, but is not useful if you want to move a lot of data or keep data longer than until your next cut or copy (at which time Windows overwrites the clipboard whether you were ready or not!). ClipMate works alongside the regular Windows clipboard and remembers every piece of data (both text and graphics) that you cut or copy. Once your data is in ClipMate, you can select an item and it is automatically placed back on the clipboard or directly into the application you were using. You can view, print, edit, reformat, convert to upper/lower case, search, rename, and reorder clip items. There is even a built-in spellchecker. You can create an unlimited number of collections to store your data, and you have full control over the retention rules so that your collections will fit your own work process. For example, you can use a "InBox" collection as a catch-all, and create "Safe" collections for topics like Tips n Tricks, Frequently Used Letter Closings, Clip Art, Hot Internet URLS, Project Research, or whatever you wish. ClipMate's exclusive PowerPaste allows you to rapidly paste large amounts of data with ease.
New to version 7: Universal QuickPaste lets you paste any clip by double-clicking. Drag and Drop clips right into other programs. Dual-Monitor screen capture, and the new "ClipBar" places your favorite ClipMate features right into the windows taskbar.
With ClipMate as your Windows companion, you will take the familiar underpowered clipboard and turn it into an unexpectedly powerful timesaver.


Copy up to 25 times before pasting.

101 Clips - Multi Clipboard
$0 - 101 Software

If you ever wished that you could copy more than a single clip from one document before pasting to another, 101 Clips is for you. With 101 you can copy up to 25 times and unlike other multi clipboards, 101 shows you a preview of each clip before you paste it. It can also be set to remain on top of your working program. 101 handles all forms of clips including multi graphic Word clips. It even pastes graphics directly into the body of Outlook Express emails. You don?t have to save them as JPEGs and attach them.


Click your mouse automatically.

Auto Clicker Open Source Code
$0 - SoftAhead.com

Introduction
Auto Clicker is a program that clicks your mouse automatically. It allows the mouse to click without giving the user sore fingers. Just set X-Y List using on your keyboard, set the click-interval, click button and away from mouse and keyboard, it goes clicking the mouse automatically. For getting a faster auto-click speed, try setting the click interval to lower number(miliseconds). To stop Auto Clicker, just press on the keyboard. Auto Clicker can be used to make repetitive clicking easy but should not be used to cheat in online-games. Auto Clicker is a freeware, easy to use, intuitive program and the program source is open.

Using the code
To build this program, you should know mouse_event() function and hooking mechanizm.

From MSDN, you can know the mouse_event() function synthesizes mouse motion and button clicks.

This is examples using mouse_event() in this program:

mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, GetMessageExtraInfo()); // Left Key Down
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, GetMessageExtraInfo()); // Left Key UP

mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, GetMessageExtraInfo()); // Right Key Down
mouse_event(MOUSEEVENTF_RIGHTUP, 0, 0, 0, GetMessageExtraInfo()); // Right Key Up
To get keyboard messages when the application loses focus, you need hooking procedures.

In OnInitDialog(), SetWindowsHookEx() is used and HookProc of SetWindowsHookEx is used as follows:

LRESULT CALLBACK HookMouseProc(int nCode, WPARAM wParam, LPARAM lParam)
{
HWND hwnd;
LRESULT lResult = 0;
if(nCode == HC_ACTION)
{
if(((EVENTMSG*)lParam)->message == VK_ESCAPE)
{
hwnd= ::FindWindow(NULL, strProgName);
::SendMessage(hwnd,WM_KEY_ESCAPE,1,1);
return 1;
}
else if(((EVENTMSG*)lParam)->message == VK_PAUSE)
{
hwnd=::FindWindow(NULL, strProgName);
::SendMessage(hwnd,WM_KEY_PAUSE,1,1);
return 1;
}
}

return CallNextHookEx( hHook, nCode, wParam, lParam);
}

How to use
First of all, you should fill X-YList box with mouse points on screen. Just move your mouse while press key on the keyboard.

While Auto Clicker is working, if you want to stop it, just press key on the keyboard.

If [PAUSE] key on the keyboard is pressed, you can pause Auto Clicker.

You can save X-Y List to a file and load it from the file using and button.


ClipBox can hold tens of thousands of "clips"

clip-box
$29.99 - Golden Soft

The native clipboard in Windows is great for cutting and pasting a single item at a time, but if you want to move a series of items, or save items for later use, then you need ClipBox!
Rather than working with one piece of clipboard data at a time, ClipBox enhances the native clipboard functionality by remembering all items (both text and graphic) that are copied to the clipboard and storing them in collections; for later pasting. With ClipBox as a Windows companion, users will never accidentally lose a piece of clipboard data again. ClipBox's database can hold dozens, hundreds, or even thousands of clips - of all formats including Text, Graphics.
.


© 2007-2008 Software Institute

Software Institute periodically updates pricing and product information from third-party sources,
so some information may be slightly out-of-date. You should confirm all information before relying on it.