In regards to the MSVCP7*.DLL, I found an FLL I built will not use the DLL in the same folder as the FLL. Either the DLL needs to be in the path, or in needs to be registered in the manifests. Building the FLL by default will put the manifest into the FLL. However, the DLL needs to be installed with manifest instructions. This is the DLL Hell solution Microsoft has put out. Installing the DLL with the MSM found in the %CommonProgramFiles%\Merge Modules is the easiest way to install the manifest links.
Using INNO does not have a direct provision for installing an MSM. There is a tool available to convert an MSM into an MSI which INNO could then use. http://www.ethalone.com/articles/msm2msi.php HTH, Tracy -----Original Message----- From: Andrew Stirling Sent: Saturday, May 09, 2009 11:06 AM Kam You can get the SHA1 done via Craig Boyd's vfpencryption,.fll http://www.sweetpotatosoftware.com/SPSBlog/2007/08/06/VFPEncryptionUpdate.as px Function HASH() Signature: Hash(cStringtoHash[, nHashType]) Parameters: cStringtoHash - A plain text string you wish to have hashed nHashType - The type of hash function to generate. There are currently 7 different hash functions supported 1 = SHA1 (a.k.a SHA160) 2 = SHA256 3 = SHA384 4 = SHA512 *Default 5 = MD5 6 = RIPEMD128 7 = RIPEMD256 SET LIBRARY TO vfpencryption71.fll ADDITIVE tempText ="Hello World" +CHR(13) + " was Jane's quote" ? (Hash(tempText,1) ? STRCONV(Hash(tempText,1),13) I also think you need to have/download 'msvcp71.dll' Andrew Stirling 01250 874580 http://www.calcpay.co.uk HMRC Accredited UK payroll program _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/000601c9d23e$5c6889d0$15399d...@com ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

