How to tie a function procedure to a progress bar?

Just starting out? Need help? Post your questions and find answers here.
jet
User
User
Posts: 25
Joined: Tue Nov 18, 2014 8:12 pm

How to tie a function procedure to a progress bar?

Post by jet »

How to get the progress bar to display the current phase of a function like FileFingerprint()?

UseMD5Fingerprint()
r1.s = FileFingerprint(filename, #PB_Cipher_MD5)
infratec
Always Here
Always Here
Posts: 6883
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

Re: How to tie a function procedure to a progress bar?

Post by infratec »

You have to read the file, or parts of it, into a buffer and use

Code: Select all

StartFingerprint()
(Read the help about it)
Then you can do it in parts and refresh the progress bar.
Post Reply