FileCopyEx - Copying with visualization!

Discorez

Member
Licensed User
Longtime User
This lib allows to copy file and to display current progress (with ProgressBarControl).
Demo and sources included...
 

Attachments

  • FileCopyEx.zip
    4.3 KB · Views: 68

fatman

Active Member
Licensed User
Longtime User
Hi Discorez,

I tried using you dll... If I click the "Run" - Button everything is working fine.
But trying to compile your demo results in an Error: "CS0501 filecopier... must declare a body because it is not marked as
'abstract' or 'external'."

Have you faced this yet?

Regards Fatman
 

Basic4Life

Member
Licensed User
In the FileCopyEx.cs file in your libraries folder, locate this line at the top
B4X:
public int BufferLenght { get; set; }
and change it to
B4X:
public int BufferLenght;
that should make it work (keep the typo in BufferLenght)
 
Top