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


Tag filtered by:  MFC [x]
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.
Answer 13 May 2013   license: CPOL
See http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/3c9a5b9b-1a7d-4d86-bc82-85652448e0c9[^].
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...
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....
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.
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.
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.
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...
Answer 13 May 2013   license: CPOL
Did you try Google[^]?
Answer 13 May 2013   license: CPOL
http://msdn.microsoft.com/en-I...
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 .
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...
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
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.
MFC
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...
MFC
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...
MFC
Article 10 May 2013   license: CPOL
A combobox control which shows a drop down window to assist user
Article 9 May 2013   license: CPOL
Tree ComboBox Control
Question 9 May 2013   license: CPOL
hello,WLAN scan AP and connect it in MFC.Does anyone has experenice.
Article 9 May 2013   license: GPL3
Visualizing the Mandelbrot set using multiple threads of execution.
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." ...
Answer 9 May 2013   license: CPOL
You may find many articles about, here at CodeProject[^]
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.
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...
Article 8 May 2013   license: Ms-PL
This is an alternative for "A set of ADO classes - version 2.20"
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,...
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...
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. ...
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.
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.
Answer 6 May 2013   license: CPOL
i think i have found a solution for my problem...Enumerate Controls In a Dialog Box or FormView[^]
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?
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...
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,...
Answer 6 May 2013   license: CPOL
http://msdn.microsoft.com/en-IN/library/34fa51ss%28v=vs.80%29.aspx[^]
Answer 6 May 2013   license: CPOL
I would try Googling for[^] that.
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
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...
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.
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...
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);
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...
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.
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...
Answer 3 May 2013   license: CPOL
You should use Regsvr32[^] to register COM libraries properly.
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...
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++.
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...

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


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