Jump to content

Recommended Posts

Posted

Hi...

How to put data to clipboard in all available formats?
 
I use _ClipBoard_GetData to save all formats data to files but when I try to put them again to clipboard using _ClipBoard_SetData, I have available  only the last data format which I used. After that when I try put this data to "Microsoft Word" I get only "Cleaned" text format. 
When I the set last format as a HTML and I put to "Micorosft Word" everything fine, but I can't put to Notepad (I get empty value). 
 
When I doing this same with _ClipBoard_GetDataEx to save data to memory object (not to file) and put them again using _ClipBoard_SetDataEx all data formats are available...
 
Help? 
 
Posted

Post the code you're using, without knowing what you're doing and how we're only guessing.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Posted (edited)

Sorry...

#include <Clipboard.au3>
#include <Array.au3>

$_ClipData = _ClipGet()
_ArrayDisplay($_ClipData)
_ClipEmpty()
_ClipPut($_ClipData)
$_ClipData = _ClipGet()
_ArrayDisplay($_ClipData)

Func _ClipGet()
    Local $RECORDS[1][2]
    $RECORDS[0][0] = 0
    Local $iFormat, $Errors = 0, $iData

    Do
        If Not _ClipBoard_Open(0) Then Return -1
        $iFormat = _ClipBoard_EnumFormats ($iFormat)
        _ClipBoard_Close()
        If $iFormat <> 0 Then
            ReDim $RECORDS[UBound($RECORDS) + 1][2]
            $RECORDS[UBound($RECORDS) - 1][0] = $iFormat
            $RECORDS[UBound($RECORDS) - 1][1] = _ClipBoard_GetData($iFormat)
            $RECORDS[0][0] += 1
        EndIf
    Until $iFormat = 0
    Return $RECORDS
EndFunc

Func _ClipPut($_ClipArray)
    If Not IsArray($_ClipArray) Then Return -1
    For $Step = 1 To $_ClipArray[0][0]
        _ClipBoard_SetData($_ClipArray[$Step][1], $_ClipArray[$Step][0])
    Next
EndFunc

Func _ClipEmpty()
    _ClipBoard_Open(0)
    _ClipBoard_Empty()
    _ClipBoard_Close()  
EndFunc
 
When I copy data from a website I receives formats: 13, 493811, 16, 1, 7
 
When I re-paste the data and get the data again receives formats 4, 16, 1, 13.
Edited by piterek

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...