ok, when i use hotkeys with sendkeys it screws everything up, i tried sendkeys "^{V}" but it wont do that, either.

Code:
Function SubClassedWnd(ByVal hWnd As Long, ByVal Msg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
    If Msg = WM_HOTKEY And wParam > 0 Then '= 1 Then

            SendKeys ClipboardSaver.Text(wParam)        
    
     End If
    SubClassedWnd = CallWindowProc(lPrevWndProc, hWnd, Msg, wParam, lParam)
End Function
i figure if there was some sorta api call to paste it'd work just fine, anyone know? or any other work-around?

[Edited by cwm on 04-08-2000 at 06:29 AM]