Whenever I try and compile this simple code snippit I get an error 'Internal
Error: ILLK8139'. I have all the D2005 updates installed. I have tried
various variations of the Uploader.Files loop but they basically all give
the same error.
procedure DefaultMediaSectionCtrl.SaveImages(Key: Guid);
var
Uploader: WebSupergoo.ABCUpload5.Upload;
TheFile: WebSupergoo.ABCUpload5.UploadedFile;
begin
Uploader := Upload.Create;
for TheFile in Uploader.Files do // <---- error here
begin
end;
end;
Any ideas, or even other similar components that might work.
Craig.
> Any ideas, or even other similar components that might work.
How about FileUploader located in the FileManager package here:
http://www.mono-software.com/filemanager.aspx
You get 3 components in the package.
~Zarko Gajic
This looks like a pretty good control. I was hoping for something that I
could easily implement a progress bar during the upload with as well.
Craig.