Can object of a DLL can be created by vbscript - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: VB Scripting/Descriptive Programming (https://www.learnqtp.com/forums/Forum-VB-Scripting-Descriptive-Programming) +--- Thread: Can object of a DLL can be created by vbscript (/Thread-Can-object-of-a-DLL-can-be-created-by-vbscript) |
Can object of a DLL can be created by vbscript - lnviswa - 08-06-2008 My Application is a desktop one, For security purpose xml's are being encrypted. If I want to acces those files via vbscript i will get the encrypted data. I have been provided a dot net dll which is providing a method to encrypt and Decrypt. I have to just pass the file to it, and it will create the plain xml file. Any help is greatly appreciated. RE: Can object of a DLL can be created by vbscript - Rajashekar Gouda - 08-07-2008 I heard many times but i dont know.can i know what is the meaning of DLL? Regards Raj RE: Can object of a DLL can be created by vbscript - lnviswa - 08-08-2008 A DLL can consists of set of functions, data etc. A single DLL can be used by different applications, if they have to excute same type of actions(functions) thus saving the disk space. Usage: Static , Dynamic In static A DLL will be loaded into memory and its functions are used, where as in Dynamic on purpose the DLL will be loaded into memory. By USing customised DLL's we can acces different functions like encryption algorithms, performing some actions etc. I am a beginner only, this is what i know:-). RE: Can object of a DLL can be created by vbscript - Rajashekar Gouda - 08-08-2008 Thanks for the information. Regards Raj |