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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ranc

  1. ranc

    copy a server side file to the client

    Hi, How can I copy a server side file to my local machine, I've tried using: Dim fso Set fso = CreateObject("Scripting.FileSystemObject") fso.CopyFile "http://200.200.200.200 \files\test_file.doc", "C:\test_file.doc" But I get an error message, that the URL...
  2. ranc

    Winsock SendData

    How can I flush the Winsock SendData function - I want data sent to take place when the SendData function is called, not only after returning from the function in which SendData was called. e.g. Function A has a SendData call in it. I don’t want to wait with the SendData until function A...
  3. ranc

    Running Internet Explorer from Office VB

    Hi, How can I open an Internet Explorer window (even if it's not the default browser) using VBA ? 10x, Ran ran@swapstation.com
  4. ranc

    Open Internet Explorer

    Hi, How can I open an Internet Explorer (even if it's not the default browser) window using VB ? 10x, ran ran@swapstation.com
  5. ranc

    Adding CustomDocumentProperties

    Hi, I'm trying to add CustomDocumentProperties to an Excel (or other office document) using VBScript. Code: Dim ExcelApp Dim ExcelDoc Set ExcelApp= CreateObject("Excel.Application") Set ExcelDoc= OfficeApp.WorkBooks.Open (-file path-) Question: What code should I use to add a new...
  6. ranc

    Adding code / forms to an exciting file using VBScript

    Hi, 1. Is there a way of adding already created user forms (VB forms) to a Word / Office document, using VBSCript ? 2. Is there a way of adding code segments / functions to a Word / Office document, again using VBScript. 10x. ran.
  7. ranc

    Open / edit a Word document using VBScript

    Well, I did find the problem. For security reasons the browser doesn't allow running ActiveX. I've changed the security settings and it workd fine. 10x
  8. ranc

    Open / edit a Word document using VBScript

    Well, it is installed. Do I need to install an additional component ? Ran
  9. ranc

    Open / edit a Word document using VBScript

    Hi, I've tried to use the source published here for opening an Excel document: set xxx = CreateObject("Excel.Application") The error I get: Error: ActiveX component can't create object: "Excel.Application" Anyone ?

Part and Inventory Search

Back
Top