Tagged Questions
The afx tag has no wiki summary.
2
votes
2answers
959 views
Do I need afxres.h, if I am not using MFC? How do I remove it from the .RC script?
I don't know RC scripts.
I want to include Product version, File version, etc. metadata into a DLL I'm building. I'm using an .rc file to do that. The build is makefile driven. I'm following along ...
1
vote
2answers
571 views
Visual C++ 2008, errors while #include “afxdb.h”
I've got trouble using adxdb.h:
I tried to
#include "afxdb.h"
But I recieved this error:
C:\Program Files\Microsoft Visual Studio 9.0\VC\atlmfc\include\afx.h(24) : fatal error C1189: #error : ...
1
vote
1answer
1k views
Compiling MFC application with /clr (step1: linking against dynamic DLLs)
I have successfully upgraded an MFC application which was compiled with an old version of Developer Studio to Visual Studio 2008. A very small number of changes were needed because of some breaking ...
1
vote
4answers
150 views
What function was used to code these passwords in AFX?
I am trying to work out the format of a password file which is used by a LOGIN DLL of which the source cannot be found. The admin tool was written in AFX, so I hope that it perhaps gives a clue as to ...
0
votes
2answers
118 views
Using afx_msg in Qt with msvc2008 compiler
I'm working on a project in Qt with the msvc2008 compiler, as the title says.
The sample code, which I'm trying to work from makes use of afx_maps, and as far as I can tell (I don't really have a ...
0
votes
2answers
168 views
__targv is NULL in my MFC windows application. argc == 1
I have a windows application setup as follows:
Debug - builds an exe which statically links the libraries it uses
Release - builds an exe which links to a DLL
I've just created the release version, ...
0
votes
2answers
330 views
0
votes
2answers
159 views
What is private MFC and why are they not accessible through the normal interface?
I am using MFC for gui development and I stumbled upon a function that could be useful for what I'm trying to do. The function is _AfxCompareClassName. However, it is included in the file "afximpl.h" ...