Ok guess what... I tried it with IE,Chrome and FF.. it didn't work... this is the code that I am using... let me see if i am missing something...

vb Code:
  1. Private Declare Function SendMessage Lib "user32" _
  2. Alias "SendMessageA" (ByVal hwnd As Long, ByVal _
  3. wMsg As Long, ByVal wParam As Integer, ByVal lParam As Any) As Long
  4.  
  5. Private Const WM_VSCROLL = &H115
  6.  
  7. Private Declare Function FindWindow Lib "user32" _
  8. Alias "FindWindowA" (ByVal lpClassName As String, _
  9. ByVal lpWindowName As String) As Long
  10.  
  11. Private Sub Command1_Click()
  12.     Dim Ret1 As Long, ret As Long
  13.     '~~> Finding exact Windows by window name
  14.     'Ret1 = FindWindow(vbNullString, "Welcome to Firefox - Mozilla Firefox")
  15.     Ret1 = FindWindow(vbNullString, "VBForums - Inbox - Windows Internet Explorer")
  16.     If Ret1 = 0 Then MsgBox "Couldn't find the window ...": Exit Sub
  17.     MsgBox Ret1
  18.     '~~> Sending the command
  19.     ret = SendMessage(Ret1, WM_VSCROLL, 3, ByVal CStr("0"))
  20. End Sub

Cool Tx. btw, Glad to hear a person in the universe surfing the web without even ff installed
My only answer to your question is a question.. Have you used Chrome?
__________________