MFC FeaturePack application is not running in client PC.
-
Hi, I have created an application in visualstudio 2008 and i used MFC Featurepack CRibbonBar for designing menu bar. Its working fine in my PC. When i invoke that application in some other PC which doesnot have Visual studio, its not opening. I pasted mfc90d.dll ,mfc90ud.dll,mfcm90d.dll,mfcm90ud.dll,Microsoft.VC90.MFC.manifest in that application path. When i open the application,its opening but i cannot find the Ribbon menubar. Just the view window get enlarged and filled the screen. I think im missing some Dlls related to MFC Feature Pack. Please help me how to resolve this problem. I want to run this application in my Client PC.
Anu
-
Hi, I have created an application in visualstudio 2008 and i used MFC Featurepack CRibbonBar for designing menu bar. Its working fine in my PC. When i invoke that application in some other PC which doesnot have Visual studio, its not opening. I pasted mfc90d.dll ,mfc90ud.dll,mfcm90d.dll,mfcm90ud.dll,Microsoft.VC90.MFC.manifest in that application path. When i open the application,its opening but i cannot find the Ribbon menubar. Just the view window get enlarged and filled the screen. I think im missing some Dlls related to MFC Feature Pack. Please help me how to resolve this problem. I want to run this application in my Client PC.
Anu
-
https://www.google.com/search?q=mfc+runtime+2008[^].
Use the best guess
-
I installed that redistributable package. But no use. its not working. Application is running but Ribbonbar is not coming.
Anu
-
I installed that redistributable package. But no use. its not working. Application is running but Ribbonbar is not coming.
Anu
-
Anu_Bala wrote:
But no use. its not working.
Then you will need to do some debugging to find out what is happening; it's impossible for us to guess.
Use the best guess
In my PC where visual studio 2008 installed , working fine.i can get ribbon bar also. But not in other pCs. So i installed Microsoft Visual C++ 2008 SP1 Redistributable Package (x86) and Microsoft Visual C++ 2008 Feature Pack Redistributable Package (x86) in that PCs. But its not working. IS there any particular DLL required for showing that ribbon bar?
Anu
-
Hi, I have created an application in visualstudio 2008 and i used MFC Featurepack CRibbonBar for designing menu bar. Its working fine in my PC. When i invoke that application in some other PC which doesnot have Visual studio, its not opening. I pasted mfc90d.dll ,mfc90ud.dll,mfcm90d.dll,mfcm90ud.dll,Microsoft.VC90.MFC.manifest in that application path. When i open the application,its opening but i cannot find the Ribbon menubar. Just the view window get enlarged and filled the screen. I think im missing some Dlls related to MFC Feature Pack. Please help me how to resolve this problem. I want to run this application in my Client PC.
Anu
You can find the missing dlls using Dependency Walker. This small tool proved itself to be really helpful.
Microsoft ... the only place where VARIANT_TRUE != true
-
Hi, I have created an application in visualstudio 2008 and i used MFC Featurepack CRibbonBar for designing menu bar. Its working fine in my PC. When i invoke that application in some other PC which doesnot have Visual studio, its not opening. I pasted mfc90d.dll ,mfc90ud.dll,mfcm90d.dll,mfcm90ud.dll,Microsoft.VC90.MFC.manifest in that application path. When i open the application,its opening but i cannot find the Ribbon menubar. Just the view window get enlarged and filled the screen. I think im missing some Dlls related to MFC Feature Pack. Please help me how to resolve this problem. I want to run this application in my Client PC.
Anu
Looks like you're trying to deploy the debug version of you application. The d in the names of the DLLs suggest this. The redistributable package you installed does not contain the debug DLLs. So you must try and deploy a release build.
«_Superman_» _I love work. It gives me something to do between weekends.