We have 1 client that cannot get passed our password/decrypt routine. The other 40 clients can.
This client is using our VFP9 software on a virtual machine( win 7 ).
We are using the FFC\_crypt.vcx class that was loaded with VFP9.
Here is a snippet of that code in the _crypt class.
I would like to know where the WIN32API file is, or is it embedded in another DLL such as Kernal32.dll or gdi32.dll etc, etc.
I will use this information to determine if the virtual machine is missing something.
Thanks.
This client is using our VFP9 software on a virtual machine( win 7 ).
We are using the FFC\_crypt.vcx class that was loaded with VFP9.
Here is a snippet of that code in the _crypt class.
Code:
Declare INTEGER CryptDeriveKey ;
IN WIN32API AS CryptDeriveKey ;
INTEGER hProviderHandle, ;
INTEGER nALG_ID, ;
INTEGER hBaseDataHandle, ;
INTEGER nFlags, ;
INTEGER @hCryptKeyHandle
I would like to know where the WIN32API file is, or is it embedded in another DLL such as Kernal32.dll or gdi32.dll etc, etc.
I will use this information to determine if the virtual machine is missing something.
Thanks.