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 strongm 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: *

  • Users: 9August84
  • Content: Threads
  • Order by date
  1. 9August84

    Run-time error '1004': Document not saved

    I have a VBA project in Excel 2003 and it has been running without any issues for more than an year. But suddenly this gives me a "Run-time error '1004': Document not saved." for the command ThisWorkbook.Save This VBA project is password protected. I am not able to save the workbook manually...
  2. 9August84

    How to open a password protected webpage in vba

    Can somebody tell how to open a password protected webpage in VBA, Currently I use the below code to open a webpage Sub openweb() strURI = "www.google.com" Set ie = CreateObject("internetexplorer.application") ie.Navigate strURI end sub
  3. 9August84

    Runtime Error 5: Invalid procedure call or argument

    Hi all, I am trying to extract the texts from a web page and write it to a text file. I am able to read the text by using internetexplorer.application but when I try to write it to the notepad sometimes it gives Runtime Error 5: Invalid procedure call or argument. Microsoft VB Help says that...
  4. 9August84

    To find the month of a date

    Hi all, Is there any way to find the month of any date. The Date('Month') gives only the month of current date. I would like to get the month of any date (eg: 06/15/2009) in the MON format. Please help. -Arasi

Part and Inventory Search

Back
Top