9,867,109 members (39,901 online)
Visit CodeProject.TV
Discuss CodeProject.TV
Sign in
Email
Password
Forgot your password?
Sign in using
home
articles
Chapters and Sections
>
Search
Latest Articles
Latest Tips/Tricks
Top Articles
Beginner Articles
Technical Blogs
Posting/Update Guidelines
Article Help Forum
Article Competition
Submit an article or tip
Post your Blog
quick answers
Ask a Question
View Unanswered Questions
View All Questions...
C# questions
ASP.NET questions
VB.NET questions
C#4.0 questions
C++ questions
discussions
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work & Training Issues
Design and Architecture
ASP.NET
JavaScript
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
Adobe Technologies
C#
Free Tools
Objective-C
Ruby On Rails
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
.NET Framework
Mobile
VS 11 & .NET 4.5
Sharepoint
Silverlight / WPF
Visual Basic
Web Development
Site Bugs / Suggestions
features
Component & Service Catalog
Competitions
News
The Insider Newsletter
Newsletter archive
Surveys
Product Showcase
Research Library
CodeProject Stuff
community
The Insider News
The Lounge
The Weird & The Wonderful
The Soapbox
Press Releases
Who's Who
Most Valuable Professionals
Company Listings
Non-English Language
>
General Indian Topics
General Chinese Topics
help
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
Site Map
Advertise with us
Employment Opportunities
About Us
The default search term operator is
AND
.
You can use brackets,
AND
,
OR
, and
NOT
to improve your search. For example:
C# AND NOT(VB or SQL)
A query of a single
*
will return everything, filtered by any filters.
Filter examples:
Search by Author
author:"author name"
Filter by tag
tag:C#
or
tag:(C++ or Java)
Wildcard search
use "?" or "*" eg.
gr?d
or
gr*
10,158 Results
Search
Everything
Articles
Technical Blogs
Tips & Tricks
Questions
Answers
Forum Messages
News Items
Catalog Items
Videos
Training Courses
Just My Stuff
My Bookmarks
Sort by
Relevance
Rating Asc
Rating Desc
Title Asc
Title Desc
Author Asc
Author Desc
Date Created Asc
Date Created Desc
Date Modified Asc
Date Modified Desc
Price Asc
Price Desc
Duration Asc
Duration Desc
Match
All Fields
Title
Description
Author(s)
Tags
Any Date
Last 12 hours
Last 24 hours
Last week
Last 2 weeks
Last month
Last 3 months
Last 6 months
Last year
January
February
March
April
May
June
July
August
September
October
November
December
Rating Range
All - Including Unrated
1.0 - 5.0
2.0 - 5.0
3.0 - 5.0
4.0 - 5.0
4.5 - 5.0
4.8 - 5.0
5.0
Advanced Filters:
Article Topics
All Topics
Desktop Development
Web Development
Mobile Development
Cloud Computing
Enterprise Systems
Database
Multimedia
Languages
Platforms, Frameworks & Libraries
General Programming
Graphics / Design
Development Lifecycle
General Reading
Third Party Products
Mentor Resources
Article License
All Licenses
CPOL
CDDL
Ms-PL
MPL
CPL
Eclipse
MIT
BSD
Apache
CC (ASA 2.5)
Zlib
Public Domain
CC (Attr 3U)
CC (ASA 3U)
LGPL3
GPL3
Forums
All Forums
Feature Forums
General Programming
Web Development
Product Lifecycle
Database & SysAdmin
General Discussions
Non-English Language
Catalog Category
All Categories
Books & Training
Charting & Graphing
Components, Controls, Libraries
Data Manipulation & Mining
Database Tools
Debugging
Documentation & Help
Financial, Math & Scientific
Frameworks & APIs
General Development Tools
GIS & Maps
Graphics & 3D Modeling
Hardware and Robotics
Hosting
IDEs
Imaging
Mobility
Multimedia
Networking
Performance and Profiling
Programming Languages
Project Life-cycle Management (ALM)
Reporting
Search
Security
Setup & Deploy
System Adminstration
Utilities
Virtualization
Web Design/Development
Catalog License
All Licenses
Commercial
Fully Function Evaluation version
Limited Functionality Trial
Limited Time Trial
Shareware
Free For Personal Use
Freeware
Page 1 of 204
Page Size:
10
·
25
·
50
Tag filtered by: MFC
[x]
Application deployment Error
by
Jochen Arndt
Answer
13 May 2013
license:
CPOL
The 'd' as last character of the file name indicates that it is a debug DLL. You are probably trying to install a debug version of your application. You should provide a release version with your setup.
General Programming
»
Uncategorised Quick Answers
»
General
MFC
Visual-Studio
VS2010
Application deployment Error
by
Richard MacCutchan
Answer
13 May 2013
license:
CPOL
See http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/3c9a5b9b-1a7d-4d86-bc82-85652448e0c9[^].
General Programming
»
Uncategorised Quick Answers
»
General
MFC
Visual-Studio
VS2010
Application deployment Error
by
SNI
Question
13 May 2013
license:
CPOL
Hi,I have an application developed in VS2010 and I have created the setup for it. but when I installed and run my application on other m/c where there is no VS2010 installed it gives me following error. "msvcr100d.dll is either not registered to run on Windows or it contains an error. Try...
General Programming
»
Uncategorised Quick Answers
»
General
MFC
Visual-Studio
VS2010
How to render the drawings in the playing video dynamically using directshow?
by
J.Surjith Kumar
Question
13 May 2013
license:
CPOL
I am creating the video player in that i need to render the drawings (Ex: line, circle, rectangle etc.,) dynamically. So i am using GDI+ to draw the shapes and to render the drawings IVMRMixerBitmap9::SetAlphaBitmap(&VMR9AlphaBitmap) function is used to render the drawings in the vmr9 renderer....
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
directshow
VC++
CMFCToolbar: use Customized bitmap(HBITMAP ) runtime
by
KarstenK
Answer
13 May 2013
license:
CPOL
step into the code and you will see, that the bitmap is attached to the toolbar, so you cant change it. So you need another toolbar.I have done that in the old XP-times and it worked fine.
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
Bitmap
How to draw the picture from 2D Array in MFC?
by
Iain Clarke, Warrior Programmer
Answer
13 May 2013
license:
CPOL
Have a look at SetDIBitsToDevice Win32 function:http://msdn.microsoft.com/en-us/library/windows/desktop/dd162974(v=vs.85).aspxIt's a very old one, and one I used to do the same job you are doing - I had a 2d array of 8bit signal strength, and that mapped to a pallette of colours. In your...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
MFC
C++
How to draw the picture from 2D Array in MFC?
by
Rajeshkumar Ramasamy
Question
13 May 2013
license:
CPOL
Hii want to generate in VC++ an image (Bitmap) from a 2D array of numerical value Array[1024][1024] that each value is a gray level from 0 to 255. is there any VC++ function to do this?Thanks in Advance.
General Programming
»
Uncategorised Quick Answers
»
General
VC6
MFC
C++
CMFCToolbar: use Customized bitmap(HBITMAP ) runtime
by
KarstenK
Answer
13 May 2013
license:
CPOL
use need to use DIFFERENT toolbars with the actual bitmap. Whether you create a new one and delete the old, or create an array is your choice.
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
Bitmap
CMFCToolbar: use Customized bitmap(HBITMAP ) runtime
by
iDebD
Question
13 May 2013
license:
CPOL
//CMFCToolBar m_wndToolBar;if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) || !m_wndToolBar.LoadToolBar(theApp.m_bHiColorIcons ? IDR_MAINFRAME_256 : IDR_MAINFRAME)) { TRACE0("Failed...
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
Bitmap
Learn multithreading in C++
by
CPallini
Answer
13 May 2013
license:
CPOL
Did you try Google[^]?
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
Learn multithreading in C++
by
LaxmikantYadav
Answer
13 May 2013
license:
CPOL
http://msdn.microsoft.com/en-I...
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
Learn multithreading in C++
by
MuraliChagarlamudi
Question
13 May 2013
license:
CPOL
Want to learn multithreading in C++ or MFC . I am new to multithreading. Can any one let me know how to learn multithreading . Any help appreciated . Thx in advance .
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
pImage->LoadFrame(..) crashing when replaced custom Toolbar.bmp in MDI application
by
iDebD
Question
12 May 2013
license:
CPOL
CMDIFrameWnd* pFrame = new CMainFrame;if (!pFrame) return FALSE;m_pMainWnd = pFrame;// create main MDI frame windowif (!pFrame->LoadFrame(IDR_MAINFRAME)) return FALSE;I have created MDI application which has one toolbar (With 5 buttons, coming through a Toolbar.bmp...
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
Toolbar
Bitmap
IncrediBuild
by
Xoreax Software Ltd.
Catalog
11 May 2013
license:
Limited Time Trial
IncrediBuild is an easy-to-use platform for accelerating Windows-based processes through advanced Grid Computing technology. IncrediBuild speeds up Visual Studio and make based code builds as well as data builds, scripts and applications.
General Development Tools
VC6
VC7
VC7.1
VC8.0
.NET1.0
.NET1.1
.NET2.0
Win2K
WinXP
Win2003
, +
Some help and tip for MFC project!!
by
Ian A Davidson
Answer
10 May 2013
license:
CPOL
Does it have to be C++? How about C#? Since you would have to "learn MFC", I can't see it would be much harder to "learn .NET", and you'll find it a lot easier and quicker to produce a decent application :)Regards,Ian.
General Programming
»
Uncategorised Quick Answers
»
General
MFC
Some help and tip for MFC project!!
by
Richard MacCutchan
Answer
10 May 2013
license:
CPOL
Until you are comfortable with both C/C++ and MFC there is not much point suggesting anything. MFC contains many tools that will help you display your data in different formats, but they all have a learning curve even for experienced windows programmers. You may want to read some of the MFC...
General Programming
»
Uncategorised Quick Answers
»
General
MFC
Some help and tip for MFC project!!
by
king.krylon
Question
10 May 2013
license:
CPOL
hi guys,i never knew i would work with MFC. big regrets on why i didn't study mfc.anyway, i have a prj to do. and i am getting no where.need some advice to start up.need to make a program that pops up a graph from opend csv files.i am stuck on what to choose when making a...
General Programming
»
Uncategorised Quick Answers
»
General
MFC
Extended CComboBox
by
Flaviu2
Article
10 May 2013
license:
CPOL
A combobox control which shows a drop down window to assist user
Desktop Development
»
Combo & List Boxes
»
Extending The List Control
VC6
C++
Windows
MFC
Beginner
C++
Tree ComboBox Control
by
Flaviu2
Article
9 May 2013
license:
CPOL
Tree ComboBox Control
Desktop Development
»
Combo & List Boxes
»
General
VC6
Windows
MFC
Beginner
C++
WLAN scan AP and connect it
by
liutao2075
Question
9 May 2013
license:
CPOL
hello,WLAN scan AP and connect it in MFC.Does anyone has experenice.
General Programming
»
Uncategorised Quick Answers
»
General
MFC
wlan
Visualizing the Mandelbrot set
by
Andy Bantly
Article
9 May 2013
license:
GPL3
Visualizing the Mandelbrot set using multiple threads of execution.
General Programming
»
Algorithms & Recipes
»
Computational Geometry
C++
Windows
MFC
Intermediate
Algorithms
how to use ReadPrivateProfileString.
by
Ian A Davidson
Answer
9 May 2013
license:
CPOL
Hi Uday,First of all, as far as I'm aware there is no such function as ReadPrivateProfileString. The function is GetPrivateProfileString.Secondly, both that function and WritePrivateProfileString, as MSDN says, are "provided only for compatibility with 16-bit Windows-based applications." ...
General Programming
»
Uncategorised Quick Answers
»
General
C++/CLI
MFC
VC++
how to use ReadPrivateProfileString.
by
CPallini
Answer
9 May 2013
license:
CPOL
You may find many articles about, here at CodeProject[^]
General Programming
»
Uncategorised Quick Answers
»
General
C++/CLI
MFC
VC++
how to use ReadPrivateProfileString.
by
p.uday kishore
Question
9 May 2013
license:
CPOL
I need to save some data from a dialog like height and width but i don't know to how to do it using ReadPrivateProfileString and writePrivateProfileString.can i get any example regarding this or any article how to save the settings in INI file.Regards,Uday.
General Programming
»
Uncategorised Quick Answers
»
General
C++/CLI
MFC
VC++
How to fill the body of an email
by
Rocky_Bas
Question
8 May 2013
license:
CPOL
Hello,I would like add the data to the body of the email automatically using my MFC application.I was able to do it for outlook.But i want to do the same kind of scenario for other mails.When i click on send mail in my application then the data should be filled in the body of the gmail or...
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
VC++
A set of MFC wrapper classes for ADO - Version 2.20J
by
Joffrey Brouillet
Article
8 May 2013
license:
Ms-PL
This is an alternative for "A set of ADO classes - version 2.20"
Database
»
Database
»
Ado
VC6
Win2K
SQL
SQL-Server
MFC
DBA
Dev
ADO
Intermediate
C++
, +
Using WPF in MFC application
by
Sergey Alexandrovich Kryukov
Answer
8 May 2013
license:
CPOL
This would be so difficult that getting rid of MFC completely would be much easy, no matter how much UI you might have. And remember that you also would need to maintain it. In principle, I can explain what could be involved, but better don't make me going into it. This is extremely difficult,...
General Programming
»
Uncategorised Quick Answers
»
General
MFC
UI
Using WPF in MFC application
by
SNI
Question
8 May 2013
license:
CPOL
I have an application which is developing in VC++ in VS2010. I need to match up the UI of Android look and feel i.e. it shd be rich. But with VC++ I am facing limitation of rich UI. i search for it and found out that we can host WPF in MFC application to get rich UI. I would like to know is it...
General Programming
»
Uncategorised Quick Answers
»
General
MFC
UI
how to get the running status of my executable
by
Andrew Cherednik
Answer
7 May 2013
license:
CPOL
If first.exe is your program that you have developed and can freely modify, you could use Mutex. You would create a Named Mutex in your first.exe and check periodically for this mutex in your second.exe.Otherwise, you need to use CreateToolhelp32Snapshot API. Here is a small example. ...
General Programming
»
Uncategorised Quick Answers
»
General
MFC
VC++
how to get the running status of my executable
by
KManishS
Question
7 May 2013
license:
CPOL
Actually i have two executable. if first one is breaked, some indication is to be shown in the second executable like red button and if first one is running, it shows green button in the second exe. how it will be possible to get the running status of my executable.
General Programming
»
Uncategorised Quick Answers
»
General
MFC
VC++
Hosting Windows Forms User Control in MFC Dialogs
by
AYDIN EBRAHIMI HOMAY
Tip/Trick
7 May 2013
license:
CPOL
This tip/trick discusses about hosting a Windows Form user control in an MFC dialog box and View windows.
Desktop Development
»
Dialogs And Windows
»
Windows Common Dialogs
C++/CLI
C#
.NET
MFC
Dev
Advanced
dialog
API
CLR
NET
, +
multi language in dialog with MFC
by
dev C plus
Answer
6 May 2013
license:
CPOL
i think i have found a solution for my problem...Enumerate Controls In a Dialog Box or FormView[^]
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
MFC/C++
multi language in dialog with MFC
by
CPallini
Answer
6 May 2013
license:
CPOL
Hence you have to write a DLL with functions able to parse XML files in order to return strings based on identifiers. It looks a pretty straightforward task to me, what is the problem?
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
MFC/C++
multi language in dialog with MFC
by
dev C plus
Question
6 May 2013
license:
CPOL
Hi all !!!i want to create a program with multi language by develop MFC/C++so, i have a few xml file, contain all my language need to translateEx: en.xml, fr.xml, jp.xml, language.xmli have read all my *xml filenow, i want to translate when user click radio button on dialog.how to...
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
MFC/C++
How to use CDaoDatabase?
by
Jochen Arndt
Answer
6 May 2013
license:
CPOL
There are many ways to use the CDao* classes. If you only want to read some fields from one or more tables, you can omit the creation of special derived classes to access them:CDaoDatabase db;try{ // Open access file: non-exclusive, read only // When db is password protected,...
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
How to use CDaoDatabase?
by
LaxmikantYadav
Answer
6 May 2013
license:
CPOL
http://msdn.microsoft.com/en-IN/library/34fa51ss%28v=vs.80%29.aspx[^]
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
How to use CDaoDatabase?
by
CPallini
Answer
6 May 2013
license:
CPOL
I would try Googling for[^] that.
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
How to use CDaoDatabase?
by
epanjohura
Question
6 May 2013
license:
CPOL
Hey GuysI've a database (MS Access) and I created a MFC-Windows Application. Now I want to open the database in my tool and get some values out of it.How do I have to do it with CDaoDatabase? I have no idea.Thanks for your help.GreetingsEpanjohura
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
ActiveX (OCX) problem
by
flush0713
Question
5 May 2013
license:
CPOL
Hi,I have a question of OCX.I got the OCX/Demo sources which are coded by VC++6.After I upgrade these codes to VS2008 and rebuild all of them,there are no errors!But when I open the main dialog of the demo program and double click the OCX object on the dialog,the visual studio 2008...
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
ActiveX
Using Google translator API in C++
by
Tadit Dash
Answer
4 May 2013
license:
CPOL
The thread Google AJAX API with C/C++[^] has many implemented codes.Please go through all the posts and try them. You will find one attached file here.
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
translate
Using Google translator API in C++
by
bubaidada
Question
4 May 2013
license:
CPOL
I want to create a MFC project in C++ which will use Google Translator API to translate strings into required language from English;I Have found following link to useful:https://developers.google.com/translate/v2/libraries[^]But having no clue if is there any interface in Google...
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
translate
How to refresh the system tray
by
Style-7
Answer
3 May 2013
license:
CPOL
NOTIFYICONDATA nid={0};nid.cbSize = sizeof(NOTIFYICONDATA);nid.hWnd = hWnd;nid.uID = 1; //your numShell_NotifyIcon( NIM_DELETE, &nid);
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
How to refresh the system tray
by
AYDIN EBRAHIMI HOMAY
Answer
3 May 2013
license:
CPOL
HiYou can do it with ::Shell_NotifyIcon(NIM_REMOVE, &address_of_oldicon); just for getting more information about it you can search in google.com I am sure this key word can be useful for you ;) Additionally please review follow of links:Basic use of Shell_NotifyIcon in Win32[^]Adding...
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
How to refresh the system tray
by
H.Brydon
Answer
3 May 2013
license:
CPOL
Rather than kill the process externally, set it up so that you can send it a message, and send a "please terminate" message so that it can clean things up and terminate itself gracefully.
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
How to refresh the system tray
by
Rocky_Bas
Question
3 May 2013
license:
CPOL
Hello,I have created an MFC application and this application runs in the system tray. Once the work is done with this particular application i am killing the process using another MFC application.Now the problem i am facing here is even after the application is terminated the icon is still...
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
Class Not Registered in MFC dll
by
Richard MacCutchan
Answer
3 May 2013
license:
CPOL
You should use Regsvr32[^] to register COM libraries properly.
General Programming
»
Uncategorised Quick Answers
»
General
MFC
COM
Windows
Win7
VC++
Class Not Registered in MFC dll
by
Sameer_awana
Question
3 May 2013
license:
CPOL
Hello!I am working on MFC dialogue based application,for that I used Dll functionality in COM. DLL is build successfully. I register it with registry editor by using GUID for the interfaces in dll application.I wrote below code for Initialise com object,but it gives error that "Class Not...
General Programming
»
Uncategorised Quick Answers
»
General
MFC
COM
Windows
Win7
VC++
ToDoList 6.6.7 Feature Release - An effective and flexible way to keep on top of your tasks
by
.dan.g.
Article
3 May 2013
license:
Eclipse
A hierarchical task manager with native XML support for custom reporting.
Web Development
»
Applications & Tools
»
Tools With Source Code
VC6
VC7
VC7.1
VC8.0
Win2K
WinXP
Win2003
Vista
C++
Windows
, +
Where Could I find free QR Code Library Or DLL for C++?
by
Nikeduban
Answer
3 May 2013
license:
CPOL
Here is a qr code C++ source code file that uses qr code font encoder to generate qr code symbol in Visual C++.
General Programming
»
Uncategorised Quick Answers
»
General
C++
MFC
library
How to display the video in full screen mode using DirectShow!?
by
J.Surjith Kumar
Question
2 May 2013
license:
CPOL
I am creating the video player,in that i need to play the video in full screen mode. I know there is an interface called IVideoWindow which is consisting of put_FullScreenMode() method which is used to display the video in full screen. This is coming under windowed mode. But i am using...
General Programming
»
Uncategorised Quick Answers
»
General
C++
C#
MFC
directshow
VC++
Page 1 of 204
1
2
3
4
5
6
7
8
9
10
First
·
Prev
·
Next
·
Last
Advertise
|
Privacy
|
Mobile
Web02 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright ©
CodeProject
, 1999-2013
All Rights Reserved.
Terms of Use
Layout:
fixed
|
fluid