Tagged Questions
0
votes
2answers
57 views
Can I suspend a process except one thread?
I'm going to suspend(or pause) a process except one thread.
I've tried to use SuspendThread(Api Function) and the result is process thread was became non-responsable status.
This is not what I ...
0
votes
0answers
34 views
Not able to call exported virtual function
I have a MyApi.dll with exported class Base with a pure virtual function.Also I have
a derived class having implementation of the virtual function in the same dll.
Factory function returns a derived ...
0
votes
1answer
34 views
Load Dll without execute dllmain function
I want to load special dll without execute dllmain function.
I think, set a breakpoint at dllmain can solve this problem.
But I don't know How can I do?
Also I want call dll's export function.
I ...
1
vote
1answer
78 views
Two applications(*.exe) using same data pointers from data DLL?
I have a huge program (A) which uses about 30 (most of my own, some 3rd party) dll´s. It uses ActiveX, ATL and MFC to do different stuff. Now i want to use wxWidgets for some special tasks and will ...
0
votes
3answers
86 views
about mfc dll and compatibility [closed]
Is the mfc dll actually installed by default in win xp/windows 7/windows 8? or it requires to download msvc package? I need to check somehow is there mfc dll in the system.
3
votes
2answers
74 views
Use a C++/CLI DLL using afxwinforms.h as Reference of another C++/CLI DLL also using afxwinforms.h
In Visual C++ 2010 i added a reference from a C++/CLI DLL (ControlWrapper.dll) to another C++/CLI DLL (CliLibrary.dll).
Both are including afxwinforms.h in the stdafx.h.
When i try to compile i get ...
0
votes
2answers
90 views
First-chance exception during loading dll files in VS2010
I am using MFC in Visual Studio 2010. I am modifying a code done by someone else. VS2010 loads some files, but on loading the last dll file i am getting
First-chance exception: Microsoft C++ ...
0
votes
0answers
85 views
Unable to load my Qt DLL(with gui) in my MFC app
i followed the method mentioned in this link and created the following: https://ccplz.net/threads/building-a-qt-dll-with-gui.44178/
In my QT Appication call Iapp, i set the necessary configuration ...
2
votes
1answer
143 views
How to add Classes that use MFC to an ATL project?
I'm writing a .NET profiler (a DLL) and I'm using ATL. I'd like to add some classes that use MFC to my project but I got many errors however those classes work fine with an MFC project. I tried to ...
1
vote
2answers
53 views
Can anyone explain the DYNAMIC_CLASSes in a few terms?
I've been developing for some time. And these beasts appear from time to time in MFC, wxWidgets code, and yet I can't find any info on what they do exactly.
As I understand, they appeared before ...
0
votes
2answers
86 views
Where do I implement my MFC DLL functions?
I have been searching google all morning and all I can't find what I'm looking for. I'm creating a regular DLL in Visual Studio modified for MFC. That is to say that in the project wizard, I ...
0
votes
1answer
213 views
VS2010 C++ MFC Multiple project sollution override automatic linking of dll project
I have an MFC solution with 17 sub-projects. I just recently added another dll project and cannot get the executable to link to the renamed version of the library. In the settings for the dll ...
5
votes
1answer
90 views
Recompiling MFC Extension DLL changes entry points of exported functions
I have an MFC Extension DLL which exports a C++ class, and I need to modify the behavior of a class method. The changes don’t affect the signature of methods of the class.
I don't want to recompile ...
0
votes
0answers
117 views
MFC Win32 application + application verifier - virtual reservation leaked
I'm trying to analyse my Win32 application using Application Verifier. I checked all of the categories under Basic. So in the following code,
// Function which unloads the DLL
int unloadDLL()
{
...
0
votes
0answers
63 views
AfxFreelibrary function - Debug assertion in windows 8
Its strange or may be my fault of coding please provide me any solution related to this.
I have developed one windows based application(VC++ MFC document-view architecture) in visual studio 2003. In ...
0
votes
2answers
95 views
MFC app to Linux dll
Currently we have a legacy client/server system written in MFC(server) and Java(client). This system cant not run on Internet because of various reason. So, we are developing a small system (very few ...
0
votes
1answer
75 views
How to use mfc in de dll using def file
I'm writing a plugin for a musicplayer named MusicBee.
I got one problem writing it. I must use mfc for a lot of thinks. Such as hbitmap, special timers and other stuff. But every time I change "Use ...
2
votes
1answer
206 views
Can we call FreeLibrary from ExitInstance
From the MSDN document, we can see that, we should not call LoadLibrary/FreeLibrary in the DllMain entry point function.
The entry-point function should perform only simple initialization or
...
2
votes
2answers
240 views
AfxLoadLibrary vs. LoadLibrary
I have an MFC application that needs to load a DLL dynamically. The DLL will be used to retrieve a run-time value and then be unloaded. Do I need to create an MFC DLL and load it via ...
0
votes
1answer
70 views
MFC DLL library conversion to Web API Services
We have a large MFC library in a DLL that exposes an API to our .net application to any other .net applications running on the same server. We would like to migrate all of the API calls to Web API ...
3
votes
1answer
153 views
Problems creating a unmanged regular MFC DLL and call it from an managed C++ .NET app
I have a few questions about DLL's. I tried a lot but I can not get the complete picture. Most examples are in C# etc.
With the wizard in VS2005 I created a unmanaged MFC regular DLL (must be MFC ...
0
votes
1answer
128 views
Displaying a dialog resource from a different DLL in MFC application
I have a Win32 resource DLL (No MFC), which has a dialog in it.
I can load the Win32 dll using LoadLibrary from the MFC application.
After loading the DLL, how do I bring up the dialog to show it to ...
0
votes
0answers
101 views
How to shutdown DLL with user-interface threads?
I have made a DLL with a function that opens a non-modal window.
class CMainFrame : public CFrameWnd
{
protected:
CMainFrame() {}
DECLARE_DYNCREATE(CMainFrame)
public:
virtual void ...
0
votes
0answers
151 views
How to add 3rd party ActiveX Control in MFC extension DLL
I am trying to export a MFC extension DLL from a FormView. When just using MFC controls, everything seems fine and the generated DLL can be generated and loaded successfully. But after I added a 3rd ...
0
votes
1answer
133 views
fixing a memory leak in a windows dll
Inherited some code that looks like c++ or .Net? This is not in my wheelhouse. Anyway it has a memory leak by using heap memory and then reassigning local memory over and over:
CPTRecord* pRec = ...
0
votes
3answers
223 views
Using MFC90 Class exported from DLL with DLL built with MFC100
Please forgive me if this question has been asked before, but I promise I looked extensively and could not find anything (maybe I just couldn't come up with the right search terms).
Here's the ...
0
votes
2answers
238 views
Can't import a .tlb to my DLL
I am creating a C++ MFC DLL based on a third party SDK in Visual Studio 2008. The SDK provides a TLB folder, a Lib folder (.lib only), an Include folder (.h and .hpp only) and a Bin folder (some exes, ...
0
votes
3answers
181 views
Unable to export functions from C++ DLL
I need to create a C++ MFC DLL using Visual Studio 2008. To do this I created a DLL MFC Win32 Console project in Visual Studio and made a function that creates an object and uses its method to print a ...
0
votes
0answers
85 views
MFC hangs while loading if dllimport function called
I have an MFC application, "Analyser", which uses a Dll with resources.
There is a function to get an instance of the Dialog contained in the dll called GetCriteriaDlg.
My dll file:
extern "C" ...
0
votes
0answers
102 views
LoadLibrary in Configuration: Release Win32
I have a problem while building my solution in release mode, my project use MFC in a Shared DLL
the problem is that my code is loading the Dll in debug mode, but when I tried to run in release mode ...
2
votes
2answers
153 views
How to impose dll files in the current directory?
This application uses msado15.dll, msvcr100.dll and many dlls.
I found out that the application does NOT load msado15.dll and msvcr100.dll files in the current directory using ProcessExplorer and ...
1
vote
1answer
77 views
Which Windows dll will I find afxwin/CFrameWnd in?
I am trying to dynamically load some of the functionality from afxwin but I'm not sure of the name of the DLL I need.
Thanks
EDIT: The class I am looking for specifically is CFrameWnd
2
votes
2answers
648 views
MFC extension dll resources loading problems
I have built the folowing configuration:
A) MFC Extension DLL having 2 MFC dialogs.
B) MFC regular dll that uses DLL A functions.
C) win32 application (NON MFC) calling for function from DLL B
...
2
votes
2answers
115 views
CRichEditCtrl not working properly in shared dll written using MFC?
I am writing a DLL written in MFC to be used by other application.
project settings:
1. Use MFC in static library
2. preprocessor : AFXDLL
3. MD Build
I have also used AFX_MANAGE_STATE ...
0
votes
2answers
474 views
Using a Dialog Box in a c++ dll project
I want to add a dialog box to a c++ dll application. First of all I would like to know if this is possible and afterwards how can I do the project compile.
When I set in the configurations "using MFC ...
0
votes
1answer
176 views
YouTube downloader using MFC
I'm creating a YouTube downloader type application in MFC.
I have a textbox, and add button and a CListCtrl. My problem is how to add the textbox URL in the CListCtrl when clicking on the add ...
0
votes
1answer
570 views
mfc modeless dialog in dll destroyed when thread exit
I want to open a MFC modeless dialog from a MFC dll injected into another process, the dll's job is to hook the winsock send & recv, and the dialog will be the interface to communicate with the ...
1
vote
2answers
219 views
MFC .exe and .dll produce different resuls for same code [closed]
I faced following issue with my work: having two projects: MFC .dll and MFC .exe based on same source code (except entry points of course), I observe different results produced by them when processing ...
3
votes
1answer
796 views
In MFC DLL Why do I must declare theApp using “CWinApp theApp;”?
In MFC DLL Why do I have to declare theApp using “CWinApp theApp;”,or else it will occur runtime exception. When theApp was instantiated?
1
vote
1answer
204 views
ShowWindow not working from a DLL on a 64-bit OS?
I have a process that calls SetWindowsHook to catch keyboard events. In the DLL that processes the events, I conditionally call ShowWindow on the handle of the window of the process who set the hook.
...
0
votes
0answers
305 views
Problems with COM dll and ActiveX
I'm having a problem which I can't seem to find a solution to, and since I'm not much of a COM expert (learned the basics by myself over the last month or so), I thought I'd ask around to see if there ...
0
votes
1answer
172 views
Pantheios not logging into one file with MFC app comprise (one exe + two DLLs)
I have got an MFC app comprised of one exe and two DLLs. The exe calls fucntions from those two DLLs. Now I am trying to add some logging by using the Pantheios logging lib.
What I want to achieve:
...
0
votes
2answers
370 views
Create dll from existing mfc project
I have a MFC project which contains many project inside. now i want to make a dll file of this project can anyone provide information how to create dll from existing mfc project ?
EDIT
I have tried ...
0
votes
2answers
230 views
Multiple DLL Resource Management
I have an existing MFC product and am planning on supporting a couple of other national languages thru the use of resource-only DLLs. I've read a number of articles and tutorials on how to go about ...
0
votes
1answer
395 views
convert “MFC Extension DLL” into “Regular DLL with MFC statically linked” in a hurry
I got the VC++ source code of a dll for a USB device project, which the deadline is close. Right now I have to call this usb dll from another VB program. But the source code is based on the template ...
0
votes
2answers
479 views
How to load resource from exe rather than dll
I am loading a satellite dll which holds language resources. However I only want to store strings in the dll and not the dialog resources. I load the dll as below:
hInst = LoadLibrary( ...
0
votes
1answer
230 views
Unload dll files from a MFC Program
I have a MFC program that even I close the program it does not get away and still shown in the task manager. When I look at the call stack I saw that some dll files are only loaded but not unloaded.
...
0
votes
1answer
75 views
Creating installer for ATL Dll
I have created a ATL Dll to be invoked by the javascript code based on this advice
Now i need to create a setup project and signing it with digital certificate. I used the utility makecab.exe with ...
0
votes
1answer
236 views
How to make empty mfc dll project?
I have source code for existing mfc dll.
I want to create empty dll ptroject so that i can include all the source code there and modify existing dll.
Whenever i try to create mfc dll project it ...
3
votes
3answers
858 views
MFC state invalid when DLL called through LoadLibrary
i'm fighting with MFC and dynamicly linking DLLs with LoadLibrary. It seems that I cannot get the MFC state right when the app calls DLL, and the DLL calls back in the same call. Ultimately, it leads ...

