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 Chriss 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. bnath005

    Pls correct this simple code

    I want to append todays date as part of the name of the existing file. I thought the folloiwng code would work. objFile.name = "opxinhdr.txt" & Date()
  2. bnath005

    Pls correct this simple code

    thus far, I didn't have to do.
  3. bnath005

    Pls correct this simple code

    so How to attach today's date at the end of the file? thanks nath
  4. bnath005

    Pls correct this simple code

    Invalid procedure call or argument. this is the error message
  5. bnath005

    Pls correct this simple code

    I get compiler error: objFile.name = "opxinhdr.txt" & Date()
  6. bnath005

    how to rename a file in vbscript?

    thanks much nath
  7. bnath005

    How to check if a file exists in a directory

    thanks much. I figured out. nath
  8. bnath005

    How to check if a file exists in a directory

    Set objFSO = CreateObject("Scripting.FileSystemObject") If the file I am looking for doesn't exist, then the next line is causing an error. Set objFile = objFSO.GetFile("C:\code\OpicsEod\file.txt") thanks much appreciated. nath
  9. bnath005

    how to rename a file in vbscript?

    so there is no .Rename method? thanks nath
  10. bnath005

    how to rename a file in vbscript?

    I saw only Copy, Delete methods (file scripting object). thanks nath
  11. bnath005

    Help...vb6.0 error: "unable to initialize application lock file"

    I get this error when I run the project file in vb6.0 environment. any reasons why this could be happening?
  12. bnath005

    standard output in VBA?

    in .net standard output is console. we can write to console. what is the standard output in VBA? specifically MS Access? I need to write error messages to standard output. thanks nath
  13. bnath005

    what is standard output in MS Access?

    in .net standard output is console. we can write to console. what is the standard output in VBA? specifically MS Access? I need to write error messages to standard output. thanks nath
  14. bnath005

    sending an excel file (worksheet ) within an outlook

    I want to send an email(outlook object) from VBA code. In the body of that email, I would like to have an Excel work sheet. NOt as an attachement. but the body itself should have the excel file. how can I do that programmatically do that? Sub SendEmail() Dim OutApp As Outlook.Application...

Part and Inventory Search

Back
Top