
- #WINDOWS FORM GET TEXT CLIPBOARD PORTABLE#
- #WINDOWS FORM GET TEXT CLIPBOARD CODE#
- #WINDOWS FORM GET TEXT CLIPBOARD FREE#
- #WINDOWS FORM GET TEXT CLIPBOARD WINDOWS#
PureText is equivalent to opening Notepad, doing a PASTE, followed by a SELECT-ALL, and then a COPY. Text from an actual web page (not the source of the page), it will remove the formatting.
#WINDOWS FORM GET TEXT CLIPBOARD CODE#
If you copy the source code of a web page to the clipboard, it is not going to remove all the HTML tags. It will not fix word-wrap or clean up your paragraphs. It will not remove orįix new-lines, carriage returns, tabs, or other white-space. However, it does not modify the actual text. Tables, charts, pictures, embedded objects, etc. This includes the font face, font style (bold, italics, etc.),įont color, paragraph styles (left/right/center aligned), margins, character spacing, bullets, subscript, superscript, PureText only removes rich formatting from text. In this Options window, you can also configure PureText to run each time you start Windows. The default Hotkey is WINDOWS+V, but this can beĬhanged. Icon and choose "Options" from the pop-up menu. To configure PureText, right-click on its tray
#WINDOWS FORM GET TEXT CLIPBOARD WINDOWS#
The easiest way to use PureText is to simply use its Hotkey to paste text instead of using the standardĬTRL+V Hotkey that is built into most Windows applications. Right-click on the icon to display a menu with more options. You can click on this icon to remove formatting from the text that is currently on the clipboard.
#WINDOWS FORM GET TEXT CLIPBOARD FREE#
Pasted text will be pure and free from all formatting.Īfter running PureText, you will see a "PT" icon appear near the clock on your task bar. Better yet, you can configure a PureText Hotkey to convert and paste the text for you. Just copy/cut whatever you want to the clipboard, click on the PureText tray icon, and then paste to anyĪpplication. Have you ever copied some text from a web page or Word document, and wanted to paste it as plain text intoĪnother application without getting all the formatting from the original source? PureText makes this simple. The resulting pure text to the active window with a single hotkey.

PureText is a tiny tray utility that removes all text formatting from your clipboard and optionally pastes

#WINDOWS FORM GET TEXT CLIPBOARD PORTABLE#
, vbOKOnly + vbCritical, "An Error has Occurred!"Īs you can see, the code is actually very simple and comprised of only a few lines of code, uses Late Binding thus no reference libraries are required to be defined and doesn’t use any application specific code so it is completely portable so it can be used in any VBA application (Access, Excel, Outlook, PowerPoint, Word, …). Switch(Erl = 0, "", Erl 0, vbCrLf & "Line No: " & Erl) _ "Error Description: " & Err.Description & _ "Error Source: Clipboard_SetText" & vbCrLf & _ "Error Number: " & Err.Number & vbCrLf & _ MsgBox "The following error has occurred" & vbCrLf & vbCrLf & _ ' Website : ' Purpose : Retrieve the clipboard value ' Copyright : The following is release as Attribution-ShareAlike 4.0 International ' (CC BY-SA 4.0) - ' Req'd Refs: Late Binding -> none required ' ' Usage: ' ~~~~~~ ' Debug.Print Clipboard_GetText ' sClipboardValue = Clipboard_GetText ' ' Revision History: ' Rev Date(yyyy-mm-dd) Description ' ************************************************************************************** ' 1 Initial Public Release '- Public Function Clipboard_GetText() As String On Error GoTo Error_Handler

'- ' Procedure : Clipboard_GetText ' Author : Daniel Pineault, CARDA Consultants Inc.
