decrypting a batch of files

Re: Encryption

Out of interest what are the files being used for? If there is no real reason to store the contents on disk then simply keeping them in memory is going to be the easiest solution.
 
Re: Encryption

The contents of the four files are to be displayed in corresponding sequence as the text of four labels. Can you get them in memory without storing them on the disk?
 
Re: Encryption

Where is the information contained in the files coming from? If you are reading it from some other source (i.e. Database or website) then you could just read the values into a string directly and assign that to the relevant label.
 
Back
Top