Hello,
I have VB6.0 Project with Inet1, i don't want to use API functions in this project, and i want to list directories from FTP server (i.e: ftp://ftp.mcafee.com) in a listView Control ....
Note :
i successfully connect to the server using
Code:
Inet1.Execute ,"DIR"

Then i retrieve the Directories NAMES in textbox
Code:
DO
data1 = inet1.getchunk(1024,icString)
data = data + data1
loop while len(Data1) <> 0
text1.text = data
.....
Now i want to replace the Text1 with ListView , but when i attempt to do so, i get the result in just one line in the listview (folder1/folder2/folder3......etc) ... what is the right way to accomplish this task ?!