0
votes
0answers
34 views

What method to disable auto assign sequence id in ListControl

I meet a problem, listcontrol control item which view of property is report, the first column of listcontrol is be auto assign sequence id, for now I want to assign value in it by myself, but the ...
0
votes
1answer
81 views

Member Variable from one class to another

I am unable to resolve this error. Source1.h// it has Class CSystem static PvGenInteger *lIPAddressParam; Source2.cpp //it has Class MGUI CSystem :: ...
2
votes
2answers
253 views

Show progress bar while the shellexecute command executes batch file in MFC

What I am doing is executing a batch file through shellexecute command, now what I want is to show a progress bar or just a status as "In Progress" and disable all the other controls on the dialog. ...
1
vote
1answer
210 views

Toolbar - Depth Color for Icons

I wanna make a large toolbar with support of icons with more colors depth than default in Visual Studio. I am using Visual Studio 2005 and the Toolbar is on a CDialog. I used the Code found : here ...
0
votes
0answers
260 views

Program Crashes on call to ExecWB in call to Internet Explorer ActiveX Control

I have a Visual Studio 2005 Project with a 'Microsoft Web Browser Control' (in a CDialog). Our users frequently need to print the created html page - and that works perfectly with Ctrl+P. There is ...
0
votes
1answer
220 views

Access violation at exit of the application

I have a access violation at the exit of my MFC based VS 2005 C++ application. It uses MFC as a shared library and multibyte char set options. The call stack reveals the functions like ...
0
votes
1answer
317 views

How to set radio button active manually (by code)?

I have 2 radio button say r1 and r2.grouped together and made r1 group as true from property. I have made bool variable(vr) and attached with these radio button(DDX). Now from code i wrote vr =1 then ...
0
votes
2answers
258 views

Nice looking MFC listbox

I am looking an extended MFC listbox able to manage - icon and text - nice selection (vista style) Do you know a such component ?
-1
votes
1answer
188 views

CListCtrl and thumnail fails to draw

I use the folow code to create a thumbnail for list control HDC hDC=::GetDC(hWnd); HDC pDC=::CreateCompatibleDC(hDC); HBITMAP bm=::CreateCompatibleBitmap(hDC,THUMBNAIL_W,THUMBNAIL_H); HBITMAP ...
0
votes
1answer
226 views

Visual Studio 2005 + MFC: Linker error, cannot link with constructor even if exported

I have two MFC projects, an exe and a dll. The exe references the dll. I created the dll by extracting some classes from the exe project, which was my starting point. The dll builds ok now, but the ...
-2
votes
1answer
140 views

Flash movie not displayed on other PC

I am developing an application using C++ and MFC that shall display an swf file. I use Shockwave Flash Object control found in VS2005, set Movie property to C:\test.swf and it displays the movie fine ...
0
votes
1answer
274 views

Using MS ReportViewer with MFC

I support a legacy MFC C++ application (VS2005) and I want to call some SSRS reports (MS Reporting Services). I was hoping to use the MS Report Viewer control, but it only works with .Net. I’ve come ...
0
votes
1answer
227 views

Share Data Between One Member Variable and Several Controls w/DoDataExchange /Force Update Controls on All Windows

I have a VS 2005 C++ MFC project that contains several CDialog based windows. The program communicates with a custom piece of hardware and displays different readings on the different windows. The ...
1
vote
1answer
353 views

FileChooser onFocus of text box C++

I want to bypass the need for a button to invoke a FileChooser dialog in my application, so I'm setting it so that when the text box gains focus, the FileChooser just launches automatically. This is ...
1
vote
1answer
121 views

MFC resources Vista vs Win7 compatibility

Original app was developed with VS6 MFC for WinXP - then ported to VS 2005 Vista, and runs fine in Vista. However, when installed in Win7 the app runs without crashing but the UI is scrambled. ...
0
votes
1answer
478 views

Problems creating progress bar in Visual Studio using MFC

i'm trying to simply fill a progress bar, full when a check box is checked, and empty when the box is unchecked. there is an ONCLICK action for the check box, so i figured i would check the value ...
1
vote
2answers
199 views

Boost in an MFC app on NT4

I am trying to modify a current MFC application running on Windows NT4 to use boost libraries for ethernet communcications (originally, it used CommX for serial) and general increased performance, ...
0
votes
1answer
167 views

Mfc application building in defug mode but not in release mode?

Mfc application is showing following error when buil in release mode Error 152 error LNK2019: unresolved external symbol SHGetPathFromIDList referenced in function "public: class ATL::CStringT > > ...
0
votes
1answer
603 views

Compile errors (C4430 C2143 etc.) in VS2010 on Windows XP, not Windows 7

I am trying to convert my MFC project created with VS2005 to VS2010. When I try to compile the project on my laptop (Windows 7 x64), it runs without any problems with VS2010, but the other computer ...
0
votes
1answer
73 views

Different versions in manifest on different machines

Have two machines, both with VS2005 SP1 installed and with the WinSXS showing the same things installed. When one machine builds a particular C++ .dll .vcproj it ends up with <assemblyIdentity ...
1
vote
1answer
2k views

Working with ListView in C++

