0
votes
1answer
21 views
Howto Track down variable Corruption
I have a MFC class derived from CStdioFile declared as follows
// Datafile.h
class CDataFile : public CStdioFile
{
public:
CDataFile(void);
~CDataFile(void);
int OpenFile(L …
0
votes
1answer
21 views
Loop through MFC Child Dialogs, MDIFrames and etc
Hello,
Is there a way to loop through all MFC Child Dialogs, MDI frames and etc? And is there a way to find out which dialog or window I am looping through? Any answer would be ap …
1
vote
2answers
33 views
C# DllImport MFC Extension DLL & Name Mangling
I have a MFC extension DLL which I want to use in a C# application. The functions I'm exposing are C functions, i.e. I'm exporting them like this
extern "C"
{
__declspec(dllexpor …
0
votes
1answer
11 views
Anchor buttons in a dialog when using SW_MAXIMIZE
This should be a simple one:
I have a CDialog with 2 buttons.
The dialog is always opened in full screen (No title bar \ Status, etc...) using m_pMainWnd->ShowWindow(SW_MAXIMIZ …
0
votes
2answers
87 views
Problem statically linking MFC libraries
I have a Visual Studio 6 workspace I'm trying to convert to a Visual Studio 2008 solution. The output of said solution is a .dll. It has to be a .dll and it needs to statically l …
1
vote
3answers
51 views
Get text width in MFC
I'm wanting to dynamically resize a CButton to the width of the text within it. Is there either a built-in way to do this in MFC, or a way of calculating the pixel width of some sp …
1
vote
3answers
49 views
MFC multithreading problem with delete[] , dbgheap.c
Hi!
I've got a strange problem and really don't understand what's going on.
I made my application multithreaded using the MFC multithreadclasses.
Everything works well so far, b …
4
votes
3answers
126 views
Switching to WPF. Is it time?
I'm considering switching from MFC to WPF.
My first concern is that there are too many users who don't have .NET with WPF installed yet. Can anybody point to a source containing t …
1
vote
3answers
45 views
Error while reading files with native code on windows mobile
Hi all! I'm new here and my english is not really good. Apologize any inconvenience!
I'm programming an application for windows mobile with native code (MFC). I'm trying to open …
0
votes
4answers
53 views
How do I split a large MFC project into smaller projects
We have a large MFC/C++ Visual Studio 2005 solution which currently consists of two projects:
Code (around 1500 .h/.cpp files, linked dynamically to MFC)
Resource DLL (we transl …
0
votes
1answer
34 views
Displaying an EMF file
Hey guys!
Got a quick question about Windows EMF/EMF+ files. Reading the documentation, I realize that an EMF/EMF+ file is just a bunch of GDI/GDI+ commands. So what's the suppo …
2
votes
3answers
69 views
Crash within CString
Hi
I am observing a crash within my application and the call stack shows below
mfc42u!CString::AllocBeforeWrite+5
mfc42u!CString::operator=+22
No idea why this occuring. Th …
2
votes
6answers
192 views
C# for UI, c++ for library
I have a numerical library coded in C++.
I am going to make a UI for the library. I know some MFC. So one solution is to use MFC and make a native application.
The alternative i …
1
vote
3answers
44 views
MFC COM or ATL COM (ActiveX)
I have some MFC code (custom CWnd controls and some classes to expose) that I need to make into an activex / COM object with interfaces. Is it easier to make an ATL project with MF …
0
votes
2answers
23 views
MSHTML MFC Tutorial
Hi,
I know this has been asked twice before but both had no proper replies and are dated so in case someone has found something in these days, I'm asking again!.
Any one knows an …
