WIN Server 2003
-
Hi Guys , I hav posted this earlier too but did't get any solution . I hav to instal my VC++ application on MS Server 2003 , I copied all the dlls manually (with help of Depends Tool), but my application did't ran. Then after searching from every where I just installed MS Visual C++ 6. on that machine and it solved my problem . Now uninstalling MS Visual C++ again cause my application not to run. I get a RunTime error without any details. I think problem is that I have to register some dlls or need to copy some dll that DEPENDS Tool is not showing ! Any suggestions of Tips plzzzzzzzzzzzzzzz ! Regards, ZINC
-
Hi Guys , I hav posted this earlier too but did't get any solution . I hav to instal my VC++ application on MS Server 2003 , I copied all the dlls manually (with help of Depends Tool), but my application did't ran. Then after searching from every where I just installed MS Visual C++ 6. on that machine and it solved my problem . Now uninstalling MS Visual C++ again cause my application not to run. I get a RunTime error without any details. I think problem is that I have to register some dlls or need to copy some dll that DEPENDS Tool is not showing ! Any suggestions of Tips plzzzzzzzzzzzzzzz ! Regards, ZINC
Does your application do any explicit linking?
"The words of God are not like the oak leaf which dies and falls to the earth, but like the pine tree which stays green forever." - Native American Proverb
-
Does your application do any explicit linking?
"The words of God are not like the oak leaf which dies and falls to the earth, but like the pine tree which stays green forever." - Native American Proverb
-
Hi , What do u mean by explicit linking ? I am using standard MFC libraries . And using SQL Server with CRecordset and CDatabase clases. I will be really grateful if anyone could help me out here. Thanks in advance ZINC
zinc_z wrote:
What do u mean by explicit linking ?
As opposed to implicit linking. Implicit linking: static load or load-time dynamic linking. Explicit linking: dynamic load or run-time dynamic linking (e.g.,
LoadLibrary()
).
"The words of God are not like the oak leaf which dies and falls to the earth, but like the pine tree which stays green forever." - Native American Proverb
-
zinc_z wrote:
What do u mean by explicit linking ?
As opposed to implicit linking. Implicit linking: static load or load-time dynamic linking. Explicit linking: dynamic load or run-time dynamic linking (e.g.,
LoadLibrary()
).
"The words of God are not like the oak leaf which dies and falls to the earth, but like the pine tree which stays green forever." - Native American Proverb
Hi , No I m not using any explicit linking . I read somewhere on web that If you select "USE MFC IN STATIC Library" option in Project Settings menue , you dont need to copy dlls explicitly but i have tried this one too buts its not working also. I will really appreciate if you could provide me any alternative solution . Regards, ZINC
-
Hi , No I m not using any explicit linking . I read somewhere on web that If you select "USE MFC IN STATIC Library" option in Project Settings menue , you dont need to copy dlls explicitly but i have tried this one too buts its not working also. I will really appreciate if you could provide me any alternative solution . Regards, ZINC
zinc_z wrote:
I read somewhere on web that If you select "USE MFC IN STATIC Library" option in Project Settings menue , you dont need to copy dlls...
True, because all of the code has been mashed into the single .exe file. Is your application compiled in Debug or Release mode?
"The words of God are not like the oak leaf which dies and falls to the earth, but like the pine tree which stays green forever." - Native American Proverb
-
zinc_z wrote:
I read somewhere on web that If you select "USE MFC IN STATIC Library" option in Project Settings menue , you dont need to copy dlls...
True, because all of the code has been mashed into the single .exe file. Is your application compiled in Debug or Release mode?
"The words of God are not like the oak leaf which dies and falls to the earth, but like the pine tree which stays green forever." - Native American Proverb
My Code is in Release mode , there is no external dependcies , Its a multithreaded socket based database application. Now is there any way that I could run it on MS Server 2003 without installing MS VIsual C++6. I have already tried by copying all Dlls(with help of Dependency Walker ), and also by setting option 'MFC IN Static Library', and by running REDIST package of microsoft and also by making project through InstalShield . Any other solution ?????? ZINC
-
My Code is in Release mode , there is no external dependcies , Its a multithreaded socket based database application. Now is there any way that I could run it on MS Server 2003 without installing MS VIsual C++6. I have already tried by copying all Dlls(with help of Dependency Walker ), and also by setting option 'MFC IN Static Library', and by running REDIST package of microsoft and also by making project through InstalShield . Any other solution ?????? ZINC
With your application running, you need to make a note of each of the DLLs that have been loaded into its address space. Use Process Explorer for this.
"The words of God are not like the oak leaf which dies and falls to the earth, but like the pine tree which stays green forever." - Native American Proverb