Page 1 of 1

How to Delete All image

Posted: Sun Jan 18, 2009 8:18 am
by Almatrodi
Hi

I know that VSTwain1.DeleteImage(imageNum) will delete only one image. So, how to delete all?

Thanks

Re: How to Delete All image

Posted: Tue Jan 20, 2009 5:32 pm
by Alex
Hello,

You must reinitialize value of the MaxImages property if you want to clear the images buffer and release all used memory.
Please read description of the MaxImages property in documentation.

Best regards, Alexander

Re: How to Delete All image

Posted: Wed Jan 21, 2009 1:43 am
by Almatrodi
I read it. But I don't know how to reinitialize it.

Thanks.

Re: How to Delete All image

Posted: Wed Jan 21, 2009 9:16 am
by Alex
Hello,

You should set it anew. Here is an example:

Code: Select all

VSTwain1.MaxImages = 5
...
VSTwain1.MaxImages = 5 ' buffer will be cleared and all used resources will be freed
...
Best regards, Alexander

Re: How to Delete All image

Posted: Thu Jan 22, 2009 12:12 pm
by Almatrodi
Thanks very much.