Re: Existing Files - Display on Form

  •  02-23-2011, 9:33 PM

    Re: Existing Files - Display on Form

    Hi Edd,
     
    There is a method can add item into uploader.
     
    uploader1.Items.Add(FileSize, FileName, FileStream);
     
    There is a method can remove item in uploader
     
     uploader1.Items[i].Remove();
     
     i is the index of the attachments
     
    Regards,
     
    ken
     
View Complete Thread