User djeidot - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T21:24:48Zhttp://stackoverflow.com/feeds/user/4880http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1835209/how-can-i-disable-and-gray-the-top-level-menu-item-using-mfc/1839281#18392810Answer by djeidot for How can I disable and gray the top level menu item using MFCdjeidot2009-12-03T11:12:29Z2009-12-03T11:12:29Z<p>I think you should add an ON_UPDATE handler for your menu ID. This would ensure that the menu is enabled/disabled when you want to.</p>
http://stackoverflow.com/questions/1832835/how-to-create-full-screen-window-with-mfc/1833784#18337840Answer by djeidot for How to create full screen window with MFC?djeidot2009-12-02T15:51:02Z2009-12-02T15:51:02Z<p>I think removing the border from the dialog resource and showing the window as maximized (<code>ShowWindow(SW_SHOWMAXIMIZED)</code>) should do the job.</p>
<p>As for topmost use the <em>System Modal</em> style in the dialog resource.</p>
http://stackoverflow.com/questions/1745693/get-text-width-in-mfc/1747969#17479692Answer by djeidot for Get text width in MFCdjeidot2009-11-17T10:40:01Z2009-11-17T10:40:01Z<p>In addition to @demoncodemonkey's answer, you can call <a href="http://msdn.microsoft.com/en-us/library/a6x7y2a4%28VS.80%29.aspx" rel="nofollow">CDC::DrawText</a> with the <code>DT_CALCRECT</code> flag. This way the text won't be drawn, but the CRect you pass to the function will have the width and height of the text to draw.</p>
<p>This is especially useful if you want to draw text with line breaks (using the <code>DT_WORDBREAK</code> flag). You won't be able to do that using <code>CDC::GetTextExtent</code>.</p>
http://stackoverflow.com/questions/1711464/visual-c-6-0-oninitdialog-in-a-derived-cdialog-class-not-working/1714549#17145490Answer by djeidot for Visual C++ 6.0 - OnInitDialog in a Derived CDialog class not workingdjeidot2009-11-11T11:19:02Z2009-11-13T16:22:00Z<p>If you want to use CMyDlg as a base for other dialog classes, you cannot have the IDD set in your CMyDlg class. The IDD should be set on the class derived from CMyDlg.</p>
<p>So you should delete this:</p>
<pre><code>enum { IDD = IDD_DERIVEDLGTEST_DIALOG };
</code></pre>
<p>and replace the standard constructor:</p>
<pre><code>// in the .h file:
//CMyDlg(CWnd* pParent = NULL);
CMyDlg(LPCSTR szIDTemplate, CWnd* pParent = NULL );
// in the .cpp file:
CMyDlg::CMyDlg(LPCSTR szIDTemplate,CWnd* pParent /*=NULL*/)
: CDialog(szIDTemplate, pParent)
{
}
</code></pre>
<p><strong>Edit:</strong> I just saw your link code. Have you noticed this in your derived class?</p>
<pre><code>BOOL CDeriveDlgTestDlg::OnInitDialog()
{
CDialog::OnInitDialog();
</code></pre>
<p>You are calling <code>CDialog::OnInitDialog()</code>, not <code>CMyDlg::OnInitDialog()</code>!</p>
<p>In fact, you should replace all mentions of <code>CDialog</code> thar appear in <code>CDeriveDlgTestDlg</code> with <code>CMyDlg</code>. Do this and you're good to go.</p>
http://stackoverflow.com/questions/1636590/mfc-change-text-color-of-a-cstatic-text-control/1643680#16436802Answer by djeidot for MFC - change text color of a cstatic text control djeidot2009-10-29T13:21:08Z2009-10-29T13:21:08Z<p>@Javier's answer is a good one, but you can also implement <code>ON_WM_CTLCOLOR</code> in your dialog class, without having to create a new CStatic-derived class:</p>
<pre><code>BEGIN_MESSAGE_MAP(CMyDialog, CDialog)
//{{AFX_MSG_MAP(CMyDialog)
ON_WM_CTLCOLOR()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
HBRUSH CMyDialog::OnCtlColor(CDC* pDC, CWnd *pWnd, UINT nCtlColor)
{
switch (nCtlColor)
{
case CTLCOLOR_STATIC:
pDC->SetTextColor(RGB(255, 0, 0));
return (HBRUSH)GetStockObject(NULL_BRUSH);
default:
return CDialog::OnCtlColor(pDC, pWnd, nCtlColor);
}
}
</code></pre>
<p>Notice that the code above sets the text of all static controls in the dialog. But you can use the <code>pWnd</code> variable to filter the controls you want.</p>
http://stackoverflow.com/questions/1596117/dont-show-this-again-option-in-message-boxes1"Don't show this again" option in message boxesdjeidot2009-10-20T17:25:12Z2009-10-22T10:31:24Z
<p>In C++/MFC, what's the simplest way to show a message box with a "Don't show this again" option?</p>
<p>In my case, I just want a simple MB_OK message box (one OK button).</p>
http://stackoverflow.com/questions/1596117/dont-show-this-again-option-in-message-boxes/1606338#16063382Answer by djeidot for "Don't show this again" option in message boxesdjeidot2009-10-22T10:31:24Z2009-10-22T10:31:24Z<p>Thanks for all the answers. I will add one more, although I ended up selecting @Stefan's answer for being the simplest way to do it.</p>
<p>Before I saw Stefan's answer, I was using XMessageBox. It had a lot of options that I didn't want, but it worked on all systems, it's worth checking. You can find XMessageBox on <a href="http://www.codeproject.com/KB/dialog/xmessagebox.aspx" rel="nofollow">http://www.codeproject.com/KB/dialog/xmessagebox.aspx</a>.</p>
http://stackoverflow.com/questions/1591536/sticky-mfc-popup-menu/1595120#15951201Answer by djeidot for "Sticky" MFC popup menudjeidot2009-10-20T14:41:06Z2009-10-20T14:41:06Z<p>Following @Mark Ransom's answer, you should put up a dialog box. But you can make the dialog modeless and make it close itself when you click outside of it (i.e., the dialog loses focus). That way it could behave more like a menu.</p>
<p>Notice that normal menus never go away by themselves, you always have to click somewhere outside the menu (or one of its options) to make it disappear.</p>
http://stackoverflow.com/questions/1584981/mfc-wizard-appearance/1588679#15886790Answer by djeidot for MFC Wizard Appearancedjeidot2009-10-19T13:31:18Z2009-10-20T14:32:20Z<p>You should have:</p>
<ul>
<li><code>CWinApp</code> replaced with <code>CWinAppEx</code> in your main program file;</li>
<li>The Windows Common Controls 6.0 manifest implemented (either a RT_MANIFEST resource or a <code>#pragma</code> entry in your stdafx.h)</li>
<li><p>The code below at the beginning of the <code>InitInstance()</code> method (this code should have been added in the New Project wizard): </p>
<pre><code>// InitCommonControlsEx() is required on Windows XP if an application
// manifest specifies use of ComCtl32.dll version 6 or later to enable
// visual styles. Otherwise, any window creation will fail.
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// Set this to include all the common control classes you want to use
// in your application.
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
</code></pre></li>
</ul>
http://stackoverflow.com/questions/1573880/i-cant-seem-to-add-a-column-header-to-a-list-box-in-an-inherited-mfc-dialog-wh/1574158#15741581Answer by djeidot for I can't seem to add a column header to a list box in an inherited MFC dialog. What's wrong?djeidot2009-10-15T18:20:18Z2009-10-15T18:20:18Z<p>I'm guessing that since the DDX_Control() are on the base class, the derived class will not link the resource controls to their respective classes. You might want to try to change this:</p>
<pre><code>void CDerivedDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
</code></pre>
<p>into this:</p>
<pre><code>void CDerivedDlg::DoDataExchange(CDataExchange* pDX)
{
CStdDlg::DoDataExchange(pDX);
</code></pre>
http://stackoverflow.com/questions/1570217/mfc-open-folder-dialog/1573047#15730473Answer by djeidot for MFC Open Folder Dialogdjeidot2009-10-15T15:15:26Z2009-10-15T15:20:47Z<p>This code will get you a open folder dialog (this was taken from somewhere on the web but I don't really know where).</p>
<pre><code>CString szSelectedFolder = "";
// This is the recommended way to select a directory
// in Win95 and NT4.
BROWSEINFO bi;
memset((LPVOID)&bi, 0, sizeof(bi));
TCHAR szDisplayName[_MAX_PATH];
szDisplayName[0] = '\0';
bi.hwndOwner = GetSafeHwnd();
bi.pidlRoot = NULL;
bi.pszDisplayName = szDisplayName;
bi.lpszTitle = "Select a folder";
bi.ulFlags = BIF_RETURNONLYFSDIRS;
// Set the callback function
bi.lpfn = BrowseCallbackProc;
LPITEMIDLIST pIIL = ::SHBrowseForFolder(&bi);
TCHAR szReturnedDir[_MAX_PATH];
BOOL bRet = ::SHGetPathFromIDList(pIIL, (char*)&szReturnedDir);
if (bRet)
{
if (szReturnedDir != _T(""))
{
szSelectedFolder = szReturnedDir;
}
LPMALLOC pMalloc;
HRESULT HR = SHGetMalloc(&pMalloc);
pMalloc->Free(pIIL);
pMalloc->Release();
}
</code></pre>
<p>you'll also have to implement this callback function:</p>
<pre><code>TCHAR szInitialDir[_MAX_PATH];
// Set the initial path of the folder browser
int CALLBACK BrowseCallbackProc(HWND hWnd, UINT uMsg, LPARAM lParam, LPARAM lpData)
{
// Look for BFFM_INITIALIZED
if (uMsg == BFFM_INITIALIZED)
{
SendMessage(hWnd, BFFM_SETSELECTION, TRUE, (LPARAM)_T(szInitialDir));
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1567167/how-do-i-set-a-specific-printer-for-a-report1How do I set a specific printer for a report?djeidot2009-10-14T15:41:48Z2009-10-14T15:54:11Z
<p>I want to print a customized report to a specific printer, bypassing the print dialog. The printer is to be selected by the user for each report template. </p>
<p>Right now I have the code to print the report showing the print dialog, or directly to the default printer. I need to change it in order to print directly to a printer which is not necessarily the default one.</p>
<p>I realize that calling <code>SetDefaultPrinter</code> before printing is an easy solution, but it's not thread-safe.</p>
<p>Note: I'm using C++/MFC.</p>
http://stackoverflow.com/questions/1543711/visual-studio-go-to-definition/1544123#15441231Answer by djeidot for Visual Studio Go to Definitiondjeidot2009-10-09T14:28:06Z2009-10-09T14:28:06Z<p>For the MFC source files (at least the Feature Pack ones) I learned to find out what folder are they in (usually at <code>C:\Program Files\Microsoft Visual Studio 9.0\VC\atlmfc\src\mfc</code>) and add that folder to the Find in Files dialog.</p>
<p>It's not as direct as Go to Definition, and you may have to browse among the find results, but it works...</p>
<p>Note: I second @flippy's answer of Visual Assist, it's really great.</p>
http://stackoverflow.com/questions/1509120/list-box-context-menu/1526978#15269780Answer by djeidot for List box context menudjeidot2009-10-06T17:29:17Z2009-10-06T17:29:17Z<p>If you followed the tutorial to derive you own class, make sure <code>ON_WM_CONTEXTMENU()</code> is added to the new class message map.</p>
<p>To add a list box of your derived class, you simply add a variable for your ListBox control and specify the variable class as your derived class.</p>
<p>However I think @Goz's answer is also a valid solution, and a simpler one.</p>
http://stackoverflow.com/questions/1526405/how-to-get-cedit-to-scroll-properly/1526893#15268930Answer by djeidot for How to get CEdit to scroll properly?djeidot2009-10-06T17:11:36Z2009-10-06T17:11:36Z<p>I think you might want to set <strong>Auto VScroll</strong> and <strong>Multiline</strong> to true, and <strong>Auto HScroll</strong> to false.</p>
http://stackoverflow.com/questions/507477/how-to-convert-a-float-to-a-string-regardless-of-regional-settings2How to convert a float to a string regardless of regional settings?djeidot2009-02-03T15:10:04Z2009-09-29T17:01:08Z
<p>My product is targeted to a Portuguese audience where the comma is the decimal symbol. I usually use CString::Format to input numbers into strings, and it takes into account the computer's regional settings. While in general this is a good approach, I'm having problems in formatting SQL queries, for instance:</p>
<pre><code>CString szInsert;
szInsert.Format("INSERT INTO Vertices (X, Y) VALUES (%f, %f)", pt.X, pt.Y);
</code></pre>
<p>When values are passed I get this string which is an incorrect query:</p>
<pre><code>INSERT INTO Vertices (X, Y) VALUES (3,56, 4,67)
</code></pre>
<p>How do I enforce the dot as the decimal symbol in these strings, without changing the regional settings and without having to make specialized strings for each float value?</p>
<p>Note: this is intended as a general question, not a SQL one.</p>
http://stackoverflow.com/questions/507477/how-to-convert-a-float-to-a-string-regardless-of-regional-settings/1493765#14937650Answer by djeidot for How to convert a float to a string regardless of regional settings?djeidot2009-09-29T16:56:42Z2009-09-29T16:56:42Z<p>Here's what I did.</p>
<pre><code>CString FormatQuery(LPCTSTR pszFormat, ...)
{
CString szLocale = setlocale(LC_NUMERIC, NULL);
setlocale(LC_NUMERIC, "English");
va_list args;
va_start(args, pszFormat);
CString szFormatted;
int nSize = (_vscprintf(pszFormat, args) + 1) * sizeof(char);
_vsnprintf_s(szFormatted.GetBuffer(nSize), nSize, nSize, pszFormat, args);
szFormatted.ReleaseBuffer();
va_end(args);
setlocale(LC_NUMERIC, szLocale);
return szFormatted;
}
</code></pre>
<p>You should use it like <code>sprintf</code>. You must <code>#include <locale.h></code> in order for it to work.</p>
<p>I'm a bit stubborn so I didn't use prepared statements/parametrized queries. If you have a similar problem, I suggest you do that. Meanwhile, if your problem is not SQL-related, my answer should help.</p>
http://stackoverflow.com/questions/1492264/deleting-a-method-from-visual-studio-properties-window0Deleting a method from Visual Studio properties windowdjeidot2009-09-29T12:32:50Z2009-09-29T15:22:07Z
<p>The "Events", "Messages" and "Overrides" tabs in the Properties Window can be used to add new methods to a class as well as to remove them. However, when you select to "Delete" a method, it comments the method code instead of deleting it.</p>
<p>I know this is for safety issues, but I almost never need the commented code and end up having to delete it manually. This is even more annoying in MFC, when I have to delete the method declaration, the method implementation and the entry on the message map which are usually on different places.</p>
<p>Is there an option to simply delete the method code instead of just commenting it?</p>
http://stackoverflow.com/questions/1486740/how-do-i-get-the-default-check-box-images1How do I get the default check box images?djeidot2009-09-28T12:20:01Z2009-09-28T13:39:35Z
<p>I'm trying to build an owner-drawn check box using CButton, but since I only want to change the text color, I'd like the check-box marks to remain the same. </p>
<p>Is there a command that allows me to retrieve the default check box bitmaps for the platform where the program is running? </p>
<p>(alternatively: how could I change only the text color, preserving the check box marks?)</p>
http://stackoverflow.com/questions/1465549/cmfcbutton-with-vista-style2CMFCButton with Vista Styledjeidot2009-09-23T12:00:22Z2009-09-23T22:06:52Z
<p>I can't seem to get a CMFCButton to be displayed in Vista style in a dialog box application. I'm using VS2008 with MFC Feature Pack.</p>
<p>Here are some steps to reproduce my problem:</p>
<ul>
<li>Create a new MFC Project;</li>
<li>Specify a Dialog based project.</li>
<li>Add two buttons to the main dialog.</li>
<li>Add a variable for each button. Make one of the variables a CButton, the other one a CMFCButton.</li>
<li>Compile and run.</li>
</ul>
<p><img src="http://img7.imageshack.us/img7/3/testapp.png" alt="test app picture" /></p>
<p>As you can see, the CButton has the correct style but the CMFCButton does not.</p>
<p>What I am missing here?</p>
http://stackoverflow.com/questions/72573/can-you-use-cmfcvisualmanager-with-a-dialog-based-application/1467172#14671720Answer by djeidot for Can you use CMFCVisualManager with a dialog based application?djeidot2009-09-23T16:31:29Z2009-09-23T16:31:29Z<p>I think you can have some MFC-feature-pack features by implementing <code>OnApplicationLook</code> on your base <code>CDialog</code> (check Step 4 on <a href="http://www.codeguru.com/cpp/cpp/cpp%5Fmfc/tutorials/print.php/c14929%5F%5F2" rel="nofollow">this page</a>). It might be better to implement the whole <code>OnApplicationLook</code> method, but you can test your application simply by adding this to <code>OnInitDialog</code>:</p>
<pre><code>CMFCVisualManagerOffice2007::SetStyle(CMFCVisualManagerOffice2007::Office2007_Silver);
CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerOffice2007));
CDockingManager::SetDockingMode(DT_SMART);
RedrawWindow(NULL, NULL, RDW_ALLCHILDREN | RDW_INVALIDATE | RDW_UPDATENOW | RDW_FRAME | RDW_ERASE);
</code></pre>
http://stackoverflow.com/questions/1462895/how-to-detect-a-clistctrl-selection-change/1466086#14660862Answer by djeidot for How to detect a CListCtrl selection change?djeidot2009-09-23T13:40:58Z2009-09-23T13:40:58Z<p>Also try:</p>
<pre><code>BEGIN_MESSAGE_MAP(cDlgRun, CDialog)
ON_NOTIFY(LVN_ITEMCHANGED, IDC_LIST2, OnItemchangedList2)
END_MESSAGE_MAP()
/* ... */
void cDlgRun::OnItemchangedList2(NMHDR* pNMHDR, LRESULT* pResult)
{
NM_LISTVIEW* pNMListView = (NM_LISTVIEW*)pNMHDR;
if ((pNMListView->uChanged & LVIF_STATE)
&& (pNMListView->uNewState & LVNI_SELECTED))
{
// do stuff...
}
}
</code></pre>
http://stackoverflow.com/questions/122208/get-the-ip-address-of-local-computer5Get the IP Address of local computerdjeidot2008-09-23T16:41:42Z2009-08-22T23:17:02Z
<p>In C++, what's the easiest way to get the local computer's IP address and subnet mask?</p>
<p>I want to be able to detect the local machine's IP address in my local network. In my particular case, I have a network with a subnet mask of 255.255.255.0 and my computer's IP address is 192.168.0.5.because I need to get these had two values programmatically in order to send a broadcast message to my different network (in the form 192.168.0.255, for my particular case)</p>
<p>Edit: Many answers were not giving the results I expected because I had two different network IP's. <a href="http://stackoverflow.com/questions/122208/get-the-ip-address-of-local-computer#122235">Torial</a>'s code did the trick (it gave me both IP addresses). Thanks. </p>
<p>Edit 2: Thanks to <a href="http://stackoverflow.com/questions/122208/get-the-ip-address-of-local-computer#122225">Brian R. Bondy</a> for the info about the subnet mask.</p>
http://stackoverflow.com/questions/1260350/using-team-explorer-and-visualsvn-simultaneously-in-visual-studio-2008/1260528#12605281Answer by djeidot for Using Team Explorer and VisualSVN simultaneously in Visual Studio 2008djeidot2009-08-11T13:53:58Z2009-08-11T18:00:35Z<p>I have VSS and VisualSVN on the same computer so I can tell you it is possible to have both. I wouldn't recommend using both tools in the same project, but for different projects it should be no problem</p>
<p>I still have VSS for legacy applications; every now and then I move one of them to SVN, and then I simply unbind it from VSS. The new versions of the project are stored on SVN, but I still have access to old versions using the VSS explorer.</p>
http://stackoverflow.com/questions/1199764/how-to-check-if-a-sql-query-is-valid-for-writing-with-ado0How to check if a SQL query is valid for writing with ADO?djeidot2009-07-29T12:01:39Z2009-07-29T12:47:09Z
<p>My app has an advanced feature that accepts SQL queries written by the user. The feature should include a "Validate" button to check if the query is valid.</p>
<p>The most simple way I found to do this using ADO is just trying to run the query and catch possible exceptions. But how can I also check if the query enables to add new records or to edit existing ones?</p>
http://stackoverflow.com/questions/1177276/best-way-to-find-a-whitespace-delimited-word-in-a-cstring1Best way to find a whitespace-delimited word in a CStringdjeidot2009-07-24T12:13:18Z2009-07-24T13:23:02Z
<p>example: "<code>select * from somewhere where x = 1</code>"</p>
<p>I want to find the whitespace-delimited "<code>where</code>", but not the "<code>where</code>" within "<code>somewhere</code>". In the example "where" is delimited by spaces, but it could be carriage returns, tabs etc.</p>
<p>Note: I know regex would make it easy to do (the regex equivalent would be "<code>\bwhere\b</code>"), but I don't want to add a regex library to my project just to do this.</p>
http://stackoverflow.com/questions/760237/cannot-edit-labels-in-a-clistctrl2Cannot edit labels in a CListCtrldjeidot2009-04-17T12:36:17Z2009-07-24T06:00:02Z
<p>I'm building a project with MFC Feature Pack. Is this project I have a window which includes a CView, which includes a CListCtrl-derived object. The object includes the LVS_EDITLABELS flag.</p>
<p>Somehow I cannot edit the CListCtrl icon labels by two-time clicking (not double-clicking) on the icon label. After I select the item with a single click, a second click just flashes the item (button down turns text background to white, button up turns it back to blue) and the edit control never appears.</p>
<p>I reduced this problem to the simplest form, and even with a plain CListCtrl object I cannot edit the labels. </p>
<p>I also found that:</p>
<ul>
<li><p>This problem occurs in VS2008. It doesn't occur in a similar project built in VS2003.</p></li>
<li><p>I am able to edit the labels if I build a CListView instead of a CView+CListCtrl. </p></li>
<li><p>I am also able to edit the labels if I build a CFormView and put the CListCtrl inside the resource dialog.</p></li>
</ul>
<p>Here's some code in the simplest form: the .h file:</p>
<pre><code>// vwTerminaisTeste.h
//
#pragma once
// vwTerminaisTeste view
class vwTerminaisTeste : public CView
{
DECLARE_DYNCREATE(vwTerminaisTeste)
protected:
vwTerminaisTeste(); // protected constructor used by dynamic creation
virtual ~vwTerminaisTeste();
CListCtrl m_lstTerminais;
protected:
DECLARE_MESSAGE_MAP()
virtual void OnDraw(CDC* /*pDC*/);
public:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnSize(UINT nType, int cx, int cy);
};
</code></pre>
<p>and the .cpp file:</p>
<pre><code>// vwTerminaisTeste.cpp : implementation file
//
#include "stdafx.h"
#include "vwTerminaisTeste.h"
// vwTerminaisTeste
IMPLEMENT_DYNCREATE(vwTerminaisTeste, CView)
vwTerminaisTeste::vwTerminaisTeste()
{
}
vwTerminaisTeste::~vwTerminaisTeste()
{
}
BEGIN_MESSAGE_MAP(vwTerminaisTeste, CView)
ON_WM_CREATE()
ON_WM_SIZE()
END_MESSAGE_MAP()
// vwTerminaisTeste message handlers
void vwTerminaisTeste::OnDraw(CDC* /*pDC*/)
{
CDocument* pDoc = GetDocument();
}
int vwTerminaisTeste::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CView::OnCreate(lpCreateStruct) == -1)
return -1;
m_lstTerminais.Create(WS_CHILD | WS_VISIBLE | LVS_EDITLABELS, CRect(0,0,1,1), this, 0);
m_lstTerminais.InsertItem(0, "Teste", 0);
return 0;
}
void vwTerminaisTeste::OnSize(UINT nType, int cx, int cy)
{
CView::OnSize(nType, cx, cy);
if (IsWindow(m_lstTerminais.GetSafeHwnd()))
m_lstTerminais.MoveWindow(0, 0, cx, cy);
}
</code></pre>
<p>This way I cannot edit labels.
To change it to a CListView I simply replaced CView by CListView and m_lstTerminais by GetListCtrl(), and removed the OnCreate and OnSize implementations. That way it worked.</p>
<p>Note: the vwTerminaisTeste is created from a CSplitterWndEx within a CMDIChildWndEx-derived class.</p>
http://stackoverflow.com/questions/1105058/can-i-create-an-object-from-a-derived-class-by-constructing-the-base-object-with0Can I create an object from a derived class by constructing the base object with a parameter?djeidot2009-07-09T16:37:11Z2009-07-09T17:41:26Z
<p>In other words, given a base class <code>shape</code> and a derived class <code>rectangle</code>:</p>
<pre><code>class shape
{
public:
enum shapeType {LINE, RECTANGLE};
shape(shapeType type);
shape(const shape &shp);
}
class rectangle : public shape
{
public:
rectangle();
rectangle(const rectangle &rec);
}
</code></pre>
<p>I'd like to know if I could create an instance of <code>rectangle</code> by calling:</p>
<pre><code>shape *pRectangle = new shape(RECTANGLE);
</code></pre>
<p>and how could I implement the copy constructor, in order to get a new <code>rectangle</code> by calling:</p>
<pre><code>shape *pNewRectangle = new shape(pRectangle);
</code></pre>
http://stackoverflow.com/questions/877928/select-from-inner-joined-tables2'SELECT *' from inner joined tablesdjeidot2009-05-18T14:07:23Z2009-05-18T14:39:42Z
<p>How do you select all fields of two joined tables, without having conflicts with the common field?</p>
<p>Suppose I have two tables, <code>Products</code> and <code>Services</code>. I would like to make a query like this:</p>
<pre><code>SELECT Products.*, Services.*
FROM Products
INNER JOIN Services ON Products.IdService = Services.IdService
</code></pre>
<p>The problem with this query is that <code>IdService</code> will appear twice and lead to a bunch of problems.</p>
<p>The alternative I found so far is to discriminate every field from <code>Products</code> except the <code>IdService</code> one. But this way I'll have to update the query every time I add a new field to <code>Products</code>.</p>
<p>Is there a better way to do this?</p>
http://stackoverflow.com/questions/839257/how-do-i-make-a-cmfctoolbar-recognize-image-masks/864834#8648342Answer by djeidot for How do I make a CMFCToolBar recognize image masks?djeidot2009-05-14T18:05:52Z2009-05-14T18:05:52Z<p>I don't know if this works every time but I use <code>RGB(192, 192, 192)</code> as the mask color and it does get recognized.</p>
<p>(Seems like the CMFCToolBar control is prepared to use <code>::GetSysColor(COLOR_BTNFACE)</code> as the transparent color...)</p>
http://stackoverflow.com/questions/1823936/how-to-hide-a-modal-dialogbox-in-mfc-application/1824502#1824502Comment by djeidot on How to hide a modal dialogbox in MFC application?djeidot2009-12-02T15:57:32Z2009-12-02T15:57:32ZYou should definitely use CPropertySheetshttp://stackoverflow.com/questions/1741939/oledb-case-when-in-select-queryComment by djeidot on OLEDB CASE WHEN in SELECT Querydjeidot2009-11-16T12:45:59Z2009-11-16T12:45:59ZIs that a SQL query?http://stackoverflow.com/questions/1709217/how-to-create-a-solution-file-using-vs-2008/1709235#1709235Comment by djeidot on How to create a solution file using vs 2008 djeidot2009-11-10T16:30:00Z2009-11-10T16:30:00ZYes, create a blank project and just add the files to it.http://stackoverflow.com/questions/1687313/adding-publicly-but-inheriting-private/1687333#1687333Comment by djeidot on Adding publicly but inheriting privatedjeidot2009-11-06T12:44:29Z2009-11-06T12:44:29Zyes, I think it's a nomenclature problem here. Unless you want to use the size class elsewherehttp://stackoverflow.com/questions/1666391/visual-indicator-a-sign-to-expand-data-in-listview-in-mfcComment by djeidot on visual indicator (a +-sign) to expand data in Listview (In MFC)djeidot2009-11-03T16:52:38Z2009-11-03T16:52:38ZWell, for the TreeView you'd only need to add the TVS_HASBUTTONS and TVS_HASLINES styles.http://stackoverflow.com/questions/1666391/visual-indicator-a-sign-to-expand-data-in-listview-in-mfcComment by djeidot on visual indicator (a +-sign) to expand data in Listview (In MFC)djeidot2009-11-03T11:28:29Z2009-11-03T11:28:29ZA TreeView control would be best suited for you, if you don't need any ListView-specific features.http://stackoverflow.com/questions/1636590/mfc-change-text-color-of-a-cstatic-text-control/1643680#1643680Comment by djeidot on MFC - change text color of a cstatic text control djeidot2009-10-29T19:07:37Z2009-10-29T19:07:37ZYes, I agree, in this case your way is the better way. My way could be used if someone wants to do a major revamping in the entire dialog (or application).http://stackoverflow.com/questions/1641501/how-does-windows-identify-non-unicode-applications/1641526#1641526Comment by djeidot on How does Windows identify non-Unicode applications?djeidot2009-10-29T13:01:36Z2009-10-29T13:01:36ZThe "MS Shell Dlg" font used in MFC is in fact a mapping to the default UI font of the operating system. Check this article for more info: <a href="http://support.microsoft.com/?scid=kb;en-us;282187&x=11&y=13" rel="nofollow">support.microsoft.com/?scid=kb;en-us;282187&x…</a>http://stackoverflow.com/questions/1596117/dont-show-this-again-option-in-message-boxes/1603591#1603591Comment by djeidot on "Don't show this again" option in message boxesdjeidot2009-10-22T10:43:11Z2009-10-22T10:43:11ZWarning: this works for me because I want a simple MB_OK message box. It can be more complicated if the message box has more than one button. The docs tell us not to confuse "Do not show this dialog box" with "Remember this answer".http://stackoverflow.com/questions/1596117/dont-show-this-again-option-in-message-boxes/1603591#1603591Comment by djeidot on "Don't show this again" option in message boxesdjeidot2009-10-22T10:24:16Z2009-10-22T10:24:16ZYes, that's exactly what I wanted!http://stackoverflow.com/questions/1596117/dont-show-this-again-option-in-message-boxes/1596244#1596244Comment by djeidot on "Don't show this again" option in message boxesdjeidot2009-10-20T18:03:09Z2009-10-20T18:03:09ZThere seem to be a lot of options, though, I just want a simple checkbox...http://stackoverflow.com/questions/1596117/dont-show-this-again-option-in-message-boxes/1596244#1596244Comment by djeidot on "Don't show this again" option in message boxesdjeidot2009-10-20T18:00:55Z2009-10-20T18:00:55ZThat's great, I wonder if would work well on XP...http://stackoverflow.com/questions/1596117/dont-show-this-again-option-in-message-boxes/1596191#1596191Comment by djeidot on "Don't show this again" option in message boxesdjeidot2009-10-20T17:59:59Z2009-10-20T17:59:59ZI know what to do with the option value after I retrieve it, I was thinking of using @John Sibly's suggestion.http://stackoverflow.com/questions/1596117/dont-show-this-again-option-in-message-boxes/1596191#1596191Comment by djeidot on "Don't show this again" option in message boxesdjeidot2009-10-20T17:59:08Z2009-10-20T17:59:08ZThat would be the hard way, I guess. I was looking for something already built in the framework.http://stackoverflow.com/questions/1584981/mfc-wizard-appearance/1588679#1588679Comment by djeidot on MFC Wizard Appearancedjeidot2009-10-20T14:33:11Z2009-10-20T14:33:11ZPlease check my answer again, I included a few more sugestions