I have a .dll that when given a value it will return an encrypted key.
I need to be able to call this function from FP. Can anyone tell me how I do
this.

I am using a form to get the relevent data I need and I wish to disply the
encrpted result on the form for the user also.

Any help is appriciated - Thanks in advance

Re: call my .dll from FrontPAge by MD

MD
Tue Feb 07 16:26:03 CST 2006

Hi L. Peaker,

First there are all types of dll files so I'm assuming yours is COM based and registered on the system in question.

Using VB in Classic ASP

set myObject = server.CreateObject("myobject.myident")

if IsObject(myObject) then
...... ' code to access the encrypted key method.
end if


--
Mike -- FrontPage MVP '97 - '02
http://www.websunlimited.com
FrontPage Add-in


"L Peaker" <LPeaker@discussions.microsoft.com> wrote in message news:3176170B-A36F-4A93-9403-7F45B84B816E@microsoft.com...
>I have a .dll that when given a value it will return an encrypted key.
> I need to be able to call this function from FP. Can anyone tell me how I do
> this.
>
> I am using a form to get the relevent data I need and I wish to disply the
> encrpted result on the form for the user also.
>
> Any help is appriciated - Thanks in advance