ActiveX control for copying file in DTS

Ask a Question related to Microsoft SQL / MS SQL Server, Design and Development.

  1. #1

    Default ActiveX control for copying file in DTS

    Hi Freinds,
    I need to copy a file from:
    \\serverone\folder\myfile.txt
    to
    \\servertwo\folder\myfile.txt

    where \\servertwo is my sql server and running DTS package.

    How can I do it? Any script?
    Thanks in advance,
    Pat


    Patrick Guest

  2. Similar Questions and Discussions

    1. ActiveX Control in C#
      Hi, I am trying to create a program similar to the BasicIacOCXCS sample. I have tried to look though the IACRefrence pdf but haven't been able to...
    2. Help with Activex control
      :I try to build a web site with flash pictures. The problem is this activex control yellow bar that users might not want to click on when visiting...
    3. Copying A Control Not As A Reference
      I have a Control that I want to copy as a copy of the Control, not a copy of the reference to the original. My reason for doing this is because some...
    4. User Control and ActiveX control
      Now I am hosting a user control(an assembly in .dll) in IE. I want to know the difference between this kind of control and ActiveX control. thank...
    5. Using MFC ActiveX control in ASP
      I'm using VS.Net 2003 to create a very simple ActiveX control in MFC. The control has no ui and just a few properties and methods. What do I...
  3. #2

    Default Re: ActiveX control for copying file in DTS


    "Patrick" <pashour@mail.all-in-1.com> wrote in message
    news:ee7djq%23RDHA.2116@TK2MSFTNGP12.phx.gbl...
    > Hi Freinds,
    > I need to copy a file from:
    > \\serverone\folder\myfile.txt
    > to
    > \\servertwo\folder\myfile.txt
    >
    > where \\servertwo is my sql server and running DTS package.
    >
    > How can I do it? Any script?
    use the FileSystemObject

    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/jsfsotutor.asp[/url]

    David


    David Browne Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139