9,867,109 members (34,199 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*
6,818 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 137
Page Size:
10
·
25
·
50
Tag filtered by: VC6
[x]
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++
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
, +
Exe runs properly in debug and crash in release
by
Ian A Davidson
Answer
10 May 2013
license:
CPOL
There are some major differences with the way memory is laid out in debug and release compiled applications. Because of this, there is more scope for overrun and underrun. However, if you have all the checks switched on, I would expect some sort of assertion error in this case (though the...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
C++
Debugging
VC++
release
Exe runs properly in debug and crash in release
by
Paul Watt
Answer
10 May 2013
license:
CPOL
A simple way to see if the stack is being overwritten, move these variables that get these mysterious values above the declaration of jMPGFPlaylist variable and see if the next value is overwritten.
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
C++
Debugging
VC++
release
Exe runs properly in debug and crash in release
by
Member 9586495
Answer
10 May 2013
license:
CPOL
Hi,perhaps you should compile your project with warning level /W3 at least.My experience is that a higher warning level and of course the eliminationof these warnings will give you a more stable exe even as release version.Best regards
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
C++
Debugging
VC++
release
Exe runs properly in debug and crash in release
by
R.B.
Answer
10 May 2013
license:
CPOL
Memory may be corrupt due to another routine in your program. Look at code that is executed before _GetGraphicSurface() is invoked.
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
C++
Debugging
VC++
release
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++
Exe runs properly in debug and crash in release
by
Vaibhav_J_Jaiswal
Question
10 May 2013
license:
CPOL
Hi friends,I am fetching a problem in which debug exe is runs properly and in release it crashed. I debug the exe in release mode and got the following things. First I show you code:void CPlaybackThread::_GetGraphicSurface(uint64_t in_ui64Time, ...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
C++
Debugging
VC++
release
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++
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++
, +
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
, +
Helpinator
by
Dmitri Popov
Catalog
2 May 2013
license:
Commercial
Help authoring tool. Create CHM help files, manuals in PDF, Web help, RTF files, QtHelp, JavaHelp, EPUB and MOBI and even publish to WordPress. WYSIWYG editor with spellchecker and styles. Screenshot capture and image editor.
Documentation & Help
VC6
VC7
VC7.1
VC8.0
C#1.0
C#2.0
C#3.0
VB7.x
VB8.0
VB9.0
, +
Port project to VC2008
by
Thewhisperinyourears
Question
2 May 2013
license:
CPOL
Hello, I am trying to port this code from vc6 to vc2008Here is my code with errors:http://sourceforge.net/projects/thief/files/thief-source/[
General Programming
»
Uncategorised Quick Answers
»
General
VC6
VS2008
C
C++
Visual-Studio
chess
Web-based Data Access Object for Unmanaged Application
by
In the Face of God
Article
25 Apr 2013
license:
CPOL
Unmanaged code application accessing data in a database via Web Services without a database provider.
Languages
»
C / C++ Language
»
General
VC6
VC7
VC7.1
VC8.0
.NET2.0
.NET3.0
.NET3.5
C++
ASP.NET
.NET
, +
Understanding Factory Method and Abstract Factory Patterns
by
Virendra Kulkarni
Article
24 Apr 2013
license:
CPOL
A simplified explanation of Factory Method and Abstract Factory Patterns with sample C++ code.
Development Lifecycle
»
Design And Architecture
»
Design Patterns
VC6
VC7
VC7.1
VC8.0
Architect
Dev
Intermediate
C++
Audio using Directshow (DirectX)
by
Indian Coder1989
Question
24 Apr 2013
license:
CPOL
I'm working on an app to show webcam preview using directshow libraries.I'm getting video but there is no audio.Can anyone suggest me how I can add this audio to my application.I have asked this on this also:...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
VC7
C++
C
C++
which loop is fastest and best in visual c++
by
Stefan_Lang
Answer
22 Apr 2013
license:
CPOL
Some things to consider:First, the speed of a loop usually depends on the code performed within much more than the type of loop.Second, which loop to use depends on the way you wish to control the loop. You can rewrite any type of loop as another, but that won't change your requirements...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
MFC
C++
which loop is fastest and best in visual c++
by
Matthew Faithfull
Answer
22 Apr 2013
license:
CPOL
The best loop is no loop at all ( search loop unrolling ). If you want to do something several times and very fast then consider doing it in parallel using multiple cores or even using SSE extended assembler instructions. Don't try to do large chunks of your program this way just the small...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
MFC
C++
which loop is fastest and best in visual c++
by
CPallini
Answer
21 Apr 2013
license:
CPOL
There is not a 'best' loop in C++. There are three kinds of loop: for, while, do-while, each one with it pros and cons (forget about relative performance). In my own experience, the most used is for.As a general rule to achieve good performance you have toDesign (or use an existing) good...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
MFC
C++
which loop is fastest and best in visual c++
by
gurunbr1
Question
21 Apr 2013
license:
CPOL
Which loop is fastest and best in c++ projects? and how?
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
MFC
C++
MCI commands for playing wave files of GSM format.
by
VijaySoni23488
Question
14 Apr 2013
license:
CPOL
Hi all developer's, I am working on MCI wave audio player. I want my application to get the number of output audio devices attached to the system. I can set the sound output of the wave file to any of the connected audio device.For example : I have a wave file "sample.wav" and there are...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
screen resolution detection & control
by
Matthew Faithfull
Answer
14 Apr 2013
license:
CPOL
There is going to be a proper way to do this which interacts with the same ( probably COM ) API that the Control Panel itself uses to do the job.However if you really are using VC6 then who knows whether you even have the headers declaring that API which I should be able to remember and...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
Windows
C++
screen resolution detection & control
by
forouz
Question
14 Apr 2013
license:
CPOL
HelloHow could i detect screen resolution of different computer which run my installed program and control it with no resizing of my screen layout while target computer has diiffrent resolution with my computer.Best regards,Forouz
General Programming
»
Uncategorised Quick Answers
»
General
VC6
Windows
C++
link two dialog forms in mfc application
by
KarstenK
Answer
10 Apr 2013
license:
CPOL
you need to make your 2 dialogs childs of your main frame. Than the button calls the mainframe to change it.If that doesnt answer you question, you shoud provide A LOT MORE information...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
MFC
C++
Working with Excel in MFC
by
Flaviu2
Tip/Trick
9 Apr 2013
license:
CPOL
Improved Excel class
Platforms, Frameworks & Libraries
»
Com / Com+
»
Automation
VC6
Windows
MFC
Beginner
Intermediate
C++
link two dialog forms in mfc application
by
gurunbr1
Question
9 Apr 2013
license:
CPOL
How can i link two dialog forms using a button?
General Programming
»
Uncategorised Quick Answers
»
General
VC6
MFC
C++
how to create a button dynamically in mfc dialog form
by
CPallini
Answer
8 Apr 2013
license:
CPOL
You may just pass this (that is the pointer to the CDialog itself) instead of pParentWnd.[Update]Please note myButton shouldn't be a local variable (it should be a class member).I used the following code in the about dialog of a MFC SDI application:class CAboutDlg : public...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
MFC
C++
how to create a button dynamically in mfc dialog form
by
gurunbr1
Question
8 Apr 2013
license:
CPOL
I need to create a button dynamically in mfc dialog form by using following code..CButton myButton1, myButton2, myButton3, myButton4;myButton1.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_PUSHBUTTON, CRect(10,10,100,30), pParentWnd, 1);In this code i got an error pParentwnd...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
MFC
C++
How to set text limit of editbox in mfc dialog
by
LOUIS Christian
Answer
7 Apr 2013
license:
CPOL
Hi,Show this articlehttp://msdn.microsoft.com/fr-fr/library/c4db48kc(v=vs.80).aspxBest regards
General Programming
»
Uncategorised Quick Answers
»
General
VC6
MFC
C++
How to set text limit of editbox in mfc dialog
by
gurunbr1
Question
7 Apr 2013
license:
CPOL
How to set text limit of an editbox dynamically in mfc dialog form
General Programming
»
Uncategorised Quick Answers
»
General
VC6
MFC
C++
To place a edit box in a particular point in mfc dialog form
by
Richard MacCutchan
Answer
5 Apr 2013
license:
CPOL
Use the dialog designer in the Visual Studio resource editor. If you are not using VS then edit your resource manually.
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
MFC
C++
To place a edit box in a particular point in mfc dialog form
by
gurunbr1
Question
5 Apr 2013
license:
CPOL
How to place a editbox at a particular point in mfc sialog form?
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
MFC
C++
How to add image as button in vc6 mfc dialog
by
Pablo Aliskevicius
Answer
3 Apr 2013
license:
CPOL
I think you may be looking for this:[CButtonST v3.9 (MFC Flat buttons)]Hope this helps, Pablo.
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
MFC
C++
How to add image as button in vc6 mfc dialog
by
gurunbr1
Question
3 Apr 2013
license:
CPOL
How to add image as button without adding any bitmap or control buttons in dialog in Mfc dialog?
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
MFC
C++
E-XD++ Electronic form design and Filling Source Code Kit for C/C++ and .NET
by
kellyonlyone
Catalog
3 Apr 2013
license:
Fully Function Evaluation version
Electronic form design, form printing, form filling, data dissemination, C/C++ visualization, VB/.NET, source code component library, 100% VC++ Source Code is Shipped.
Components, Controls, Libraries
VC6
VC7
VC7.1
VC8.0
Win2K
WinXP
Win2003
Vista
Embedded
C++
, +
How to connect mysql to visual c++ 6.0 mfc application
by
Pravinda Ama.
Answer
3 Apr 2013
license:
CPOL
MySQL C/C++ connectors :http://www.mysql.com/downloads/connector/c/[^]http://www.mysql.com/downloads/connector/cpp/[^]There is no platform called Visual C++ (It's only the Compiler).These libraries can be used with C/C++ (MFC, Win32 or whatever APIs on windows).See the...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
MFC
C++
MySQL
How to connect mysql to visual c++ 6.0 mfc application
by
Richard MacCutchan
Answer
2 Apr 2013
license:
CPOL
See https://www.google.co.uk/search?q=ado+c%2B%2B[^].
General Programming
»
Uncategorised Quick Answers
»
General
VC6
MFC
C++
MySQL
How to connect mysql to visual c++ 6.0 mfc application
by
gurunbr1
Question
2 Apr 2013
license:
CPOL
How to connect mysql to visualc++6.0 mfc application and also perform Add, Update and Delete operations?
General Programming
»
Uncategorised Quick Answers
»
General
VC6
MFC
C++
MySQL
EZShellExtensionsMFC
by
LogicNP Software
Catalog
2 Apr 2013
license:
Commercial
EZShellExtensionsMFC enables fast and painless development of any kind of Windows shell extensions including context menu, property sheet, infotip, thumbnail, icon and drag-drop extensions as well as Active Directory extensions and explorer bars.
Components, Controls, Libraries
VC6
VC7
VC7.1
VC8.0
C++
C++/CLI
C++
VC9.0
VC10.0
make a image as edit box in visual c++6.0
by
gurunbr1
Question
2 Apr 2013
license:
CPOL
How it make an image as editbox in visual c++6.0 dialog based application? give some example also..
General Programming
»
Uncategorised Quick Answers
»
General
VC6
C++
E-XD++ CAD Drawing and Printing Source Code Kit for C/C++, .NET
by
kellyonlyone
Catalog
31 Mar 2013
license:
Fully Function Evaluation version
CAD drafting, mechanical CAD, Architectural CAD, electrical CAD, CAD design, CAD annotation, printing, software development, Source code control for C/C++, .NET, 100% VC++ Source Code is Shipped.
Charting & Graphing
VC6
VC7
VC7.1
VC8.0
Win2K
WinXP
Win2003
Vista
Embedded
C++
, +
E-XD++ HMI & SCADA Development Kit for C/C++, .NET
by
kellyonlyone
Catalog
31 Mar 2013
license:
Fully Function Evaluation version
HMI-SCADA Graphics Visualization Source Code Solution For C/C++, .NET and Web, 100% VC++ Source Code is Shipped.
Components, Controls, Libraries
VC6
VC7
VC7.1
VC8.0
Win2K
WinXP
Win2003
Vista
Embedded
C++
, +
E-XD++ Electroic Power System Control and Component ToolKit for C/C++ and .NET
by
kellyonlyone
Catalog
27 Mar 2013
license:
Fully Function Evaluation version
Power systems, wiring diagrams, distribution maps, geographic wiring diagram, the power system configuration and simulation, power dispatch, automatic control, C/C ++ and DELPHI and .NET, and web application examples and , 100% VC++ Source Code is Shipped.
Charting & Graphing
VC6
VC7
VC7.1
VC8.0
Win2K
WinXP
Win2003
Vista
VS.NET2002
VS.NET2003
, +
how to detect the services in vc++
by
Maxim Kartavenkov
Answer
25 Mar 2013
license:
CPOL
That is very easy, you just need to use 2 WinAPI: OpenSCManager and EnumServicesStatus. First one is used to obtain service control manager handle, and the second one to enumerate services based on given status and type.Regards,Maxim.
General Programming
»
Uncategorised Quick Answers
»
General
VC6
VS2005
C++
C++
Visual-Studio
VC++
Services
how to detect the services in vc++
by
Jochen Arndt
Answer
25 Mar 2013
license:
CPOL
See the EnumServicesStatusEx[^] API function.
General Programming
»
Uncategorised Quick Answers
»
General
VC6
VS2005
C++
C++
Visual-Studio
VC++
Services
how to detect the services in vc++
by
Vaibhav_J_Jaiswal
Question
25 Mar 2013
license:
CPOL
I'm using VS2005 and am try to create a program which shows the current running services and found that particular service is running or not.Can anybody tell me what I have to do for achieving this.I am working on vc++.Thanks,Vaibhav Jaiswal
General Programming
»
Uncategorised Quick Answers
»
General
VC6
VS2005
C++
C++
Visual-Studio
VC++
Services
Aztec Decoder SDK/DLL
by
jinkehuizhi
Catalog
25 Mar 2013
license:
Shareware
With the SDK/DLL,Developers can read barcodes regardless of orientation, skewing or flipping. Barcodes can be detected and read from specific areas of interest. and barcodes can be read from a variety of supported image file formats.
Components, Controls, Libraries
VC6
VC7
VC7.1
VC8.0
.NET1.0
.NET1.1
.NET2.0
.NET3.0
.NET3.5
C++
, +
Learning Binary and Hexadecimal
by
Jeremy Falcon
Article
24 Mar 2013
license:
CPOL
A beginner's guide to talking like a computer.
General Programming
»
Programming Tips
»
General
VC6
VC7
VC7.1
VC8.0
C#1.0
C#2.0
C#3.0
C++
C++/CLI
C
, +
break-point will not currently be hit. Invalid file line : nnnn
by
gssajith87
Answer
23 Mar 2013
license:
CPOL
Whenever you have a new piece of code added to the existing code that you are debugging, First thing is you should build the Solution once again and continue to debug.In case if you are debugging a exe that is running from a different location than that of your Project Folder, For...
General Programming
»
Uncategorised Quick Answers
»
General
VC6
VS2005
C++
C++
Visual-Studio
VC++
Debugger
Page 1 of 137
1
2
3
4
5
6
7
8
9
10
First
·
Prev
·
Next
·
Last
Advertise
|
Privacy
|
Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright ©
CodeProject
, 1999-2013
All Rights Reserved.
Terms of Use
Layout:
fixed
|
fluid