|
-
Apr 25th, 2012, 12:28 PM
#1
Thread Starter
Lively Member
[RESOLVED] FTP Inet1 List Directories In ListView Control
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 ?!
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|