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 Mike Lewis 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. msather

    VBA/Excel: how do I test if columns.hidden = true?

    Here's a simple routine that should accomplish what you're asking. Sub CheckCols() For Each col In ActiveSheet.Columns If col.Hidden = True Then col.Hidden = False Next End Sub
  2. msather

    Excel VBA -- retrieving info from Internet Explorer

    Using Excel VBA, I can open up an IE window that displays the link I need, but I'm really struggling with how to retrieve any or all of the contents of the IE window. In the Object Browser for Microsoft Internet Controls, it shows an "Internet Explorer" class with a member called...
  3. msather

    Excel -- removing "X" on forms

    I'm trying to remove the "X" in the top right corner of windows that allows users to close the form/window. I have some code that disables the "X", but I'd prefer to remove it completely. Any ideas? Thanks.

Part and Inventory Search

Back
Top