active questions tagged mfc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T01:56:38Zhttp://stackoverflow.com/feeds/tag/mfchttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1821279/mfc-just-need-some-directions0MFC, just need some directionsYashwant2009-11-30T17:45:38Z2009-11-30T21:39:59Z
<p>I usually don't expect help from outside but I need to solve this quickly and hence am looking for some directions. I have a 6 year old MFC based application running in an xp machine and deleted some files/programs to free some space in C drive to install additional applications. After installing my new program (Labview 8.6), I find that I'm no longer able to run the MFC based one. I tried doing System restore and what not but I get the following error when I start the app.</p>
<p><hr></p>
<p>Debug Assertion Failed!</p>
<p>Program : ....
File : dlgdata.cpp
Line : 43</p>
<p>(Press retry to debug the application)</p>
<p>Abort Retry Ignore
<hr></p>
<p>This dlgdata.cpp is an MFC core file and line 43 is ASSERT(FALSE) in function HWND CDataExchange::PrepareCtrl(int nIDC) , and I'm clueless as to what has gone wrong. I'd be grateful if I just get some pointers to start debugging.</p>
http://stackoverflow.com/questions/1821628/how-to-enumerate-mfc-controls-if-i-only-have-a-hwnd1How to enumerate MFC controls if I only have a h_wnd ?Etienne2009-11-30T18:44:36Z2009-11-30T19:01:21Z
<p>Hello. Long time reader, first time poster.</p>
<p>I'm a big noob when it comes to win32 gui apps so here's my question.</p>
<p>Let's say you have a handle to a window: </p>
<pre><code>HWND h_wnd;
</code></pre>
<p>That window ultimately has a bunch of controls, list, buttons and whatnot.</p>
<p>Now I believe all controls inherit from CWnd (maybe that's not the right technical term in MFC...not sure). So would I be able to drill down to the controls using something like:</p>
<pre><code>EnumChildWindows();
</code></pre>
<p>Again, I only have access to the top window handle.</p>
<p>Thanks !</p>
http://stackoverflow.com/questions/1792523/mfc-automation-how-to-implement-removedocument-onclosedocument1MFC Automation how to implement RemoveDocument OnCloseDocumentBabelFish2009-11-24T19:55:43Z2009-11-30T16:38:30Z
<p>I have an MFC MDI Application and I am trying to implement Automation with it. I am trying to create a RemoveDocument. How is that done? OnCloseDocument is causing problems. Is there a "standard" for doing that?</p>
http://stackoverflow.com/questions/1815602/to-generate-a-pdf-page-from-an-mfc-mdi-cview1To generate a PDF page from an MFC MDI CViewval2009-11-29T13:57:08Z2009-11-30T12:50:57Z
<p>My c++ MFC MDI application displays engineering drawings in its views. What is a good way to dump a CView derived object into a PDF file? What libraries could you suggest (not nesesery free)?
I've looked into a few libraries like Cairo and libHaru. It is possible to draw all the graphic components but I was thinking that the CView has allready all the drawingins done. Can it be dumped into a PDF through a PS or something like it?
Thanks</p>
http://stackoverflow.com/questions/1818366/how-to-use-trace-with-ascii-under-unicode-mfc-environment1How to use TRACE with ascii under unicode MFC environment?Victor Lin2009-11-30T07:42:06Z2009-11-30T08:53:43Z
<p>I am developing a MFC program under windows CE. It is unicode by default. I can use TRACE to print some message like this</p>
<pre><code>TRACE(TEXT("Hey! we got a problem!\n"));
</code></pre>
<p>It works fine if everything is unicode. But however, I got some ascii string to print. For example:</p>
<pre><code>// open the serial port
m_Context = CreateFile(TEXT("COM1:"), ...);
int rc = ReadFile(m_Context, buffer, 1, cBytes, NULL);
// Oops!! We got a problem, because we can't print a non-unicode string
TRACE(TEXT("Read data: %s\n"), buffer);
</code></pre>
<p>I read string through com1 from a GPS module. It send text like this "$GPSGGA,1,2,3,4". They are all encoded with ASCII. I want to print them out with TRACE, how can I do?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1817796/how-to-move-from-one-form-to-another-in-mfc0how to move from one form to another in MFCunknown (google)2009-11-30T04:08:03Z2009-11-30T04:36:53Z
<p>hey guys,
I am designing a set-up wizard using MFC application controls... how do I move from one form to another in a button click.plz help me guys</p>
http://stackoverflow.com/questions/1809892/databinding-in-mfc0Databinding in MFCAaron Fischer2009-11-27T17:34:23Z2009-11-28T23:48:09Z
<p>I have an application that is in mfc with a very rich domain object, but I am not sure how to setup the databinding with the cformview. How do you deal with databinding? Are you ussing the DDX and DDV or do you have a better trick?</p>
http://stackoverflow.com/questions/1813758/cmfcribbonedit-does-not-get-focus1CMFCRibbonEdit does not get focus.Fabien Hure2009-11-28T20:54:08Z2009-11-28T23:01:03Z
<p>I just added a CMFCRibbonEdit to my ribbon but it seems it does not get the focus.</p>
<p>It appears disabled.</p>
<p>I even copy/pasted an implementation of the creation of this control from a Microsoft sample but I get the same behaviour.</p>
<p>Any idea on what I may be doing wrong or forgetting to do ?</p>
http://stackoverflow.com/questions/1807230/mfc-active-x-control-in-a-winforms-window-on-vista-64bit-class-not-registered-e0MFC Active-X control in a winforms window on Vista 64bit; "Class not registered Exception"Jason D2009-11-27T07:20:27Z2009-11-28T20:05:40Z
<p>In an attempt to try to confirm another SO posters suggestion for key handling in an ActiveX control hosted on a winforms window, I tried making a bare-bones MFC ActiveX control, then placing it on a windows form. In design time the control showed up with no troubles.</p>
<p>When running the application the dreaded "Class not registered exception." dialog appears.</p>
<p>Both projects are in VS 2008. The Winforms app is a .Net 3.5 framework application.</p>
<p>I've tried running through the debugger, from explorer (elevated privileges in both cases) and nothing seemed to work. I even ensured I manually registered the OCX with both the 64 bit and 32 bit regsvr32 executables.</p>
<p>This has me puzzled as I wouldn't expect this to <em>not</em> run. I've done similar experiments at work (32 bit Windows XP box) with no troubles.</p>
<p>My VS configuration is as follows:</p>
<ul>
<li>Microsoft Visual Studio 2008</li>
<li>Version 9.0.30729.1 SP</li>
<li>Microsoft .NET Framework</li>
<li><p>Version 3.5 SP1</p>
<p>The most confusing bit is that the ActiveX control seems to show up in design time. Any answers, suggestions, or thoughts will be appreciated.</p></li>
</ul>
http://stackoverflow.com/questions/1811554/not-able-to-print-the-folder-path-in-editbox-mfc0Not able to Print the folder path in EditBox- MFCunknown (google)2009-11-28T04:29:02Z2009-11-28T04:33:02Z
<p>I am using the following function ..instead of CFolderDialog.. to get the folder path...check my code below....am getting a run time error when i try toprint the folder path name in a edit box..</p>
<blockquote>
<p>void
CSelfExtractorUIDlg::OnBnClickedButton1()
{</p>
<p>CDialog dlg;</p>
<p>HWND hwnd = NULL; LPCTSTR szCurrent =
(LPCTSTR)malloc(25*sizeof(TCHAR));
szCurrent = NULL; LPTSTR szPath =
(LPTSTR)malloc(25*sizeof(TCHAR)); BOOL
check =
BrowseForFolder(hwnd,szCurrent,szPath);
if( check == TRUE) {
dlg.SetDlgItemTextW(IDC_EDIT1,szPath);
}</p>
<p>}</p>
<p>BOOL BrowseForFolder(HWND hwnd,
LPCTSTR szCurrent, LPTSTR szPath) {
BROWSEINFO bi = { 0 }; LPITEMIDLIST
pidl; TCHAR szDisplay[256]; BOOL
retval;</p>
<p>//CoInitialize();</p>
<p>bi.hwndOwner = hwnd;
bi.pszDisplayName = szDisplay;
bi.lpszTitle = TEXT("Please
choose a folder."); bi.ulFlags<br>
= BIF_RETURNONLYFSDIRS | BIF_NEWDIALOGSTYLE; bi.lpfn<br>
= BrowseCallbackProc; bi.lParam = (LPARAM) szCurrent;</p>
<p>pidl = SHBrowseForFolder(&bi);</p>
<p>if (NULL != pidl) {
retval = SHGetPathFromIDList(pidl, szPath);
CoTaskMemFree(pidl); } else {
retval = FALSE; }</p>
<p>if (!retval) {
szPath[0] = TEXT('\0'); }</p>
<p>CoUninitialize(); return retval;</p>
<p>} static int CALLBACK
BrowseCallbackProc(HWND hwnd,UINT
uMsg, LPARAM lParam, LPARAM lpData)
{
// If the BFFM_INITIALIZED message is
received // set the path to the start
path.<br>
switch (uMsg) { case
BFFM_INITIALIZED: { if (NULL !=
lpData) { SendMessage(hwnd,
BFFM_SETSELECTION, TRUE, lpData); }
} }</p>
<p>return 0; // The function</p>
</blockquote>
http://stackoverflow.com/questions/1810151/controlling-writeprofilestring1Controlling WriteProfileStringHoppy2009-11-27T18:37:54Z2009-11-27T19:10:26Z
<p>Is it possible to specify the application name which is used by CWinApp::WriteProfileString()?<br>
If I use CWinApp::SetRegistryKey to set the name of my company to "MyCompany", and I call AfxGetApp()->WriteProfileString in my application called "SomeApp", my string will be stored under the following registry key:<br>
HKEY_CURRENT_USER\Software\MyCompany\SomeApp\... </p>
<p>The problem is that my users want to run multiple versions of SomeApp. So in order that the registry settings don't conflict I want to store them in keys like this:<br>
HKEY_CURRENT_USER\Software\MyCompany\SomeApp <strong>1.1</strong>\...<br>
HKEY_CURRENT_USER\Software\MyCompany\SomeApp <strong>2.0</strong>\...<br>
etc. </p>
<p>I could replace all instances of WriteProfileString with my own function, but this would be quite difficult as it is used extensively in both our source code and some of the third-party libraries that we use. </p>
<p>Is there some way to force WriteProfileString to use a different string for the application name?</p>
http://stackoverflow.com/questions/1808792/shellexecute-runas-with-quotes-in-parametees-fails-to-call-the-executable0ShellExecute + runas with quotes (") in parametees, fails to call the executable/batchmots_g2009-11-27T13:31:05Z2009-11-27T14:25:01Z
<p>I have tried calling a batch file with elevated permissions. For that I have called fallowing function: (ref - <a href="http://msdn.microsoft.com/en-us/library/bb762153%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb762153%28VS.85%29.aspx</a>)</p>
<p>ShellExecute(this->GetSafeHwnd(), L"runas", strExecutable, strParams, 0 , SW_SHOW);</p>
<p>The call successfully launches the exexutable, but if I add quotes to my parameters the calling of executable fails. I wanted to add quotes to my parameters to pass file paths <strong>having spaces</strong>.</p>
<p>The return code of ShellExecute is S_OK. Is there any way to find out what is causing runas to fail?</p>
http://stackoverflow.com/questions/1808146/how-to-track-no-sound-area-in-a-wav-file0How To Track No Sound Area In A Wav File?Chu-Chu-2009-11-27T11:11:49Z2009-11-27T11:39:21Z
<p>Hello, everyone.
How to track sections without sounds in a wav file?
a small software what I want to develop is deviding a wav file, and it consider a no volume area as a deviding point.
how can a program know that volume of a wav file is low?
I'll use Java or MFC.</p>
http://stackoverflow.com/questions/1806669/vertical-scrollbar-in-clistctrl0Vertical Scrollbar in CListCtrlSmashery2009-11-27T04:05:20Z2009-11-27T09:59:50Z
<p>I'm using a CListCtrl in Icon view, but it scrolls horizontally:</p>
<pre><code>1 3 5 7 -->
2 4 6 8 -->
</code></pre>
<p>I'd rather it scroll horizontally:</p>
<pre><code>1 2
3 4
5 6
| |
V V
</code></pre>
<p>Is there a way to do this?</p>
http://stackoverflow.com/questions/1688113/mfc-list-control0MFC List ControlManzoor Ahmed2009-11-06T14:55:57Z2009-11-27T08:06:32Z
<p>In MFC, I can edit the text of items in the list control but only for the first column by setting the Edit Labels to true. Now when I click the first column item to change its text, I'm able to change its text but when I hit Enter, its text isn't updated, why and how do I edit text for other columns? </p>
http://stackoverflow.com/questions/1807225/mfc42u-exception0mfc42u exceptionBharanidharan2009-11-27T07:19:03Z2009-11-27T07:19:03Z
<p>I got a crash in one of my MFC based windows service. When I analyzed the crash dump using windbg.exe, I got the following on the top of my stack trace. What is this error?</p>
<blockquote>
<p>0094fad8 0040d18c
mfc42u!CException::`RTTI Complete
Object Locator'+0x10</p>
</blockquote>
http://stackoverflow.com/questions/1802929/how-can-we-use-net-dll-in-vc3How can we use .NET dll in VC++?Ashish Ashu2009-11-26T10:41:27Z2009-11-26T18:07:41Z
<p>Please suggest me the best way to use .NET dll in VC++ project.</p>
http://stackoverflow.com/questions/1803225/coledroptarget-not-working-for-an-mfc-control0COleDropTarget not working for an MFC controlGoz2009-11-26T11:45:31Z2009-11-26T11:53:03Z
<p>I have 2 MFC controls that I've created derived from a common base.</p>
<p>They appear in the same place in my dialog and by clicking a button it swaps between the 2 controls. I do dynamically create the 2nd control over the 1st and then hide it.</p>
<p>I've derived my own CDropTarget class from COleDropTarget and everything works fine for one of the controls.</p>
<p>Now when i click the button to toggle between the 2 controls I call the following code.</p>
<pre><code>m_DropTarget.Revoke();
m_DropTarget.Register( pNewControl );
</code></pre>
<p>The problem is for the 2nd control (which is initially hidden) this does not work. I do not received the OnDragEnter in my CDropTarget class. If i swap back to the original window then drag and drop works.</p>
<p>Does anybody know what I'm doing wrong here? Both classes are pretty much identical. The only difference is the drawing code. Everything else comes from the common base so I really can't see why this wouldn't work.</p>
<p>I've tried setting the WS_EX_ACCEPTFILES on the 2nd control but that doesn't work either.</p>
<p>The only difference I can see is that despite setting the WS_BORDER style inside the dialog editor it disappears by the time I get to DoDataExchange. At this point I then create the 2nd control and use the style control1.GetStyle() | WS_BORDER. The border however is different between the 2 objects. I have no idea why. The original control is sunken the 2nd control is raised. Could this be connected to my problem?</p>
<p>Any ideas would be much appreciated.</p>
<p>Edit: I've just noticed that the original control actually has WS_EX_NOPARENTNOTIFY and WS_EX_CLIENTEDGE set on it despite my definitely not asking for this. Setting these extended styles on the 2nd control makes no difference, however. The borders still look COMPLETELY different AND drag and drop doesn't work.</p>
http://stackoverflow.com/questions/1801914/finding-file-size-windows-mfc-application0Finding file size windows MFC applicationunknown (google)2009-11-26T06:39:04Z2009-11-26T06:53:15Z
<p>Hey guys,
I Am working on windows MFC application C...I am preparing a report list in my design
using CListCtrl were i can list the name,size,type and modified date of the file..I dont know how to display the size of a file..do any one know how to do that..it will be helpful for me</p>
<p>thanks in advance..</p>
http://stackoverflow.com/questions/1797695/how-to-runlaunch-elevated-command-promt-programmiticaly-in-vista1How to Run(launch) elevated command promt programmiticaly in Vistamots_g2009-11-25T15:28:42Z2009-11-25T16:27:36Z
<p>Hi, I'm trying to install some files from a batch file (through code).
However the command should only run as "elevated command" in Vista and Windows 7
Is there any way this can be done programitically?</p>
<p>I'm launching the batch file by calling "CreateProcess" in VC++/MFC code.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1770670/how-do-i-control-the-text-input-panel-programmatically-tabtip-exe-in-windows-vi0How do I control the text input panel programmatically (tabtip.exe) in windows vista/7.yngvedh2009-11-20T14:11:07Z2009-11-25T09:23:05Z
<p>Hi,</p>
<p>I'm adapting an application for touch screen interface and we're want to use the tablet text input panel included in windows vista/7, specifically its keyboard. I want to show and hide it as appropriate for my app. Basically I want ShowKeyboad() and HideKeyboard() functions. What's the best way to control this.</p>
<p>I looked at the ITextInputPanel API but I was unable to control the keyboard directly with it (maybe I missed something?) I have also unsuccessfully tried to send window messages to its window.</p>
<p>The application is written in c++/MFC.</p>
<p>Any pointers at all are greatly appreciated.</p>
http://stackoverflow.com/questions/1308809/jump-to-listbox-item-by-typing-first-few-characters0Jump to listbox item by typing first few charactersrfeague2009-08-20T21:06:17Z2009-11-25T06:50:10Z
<p>I have a list of items (potentially large) from which the user must select one. I'd like to allow the user to type the <strong>first few letters</strong> of the desired item to jump to the correct place in the list. By default, each keypress jumps to the first item starting with that letter, so you can't type the first <em>several</em> letters. Is there any straightforward way to do this? Any CodeProject or other such example? </p>
<p>I've looked for hours, and found any number of samples for IAutocomplete, but that won't help here because I need to guarantee that the result is in the list. </p>
<p>The only way I can think to do this is to derive from CListBox, capture the keystrokes myself, find the item, run a timer so that new keystrokes after a sufficient pause will start a new search... since I'm not an MFC jock, this is daunting. Any tips much appreciated.</p>
<p>One clarifying note: my ultimate goal is actually to get this keyboard behavior for a ComboBox of DropDownList style (i.e. no edit box). The lack of an edit box rules out most autocomplete code, and the need for ComboBox functionality means I can't use CListCtrl by itself.</p>
http://stackoverflow.com/questions/1791588/changing-vista-file-permissions-programmatically1Changing vista file permissions programmaticallymots_g2009-11-24T17:19:30Z2009-11-24T21:47:33Z
<p>Hi,
I want to add some files to <code>C:\windows\XXX</code> (windows protected folder, in Vista), under the "TrustedInstaller" for my application. I do not want to replace any file so no issues on Windows Resource(formerly file) protection.
I have the code to change "ownership" to the current logged in admin, however, I'm don't have any clue how to set its file permissions programmatically. I'm using VC++/MFC for development.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1309432/selected-item-in-my-clistctrl-shows-ellipsis-despite-having-plenty-of-room1Selected item in my CListCtrl shows ellipsis, despite having plenty of room!rfeague2009-08-20T23:44:00Z2009-11-24T17:04:53Z
<p>I have a CListCtrl with plenty of room for all of the items, and they all display correctly --- until selected! As soon as any entry is selected, the end of that entry is truncated and an ellipsis is added:</p>
<p><a href="http://www.satorilabs.com/CListCtrl.JPG" rel="nofollow">Click for Image</a></p>
<p>I have no idea why this is happening. You can't see it in this image, but even very short entries show this behavior, even if the entries above or below are much longer and display fully. Here's the .rc code that created the control (and dialog):</p>
<pre><code>IDD_COMBOBOX_DIALOG DIALOGEX 0, 0, 320, 200
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_VISIBLE |
WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_APPWINDOW
CAPTION "ComboBox"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
DEFPUSHBUTTON "OK",IDOK,263,7,50,16
PUSHBUTTON "Cancel",IDCANCEL,263,25,50,16
CONTROL "",IDC_LIST1,"SysListView32",LVS_REPORT | LVS_SINGLESEL |
LVS_SORTASCENDING | LVS_ALIGNLEFT | LVS_NOSORTHEADER | WS_BORDER |
WS_TABSTOP,7,78,306,85
END
</code></pre>
<p>and here's the code from InitDialog() that sets up and populates the CListCtrl:</p>
<pre><code>myListCtrl.InsertColumn(0,_T("Allergies"));
FILE *f = fopen("c:\\allergies.txt", "r");
char sz[100];
if (f)
while (fgets(sz,100,f))
myListCtrl.InsertItem(0, sz);
if (f)
fclose(f);
myListCtrl.SetColumnWidth(0,LVSCW_AUTOSIZE);
LVFINDINFO FI;
FI.flags = LVFI_PARTIAL|LVFI_STRING;
FI.psz = _T("A");
int i = myListCtrl.FindItem(&FI);
myListCtrl.SetItemState(i, LVIS_SELECTED | LVIS_FOCUSED, LVIS_SELECTED | LVIS_FOCUSED);
myListCtrl.EnsureVisible(i, FALSE);
</code></pre>
<p>This one is making me really crazy. Any tips would be MUCH appreciated! Thanks for having a look.</p>
http://stackoverflow.com/questions/1788316/mfc-visibile-function0MFC visibile functionMay2009-11-24T06:55:59Z2009-11-24T17:00:02Z
<p>Hi guys,
I have an assignment using MFC which is a completely foreign language to me.
I have to be able to upload Image1, and Image2 into 2 picture controls. And using a slider: when it is on the far left, you see Image1 in a third picture control, when it is on the far right you see Image2. Anywhere in between you should see a transition.</p>
<p>I have most of the assignment down, the only thing I have left is this transition. I have an idea of what I need to do and I'm using a function similar to Allegro. I just can't seem to find the syntax for MFC. </p>
<p>This is probably as wrong as it gets so any help at all would be appreciated enormously. Thanks!</p>
<p>I have:</p>
<pre><code>int nPos = m_Slider.GetPos();
int nWidth1 = Image1.GetWidth();
int nHeight1 = Image1.GetHeight();
int nWidth2 = Image2.GetWidth();
int nHeight2 = Image2.GetHeight();
int nWidth3 = (nWidth1 +nWidth2)/2;
int nHeight3 = (nHeight1 + nHeight2)/2;
int nPixel1;
int nPixel2;
int nPixel3;
int i1, i2, i3, j1, j2, j3;
Image3.Create(nWidth3, nHeight3, 24);
for(i3=0; i3 < nWidth3; i3++){
for(j3=0; j3 < nHeight3; j3++){
i1 = i3 * nWidth1 / nWidth3;
i2 = i3 * nWidth2 / nWidth3;
j1 = j3 * nHeight1 / nHeight3;
j2 = j3 * nHeight2 / nHeight3;
getpixel(nPixel1, i1, j1);
getpixel(nPixel2, i2, j2);
putpixel(nPixel3, i3, j3);
nPixel3 = (nPixel1 * (100-nPos) + nPixel2*nPos) *Image3.visible/100;
}
}
</code></pre>
http://stackoverflow.com/questions/870247/how-can-i-see-what-is-on-the-desktop-heap3How can I see what is on the Desktop HeapJon Drnek2009-05-15T18:47:48Z2009-11-24T15:06:43Z
<p>I have an application that is using about 100k more of the Desktop Heap in this version then it did last version. Is there a way I can see what is on the Desktop Heap and how big the individual objects are? Using <a href="http://www.microsoft.com/downloads/details.aspx?familyid=5CFC9B74-97AA-4510-B4B9-B2DC98C8ED8B&displaylang=en" rel="nofollow">Dheapmon</a> I was able to see what percentage of the heap I was using, but I want more details.</p>
http://stackoverflow.com/questions/977105/ever-done-a-total-rewrite-of-a-large-c-application-in-c12Ever done a total rewrite of a large C++ application in C#?Dana Holt2009-06-10T17:38:02Z2009-11-24T08:05:49Z
<p>I know <a href="http://www.joelonsoftware.com/articles/fog0000000069.html" rel="nofollow">Joel says to never do it</a>, and I agree with this in most cases. I do think there are cases where it is justified.</p>
<p>We have a large C++ application (around 250,000 total lines of code) that uses a MFC front end and a Windows service as the core components. We are thinking about moving the project to C#.</p>
<p>The reasons we are thinking about rewriting are:</p>
<ol>
<li>Faster development time</li>
<li>Use of WCF and other .NET built-in features</li>
<li>More consistent operation on various
systems</li>
<li>Easier 64 bit support</li>
<li>Many nice .NET libraries and
components out there</li>
</ol>
<p>Anyone done a rewrite like this? Was it successful?</p>
<p><hr /></p>
<p><strong>EDIT:</strong></p>
<p>The project is almost 10 years old now, and we are getting to the point that adding new features we want would be writing significant functionality that .NET already has built-in. </p>
http://stackoverflow.com/questions/1782409/unicode-rtf-text-in-richedit1Unicode RTF text in RichEditNPVN2009-11-23T11:00:41Z2009-11-23T18:20:00Z
<p>I'm having trouble getting a RichEdit control to display unicode RTF text. My application is Unicode, so all strings are wchar_t strings.<br>
If I create the control as "RichEdit20A" I can use e.g. SetWindowText, and the text is displayed with the proper formatting. If I create the control as "RichEdit20W" then using SetWindowText shows the text verbatim, i.e. all the RTF code is displayed. The same happens if I use the EM_SETTEXTEX parameter, specifying codepage 1200 which MSDN tells me is used to indicate unicode.<br>
I've tried using the StreamIn function, but this only seems to work if I stream in ASCII text. If I stream in widechars then I get empty text in the control. I use the SF_RTF|SF_UNICODE flags, and MSDN hints that this combination may not be allowed.</p>
<p>So what to do? Is there any way to get widechars into a RichEdit without losing RTF interpretation, or do I need to encode it? I've thought about trying UTF-8, or perhaps use the encoding facilities in RTF, but am unsure what the best choice is.</p>
http://stackoverflow.com/questions/959683/how-to-read-a-pdf-file-programmatically-and-convert-it-into-audio-mp3-format4How to read a .pdf file programmatically and convert it into audio (.mp3 format)?Attilah2009-06-06T13:34:40Z2009-11-23T11:20:52Z
<p>I want to parse a PDF file from my C# app and create an audio file off it.
How would I do that ?</p>
<p>I'm particularly looking for a good pdf to text library or a way to strip a pdf file off its text.</p>
http://stackoverflow.com/questions/1777316/switching-threads-for-mfc-application-cleanup1Switching threads for MFC application cleanupstanigator2009-11-22T00:33:59Z2009-11-22T15:45:12Z
<p>I'm trying to clean up specific memory objects created by a specific thread (hence only accessible to that thread). The only way for me to achieve that is to switch to that particular thread when freeing that memory block.</p>
<p>This is how I allocated the specific memory context:
<img src="http://imagebin.ca/img/S6mwZBFu.jpg" alt=""></p>
<p>This is what I attempted to do:</p>
<p><img src="http://imagebin.ca/img/DeTe9Z6h.jpg" alt="alt text"></p>
<p>I have originally added the memory context creation and destruction in a manner like the following:</p>
<pre><code>int Thread2::main()
{
CudaMemoryContext *theCudaObj = new CudaMemoryContext();
while(!TerminateStatus())
{
...
}
delete theCudaObj;
return 0;
}
</code></pre>
<p>However, this approach is not working very well, i.e. the program crashes right when I'm cleaning up on the "delete theCudaObj;" line. I'm wondering if I can switch active threads when cleaning up, or allocate the CUDA context to be accessible by both threads so that I can clean up and access it with ease through both threads. Thanks in advance for suggestions.</p>