Search results for query: *

  1. S

    How to show FOLDERS that stored in FTP SERVER.

    Thanks Mr. John H. I added this ListDirectoryDetails and appears the foldernames, time from ftp server but some words appears that i dont know where came from. And The alignment of the texts, i hope it can show icons and align it to the left side.
  2. S

    How to show FOLDERS that stored in FTP SERVER.

    I want to know how to show FOLDERS in my FTP Upload and Download System, It only appears files but folders doesn't show up. Please help here's the code: Imports System.Net Imports System.IO Public Class Form4 Private Sub listFTP(ByVal URL As String, ByVal UserName As String, ByVal...
  3. S

    Please help coding the Progress bar when downloading a file :((

    where should i post that? what is the full code? please elaborate. thank you :)
  4. S

    Please help coding the Progress bar when downloading a file :((

    Thanks for your reply, but there's an error says "The stream does not support seek operations" ---> Dim respStrmLength As Long = resp.GetResponseStream().Length what should i do. thanks again :)
  5. S

    When removing items the next items doesn't remove only the first one. please help

    Imports System.Collections.GenericI mports System.Net Imports System.IO Public Class Form2 'Dim filename As String Public ftpSettings As FtpClient Private Sub cmdUpload_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdUpload.Click host =...
  6. S

    Please help coding the Progress bar when downloading a file :((

    I use your code but there's an error says "The stream does not support seek operations" ---> ProgressBar1.Value = CInt((LngBytesRead / respStrm.Length) * 100) what should i do? Thanks by the way for the reply :)
  7. S

    Please help coding the Progress bar when downloading a file :((

    I'm sorry, uhmm. i wanna know what is the code for progress bar for download and where should i replace it. I searched for a 2 weeks but no luck. This is urgent please help. Thanks in advance :)
  8. S

    Please help coding the Progress bar when downloading a file :((

    Imports System.Net Imports System.IO Public Class Form4 Private Sub listFTP(ByVal URL As String, ByVal UserName As String, ByVal Password As String) Dim requ As FtpWebRequest = Nothing Dim resp As FtpWebResponse = Nothing Dim reader As StreamReader = Nothing...
  9. S

    There's error in removing items from the list box. please help.

    I don't understand. I'm newbie, could you help me? Code for this, thanks in advance and i want to add progress bar could you help me also? I've searched it but i don't know where i gonna put it. Thanks in advance! :)
  10. S

    There's error in removing items from the list box. please help.

    Imports System.Collections.Generic Imports System.Net Imports System.IO ------------------------------------------------------------------------------------------------------------------- Public Class Form2 'Dim filename As String Public ftpSettings As FtpClient...
  11. S

    Question I can get directory listing, but unable to get file to download :(

    THANKS! I erase the URL= "ftp://" & txturl.Text and it works :)
  12. S

    Question I can get directory listing, but unable to get file to download :(

    Imports System.Net Imports System.IO ------------------------------------------------------------------------------------------------------------------ Public Class Form4 Private Sub listFTP(ByVal URL As String, ByVal UserName As String, ByVal Password As String) URL = "ftp://" &...
Back
Top