I got a stupid question on ListView Control usage. I created a Windows Form App in VS2005. No I dragged a ListView Control from the toolbox. I want to implement my code to show some content(including ...
0
votes
1answer
3k views

error RC2175 : resource file res\icon3.bmp is not in 3.00 format?

HI, what does this mean, and how to resolve it? error RC2175 : resource file res\icon3.bmp is not in 3.00 format
0
votes
1answer
184 views

copy a whole application to new application visual C++ MFC/Smart Device?

I am using Visual studio 2005 for my development. I am doing a smart device application using Visual C++ MFC. I had an application runnning perfectly on a device with ARMV4, till recently we receive ...
0
votes
2answers
875 views

Creating a shared MFC Dialog: Regular DLL or MFC extension DLL

When creating a MFC DLL project in VC++ 2005, you get a screen "application settings" with a choice of Regular DLL with static/dynamic MFC, or an MFC Extension DLL. We want a DLL that contains a few ...
0
votes
1answer
144 views

What are these odd files added to my Visual Studio MFC project?

I have a visual studio solution where one of the projects has somehow acquired several .bin files. They are named bin00001.bin, bin00002.bin, etc... and contains some kind of registry information. The ...
0
votes
1answer
82 views

What class/control is used when you place a Picture in a MSVC++ dialog template?

I've not been able to find this out, which seems weird. When I add a class variable for the control using the wizard, it wants to add a CButton. Is there a specific control or does one of the basic ...
0
votes
1answer
225 views

MFC: CCheckListBox items overlap

In a dialog template I placed a ListBox, since checked list box is not shown in the visual layout options. I set it to owner-draw and set it up with DDX, changing the associated class variable from ...
1
vote
3answers
2k views

Migrating a big project in MFC from Visual C++ 6.0 to Visual Studio 2005

I am maintaining a big project (~250k loc, not counting code generated from idl) in Visual C++ 6.0, that uses Visibroker (VB for short) 5.2.1 (which is a CORBA implementation from Borland). Recently, ...
0
votes
1answer
666 views

Positioning the dialog box in the centre of the screen

I have a dialog box developed in mfc for a Windows CE device and want it to occupy the entire screen. I used the following code to center my dialog box on the lcd screen of the device: CWnd* pWnd = ...
0
votes
1answer
350 views

'Generating code' and stop in building release mode (Visual Studio 2005 )

I have a problem about release build I'm using Visual Studio 2005. The project is worked on MFC When I build the project what I working in debug mode, It builds done successfully. but in release ...
0
votes
1answer
2k views

How to enable or disable node in CTreeCtrl in MFC?

I have searched through internet & found that there are no any direct method that disable nodes of CTreeCtrl control. check one post at http://www.ucancode.net/faq/MFC_CTreeCtrl-CListCtrl.htm ...
4
votes
5answers
975 views

OpenGL suppresses exceptions in MFC dialog-based application

I have an MFC-driven dialog-based application created with MSVS2005. Here is my problem step by step. I have button on my dialog and corresponding click-handler with code like this: int* i = 0; *i = ...
3
votes
4answers
576 views

Debugger ignores errors in dynamically loaded DLLs

I have a very strange problem related to debugging of self-coded DLLs. I have an MFC-driven dialog-based application, several projects linked statically and several DLL-projects which are loaded at ...
0
votes
1answer
251 views

What is CString::StringTraits? What is it for? There seems to be no documentation

Using Visual Studio 2005 As per the title; MSDN and google can't tell me, I'm hoping it'll let me know if the contained string contains Unicode characters or not - but that's a different problem!
2
votes
3answers
2k views

Why do my radio buttons not work?

I'm working on an MFC dialog application in Visual C++ 2005. My radio buttons are m_Small, m_Medium, and m_Large. None of them display what they are supposed to in my m_Summary edit box. What could be ...
0
votes
2answers
1k views

Need help adding scroll bar to edit box

I'm making an MFC dialog-based application in Visual C++ 2005. I added a scroll bar to an edit box. How do I program the scroll bar to make it work?
0
votes
1answer
770 views

Having trouble enabling verticle scrolling in edit box

I'm using Visual Studio 2005 and programming a dialog-based MFC application in C++. I have an edit box and I'm trying to make it auto-scroll. When I make auto vscroll true, it still won't auto-scroll ...
5
votes
2answers
2k views

MFC: Why does my spin control work backwards

Using MS Visual Studio, I have attached a spin control to an edit control using the "auto buddy" property. The spin control alters the edit box, but the up button decrements the value and the down ...
0
votes
2answers
532 views

Removing a control in Visual C++ 2005 (MFC)

I have a MFC dialog in Visual C++ 2005, (MFC Application) and I have added several controls to it. But Visual Studio has no option for deleting a control if I no longer need it. Is there any easy way ...
0
votes
2answers
1k views

VS2005 C++ compiler problem including <comdef.h> in MFC application

I am having some trouble converting an old project from VS6 to VS2005. At one place in the code it uses the type variant_t so it includes comdef.h for this purpose. comdef.h then includes comutil.h ...
1
vote
2answers
2k views

Linker error after porting C++ application from VC6 to VS2005

I am getting an error while porting my application from VC6 to Visual Studio 2005. Does anyone have any idea what this means? mfcs80.lib(dllmodul.obj) : error LNK2005: _DllMain@12 already ...
2
votes
1answer
298 views

VS2005 Resource Editor Keeps Eating my #ifdef's

The resource editor keeps wiping out code of this form in my .rc: #ifndef V2 IDB_SPLASHSCREEN BITMAP "res\\xyz v1.bmp" #else IDB_SPLASHSCREEN BITMAP ...
1
vote
2answers
4k views

How to make the group-box text background transparent

I want to make a transparent dialog. I capture the OnCtlColor message in a CDialog derived class...this is the code: HBRUSH CMyDialog::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) { HBRUSH ...
3
votes
8answers
12k views

Visual Studio 2008 Express MFC Support

As may be known by many, the Express versions of Visual Studio 2008 don't include support for MFC and a few other packages required to compile a lot of windows programs. So, here's my problem: I ...