hi,

Is there a way to avoid the begin screen of winzip ("i Agree" and "Quit").

I Run zip with the shell function and i wander if you can use a parameter to avoid this screen.
Or is there a way to close that screen with sendmessage. I tried this:

Dim result as Long
Dim result2 as Long
Dim leave as Boolean
result = FindWindow(vbNullString, "WinZip")
If result > 0 then
result2 = SendMessage(result, wm_keydown, ???, 0)
result2 = SendMessage(result, wm_keyup, ???, 0)
End If



but i don't know what to fill in for the ???. (I tried using spyxx.exe, but there i see that the number of the button changes.


Any help appreciated.