0
votes
2answers
17 views
MFC problem to copy binary file.
I want to copy a binary master file in a new binary file. This file contain nothing but have a predefined size (20000 lines).
Here what i'm doing:
FILE *A_Lire;
FILE *A …
0
votes
2answers
45 views
How to convert _bstr_t to CString
I have a _bstr_t variable bstrErr and I am having a CString variable csError. How do I set the value which come in bstrErr to csError?
0
votes
1answer
39 views
MFC List Control
In MFC, I can edit the text of items in the list control but only for the first column by setting the Edit Labels to true. Now when I click the first column item to change its text …
0
votes
1answer
31 views
Is it possible to set the DPI of an application programatically?
Is it possible to set the DPI of an application programmatically or the DPI only possible to set through the system preference?
Note: My application's GUI is coded in MFC and .NE …
2
votes
5answers
77 views
Is Winforms accessible from unmanaged C++?
Some classic Windows/C++ applications can't easily be moved to managed C++.net, due to use of external libraries. Is it feasible to use newer GUI libraries like winforms (or even W …
1
vote
2answers
52 views
MFC without document/view architecture
I'd like some help on using MFC without the document/view architecture.
If I create a project without doc/view support, I'm left with a CFrameWnd and a view that inherits from CWn …
1
vote
1answer
36 views
COleDataSource/COleDropTarget cancel drag&drop operation
I have implemented my custom drag&drop by deriving from COleDataSource and COleDropTarget. Everythings work fine but I have an scenario that makes the application crashes.
Tha …
4
votes
4answers
103 views
How to create a MFC dialog with a progress bar in a separate thread?
My application may take a while to connect to a database. This connection is made with a single library function call, i.e. I cannot put progress updates in there and make callback …
0
votes
7answers
179 views
Polished UI Desktop Application, which UI library to choose?
I am a long time MFC programmer and know it quite well. Recently we are planning for a large desktop application. In order to beat competition, one requirement is polished UI. We n …
3
votes
1answer
33 views
Best way to port MFC COM Server to Managed code
Hi all,
I am working on an application suite comprising of multiple Automation servers written using MFC and this is legacy code. These apps inter communicate via COM interfaces a …
5
votes
3answers
136 views
Call a JavaScript function from C++
Hello,
I have a CDHTMLDialog, with which I have 2 HTML pages and a .js file with a few fairly simple functions.
I would like to be able to call one of the JS functions from my pr …
0
votes
2answers
37 views
visual studio 2008 MFC linker error
hi
i start a mfc application with a dialog window i debug it (nothing added) and i give me an linker error
i run it on release mod and it worked
my OS is windows 7
what shou …
0
votes
1answer
12 views
MFC DLL loading issue in Winmo
Hi,
i have created an MFC DLL for windows mobile..
i have exposed only a function in MFC DLL... if i try to load DLL in c#,in debug mode it is telling Remote connection lost mess …
0
votes
3answers
23 views
What message should my MFC dialog control receive before I can modify it?
I have a custom MFC dialog CMyDialog, with a custom control of type CMyControl added using the resource editor - the dialog has a member variable for the control and has DDX set up …
0
votes
2answers
25 views
CWnd::CreateDlgIndirect leaves m_hWnd==NULL
A dialog I'm working on isn't displaying, using:
CWnd::CreateDlgIndirect(LPCDLGTEMPLATE lpDialogTemplate,CWnd* pParentWnd, HINSTANCE hInst)
The call to CreateDlgIndirect is in a …
