clear clipboard 
Author Message
 clear clipboard

Hi all.

I copy a text which i put  in clipboard in notepad in my VBA project. But
sometimes i see a runtime error (not all the time). I think this is because
there are other copied things in the clipboard before i copy. Is there a way
to clear the clipboard programatically ?

Eg.Code

Set Text = New DataObject
Text.SetText  strStateText(String variable)
    'Copies a text string to the DataObject using a specified format
objStateText.PutInClipboard
    'Moves data from a DataObject to the Clipboard

intReturnValue = Shell("C:\xxx", 1)
    'Shell(pathname[,windowstyle])
AppActivate intReturnValue
    'Activates an application window
SendKeys "^V", True
SendKeys "^{HOME}", True
    'Sends one or more keystrokes to the active window as if typed at the
keyboard.



Sun, 01 Feb 2004 23:16:09 GMT  
 clear clipboard
Private Declare Function EmptyClipboard Lib "user32" () As Long


Quote:
> Hi all.

> I copy a text which i put  in clipboard in notepad in my VBA project. But
> sometimes i see a runtime error (not all the time). I think this is
because
> there are other copied things in the clipboard before i copy. Is there a
way
> to clear the clipboard programatically ?

> Eg.Code

> Set Text = New DataObject
> Text.SetText  strStateText(String variable)
>     'Copies a text string to the DataObject using a specified format
> objStateText.PutInClipboard
>     'Moves data from a DataObject to the Clipboard

> intReturnValue = Shell("C:\xxx", 1)
>     'Shell(pathname[,windowstyle])
> AppActivate intReturnValue
>     'Activates an application window
> SendKeys "^V", True
> SendKeys "^{HOME}", True
>     'Sends one or more keystrokes to the active window as if typed at the
> keyboard.



Mon, 02 Feb 2004 09:13:32 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Clear Clipboard

2. Clear Clipboard on file.close

3. clear clipboard

4. Macro to clear clipboard

5. Clear clipboard

6. how to clear clipboard?

7. Clearing Clipboard Contents From Excel VBA

8. Clear Clipboard

9. Access XP: Clearing the clipboard / not saving data to the clipboard

10. Clearing the clipboard/memory

11. Clear the clipboard

12. Clipboard.clear

 

 
Powered by phpBB® Forum Software