Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dsellos

    How to make the WebBrowser control to scroll down automatically?

    Hey... There is the code. Private Sub UserForm_Initialize() WebBrowser.Navigate2 "http://www.nytimes.com/" Do DoEvents Loop Until Me.WebBrowser.ReadyState = READYSTATE_COMPLETE WebBrowser.Document.body.doscroll WebBrowser.Document.body.doscroll End Sub
  2. dsellos

    How to make the WebBrowser control to scroll down automatically?

    Look at this page. http://www.dailydoseofexcel.com/archives/2004/10/05/webbrowser-control/ The code is not working.
  3. dsellos

    How to make the WebBrowser control to scroll down automatically?

    Hi, I am creating a web browser to view some pages from the server of my company in Excel. I am using VBA. Thank you
  4. dsellos

    Insert row and update formulas

    Hey Try this: Aux = Range("A65536").End(xlUp).Row ActiveCell.FormulaR1C1 = "=SUM(R[1]C:R[" & Aux & "]C)
  5. dsellos

    How to make the WebBrowser control to scroll down automatically?

    Please someone help me. For several days I seek a solution to create the command in VBA. I am looking for a code that makes the page scroll down without using the mouse or keyboard. When the page loads, scroll down to the position I specified. The page will open in a WebBrowser on a UserForm...
  6. dsellos

    Change width of columns form vba

    Thank you very much! I never thought I'd look at the help of VBA. thanks
  7. dsellos

    Change width of columns form vba

    SkipVought hey, thanks for the reply. I want to change the column width of a ListBox, not the column of the worksheet. Greetings
  8. dsellos

    Change width of columns form vba

    Hey everybody. I have a ListBox with seven columns. I want each column has a specific width. Can anyone help me? Thanks!

Part and Inventory Search

Back
Top