Search results for query: *

  1. J

    not transferring the file

    Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load 'Basically i'm trying to get my program to copy a file from a location and send it over a series of ip addresses, i've commented each individual bit, but in short it just doesn't copy the...
  2. J

    not transferring the file

    not sure if that's easier without all my comments, and no I haent used that, I'm currently using the xcopy then executing it with process.start
  3. J

    not transferring the file

    Imports Microsoft.VisualBasic.FileIO Imports System Imports System.IO Imports System.Text Public Class CopyPastFile Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click If Textbox1.Text = "" Then MsgBox("No file has been selected!")...
  4. J

    not transferring the file

    Basically i'm trying to get my program to copy a file from a location and send it over a series of ip addresses, i've commented each individual bit, but in short it just doesn't copy the file even tho it exists in the location Public Class CopyPastFile Private Sub Button1_Click(sender As...
  5. J

    Question copying one file to another system

    So I need help copying one file to another system on a different network heres my code so far Try Dim fso, WshNetwork Const OverwriteExisting = True WshNetwork = CreateObject("Wscript.Network") fso =...
Back
Top