Hi,

I was created a dynamic library (Used win32 App) & compiled with no error.

Then i was created my main application (MFC) & paste the .h,.lib,.dll files from the source path(dll App Path) to destination path(Main App Path).
If i used the below command in my app means the project working good.

Code:
#include "Alg.h"
#Progma Command(lib, "VTAlg.lib")
& also paste the VTAlg.dll in my app path.

here Alg.h contains the some methods , In future i will edit the function like below for my client requirement but no function name & Arguments change. The changes made in inside function(Logically changed) only.

My client contains only .exe file + .dll file.

My requirement,

So after change the method i will send only .dll file to my client

If i change my lib file name VTAlg2.lib instead of VTAlg1.lib (But Same Function name & Arg type)means how can i edit the code below

Code:
#include "Alg.h"
#Progma Command(lib, "VTAlg.lib")
& How to run my application at client place.

Pls Clear me is possible?