hello experts im gonna open my yahoo email by Inet
With Me.Inet
Dim mURL As String, mHeader As String
mURL = "https://login.yahoo.com/config/login?"
Dim MyInf as String
MyInf = "id=username&value=" & myUser.text & "id=passwd&value=" & MyPw.text
'also i need press login button
Inet.Execute mURL, "POST", MyInf
End With

Private Sub Inet_StateChanged(ByVal State As Integer)
select case state
case 12
Dim myData As String
myData = Inet.GetChunk(1024, icString)

debug.print myData
end select
end sub
i read many many topic and still lame to do it?
by regarding url (https) in final i should press login button & get InputHeader
can some one tell me how can i figure it