Click here to Skip to main content
Page 1 of 137
Page Size: 10 · 25 · 50


Tag filtered by:  VC6 [x]
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...
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.
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.
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...
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.
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
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.
Article 10 May 2013   license: CPOL
A combobox control which shows a drop down window to assist user
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, ...
Article 9 May 2013   license: CPOL
Tree ComboBox Control
Article 8 May 2013   license: Ms-PL
This is an alternative for "A set of ADO classes - version 2.20"
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.
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/[
Article 25 Apr 2013   license: CPOL
Unmanaged code application accessing data in a database via Web Services without a database provider.
Article 24 Apr 2013   license: CPOL
A simplified explanation of Factory Method and Abstract Factory Patterns with sample C++ code.
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:...
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...
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...
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...
Question 21 Apr 2013   license: CPOL
Which loop is fastest and best in c++ projects? and how?
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...
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...
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
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...
Question 9 Apr 2013   license: CPOL
How can i link two dialog forms using a button?
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...
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...
Answer 7 Apr 2013   license: CPOL
Hi,Show this articlehttp://msdn.microsoft.com/fr-fr/library/c4db48kc(v=vs.80).aspxBest regards
Question 7 Apr 2013   license: CPOL
How to set text limit of an editbox dynamically in mfc dialog form
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.
Question 5 Apr 2013   license: CPOL
How to place a editbox at a particular point in mfc sialog form?
Answer 3 Apr 2013   license: CPOL
I think you may be looking for this:[CButtonST v3.9 (MFC Flat buttons)]Hope this helps, Pablo.
Question 3 Apr 2013   license: CPOL
How to add image as button without adding any bitmap or control buttons in dialog in Mfc dialog?
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.
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...
Answer 2 Apr 2013   license: CPOL
See https://www.google.co.uk/search?q=ado+c%2B%2B[^].
Question 2 Apr 2013   license: CPOL
How to connect mysql to visualc++6.0 mfc application and also perform Add, Update and Delete operations?
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.
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..
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.
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.
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.
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.
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
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.
Article 24 Mar 2013   license: CPOL
A beginner's guide to talking like a computer.
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...

Page 1 of 137
1 2 3 4 5 6 7 8 9 10


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