![User Image](https://secure.gravatar.com/avatar/244e4ac0ea57f5613460468ef7e5d811/?s=48&d=https://images.binaryfortress.com/General/UnknownUser1024.png)
Andrew V. Tyuchkalov
20 discussion posts
The macro
Imports System
Public Class ClipboardFusionHelper
Public Shared Function ProcessText(text As String) As String
text = BFS.Clipboard.CopyText
text = text.ToUpper
BFS.Dialog.ShowMessageInfo(text) 'for debug
BFS.Clipboard.PasteText(text)
Return text
End Function
End Class
The HotKeys is Ctrl+Win+Up
if I select string as "jksfjdkfgjkdjgk kflsdkfslklsfklsl", the result is empty
So, CopyText doesn't work stable. If I Select a plain text (without space) and Push HotKes once, twice or more times, in same times еоу result is empty.
![User Image](https://secure.gravatar.com/avatar/244e4ac0ea57f5613460468ef7e5d811/?s=48&d=https://images.binaryfortress.com/General/UnknownUser1024.png)
Andrew V. Tyuchkalov
20 discussion posts
Thank you, All is working correctly.