Hi,
I created this simple app in vb.net which is suppose to ftp a file. The app
is working. I then tries to use Schedule Task in windows to have it run at a
specified time. The Schedule Task manager shows the file as running but
nothing is being ftp. It looks like it's stuck. Can you tell me where I am
going wrong
Imports System
Public Class Form1
...
Sub New()
InitializeComponent()
UploadFileToServer()
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
End Sub
Private Sub UploadFileToServer()
_ftp.Upload("c:\test.txt","/file/test.txt")
_ftp = Nothing
Me.Close()
End Sub
End Class