|
-
May 15th, 2001, 07:47 AM
#1
Zip with Vb
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|