bon voilà, g crée un form
j'y ai inséré a l'intérieu une rich text box,
et un internet tranfert control
g ensuite double cliké sur la for et j'y é copier ce code
Private Sub Form_DblClick()
Inet1.AccessType = icUseDefault
RichTextBox1.Text = Inet1.OpenURL _
(InputBox("URL", , "ftp://ftp.membres.lycos.fr/" ))
comme indiké ds l'exemple
---------------------------
The example uses the OpenURL method to retrieve the directory of an FTP server. To try the example, place an Internet Transfer control and a RichTextBox control on a form. Paste the code into the Declarations section. Press F5 to run the example, and double-click on the form.
Private Sub Form_DblClick()
Inet1.AccessType = icUseDefault
RichTextBox1.Text = Inet1.OpenURL _
(InputBox("URL", , "ftp://ftp.microsoft.com" ))
End Sub
---------------------------
une fois le programme démarré en faisant un double click sur la form il me vient une fetre en me confirment l'adresse a l'aquelle il va se coneter, apres avoir fait ok , la rich text box se vide et rien ne s'affiche.(alors kil devrai y avoir mes fichiers)
je aussi pris soin de mettre mon login et mot de passe du ftp ds les propriétés du Internet Transfer control..
Avez vu une idée de comment résoudre ce problème ?