Hi Mike

Here is your solution:

Sub Login_Yahoo()
'Requires Reference to "Microsoft Internet Controls"
'Requires Reference to "Microsoft HTML Library"
    'Declare Reference to InternetExplorer Object
    Dim MyBrowser As SHDocVw.InternetExplorer
    'Set Reference to InternetExplorer Object
    Set MyBrowser = New SHDocVw.InternetExplorer
        With MyBrowser
        'Make the Browser visible
            .Visible = True
            ' Open Yahoo Mail
            .Navigate "http://mail.yahoo.com";
            ' Insert Text in Search Box and Click on Search Button.
            .document.all.searchTheMailFrmtop.msqtop.value =
Activecell.value
            .document.all.searchTheMailFrmtop.mailsearch.Click
        End With
End Sub

Rest Solution - 
http://www.excelitems.com/2009/03/access-search-engines-on-browser.html

For more tips, tricks, downloads and problem solutions: visit -->
http://www.excelitems.com
------------------------------------------------------------------------
Regards
*Ashish **Jain*
Analyst, CSC Australia
Microsoft Certified Application (Excel) Specialist
Technical Trainer - Excel and VBA
Author -> www.excelitems.com
+91-9999-40-48-43
--------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------

On Mar 15, 5:24 am, Mike C <js2k...@yahoo.com> wrote:
> Hello, I am trying to accomplish the following, in case anyone knows
> how to do it.
>
> I need to (1)  take the contents of the active cell, (2) open my yahoo
> mail in internet explorer(http://us.mc576.mail.yahoo.com/mc/
> welcome?.rand=d64n921nnhrdu).
>
> And then (3) to place the active cell contents in the "search mail"
> search box, and then (3) press enter to display the results.
>
> Does anyone have similar code that shows how this can be accomplished
> with VBA?
>
> FYI, the HTML shows the form ID as  "searchTheMailFrmtop"
>
> (<form id="searchTheMailFrmtop" name="searchTheMailFrmtop" action="/y5/
> s/search;_ylt=ArD8uqVNMO9zi.gQwuZONpxpk70X?extraargs=%26.rand
> %3D324755575%26da%3D0" method="post" target="_top"><p>)
>
> Any suggestions would be greatly appreciated.
--~--~---------~--~----~------------~-------~--~----~
-------------------------------------------------------------------------------------
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
-------------------------------------------------------------------------------------
-~----------~----~----~----~------~----~------~--~---

Reply via email to