My company have an old application (from around 2005/2006) using Visual FoxPro 7 which sadly they don't have the source code (.PJX , .PJT) files. I have to change the connection string because we have to move the database to new server. The problem is the connection string in (connection.dbf file) is encrypted.
I've opened the .exe file with a text editor and found the following code
SET LIBRARY TO libs\Cipher50.fll ADDITIVE
Cipher50.fll exists in the root application folder.
My Question
I want to make an application that can load the "Cipher50.fll" file (maybe like .NET Reflection) and use the correct function so I can update my connection.dbf file.
How can I achieve this?
PS: I know nothing in Visual FoxPro.