hi,
the image is coming from my local drive and it doesnt always load using
AddHandler uu.DownloadProgress, AddressOf uu_downloadProgress
this makes no sense to me.
how is Filestream any different with local images and how do i detect if an image is loaded so i can use writeable bitmap?
Main Topics
Browse All Topics





by: mas_oz2003Posted on 2009-11-01 at 14:18:12ID: 25715859
Is this image coming from your local hard drive or the internet?
If local or network share, you can load it to a FileStream with exclusive access.
lStream = new FileStream(fileName, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None);