djeidot

836
Reputation
137 views

Registered User

Name djeidot
Member for 1 year
Seen yesterday
Website
Location Portugal
Age 33
A PhD in Chemical Engineering who is developing software instead.
Nov
17
answered Get text width in MFC
Nov
16
comment OLEDB CASE WHEN in SELECT Query
Is that a SQL query?
Nov
13
revised Visual C++ 6.0 - OnInitDialog in a Derived CDialog class not working
deleted 2 characters in body
Nov
13
revised Visual C++ 6.0 - OnInitDialog in a Derived CDialog class not working
added 385 characters in body
Nov
13
accepted MFC - change text color of a cstatic text control
Nov
11
answered Visual C++ 6.0 - OnInitDialog in a Derived CDialog class not working
Nov
10
comment How to create a solution file using vs 2008
Yes, create a blank project and just add the files to it.
Nov
6
comment Adding publicly but inheriting private
yes, I think it's a nomenclature problem here. Unless you want to use the size class elsewhere
Nov
5
accepted MFC Open Folder Dialog
Nov
3
comment visual indicator (a +-sign) to expand data in Listview (In MFC)
Well, for the TreeView you'd only need to add the TVS_HASBUTTONS and TVS_HASLINES styles.
Nov
3
comment visual indicator (a +-sign) to expand data in Listview (In MFC)
A TreeView control would be best suited for you, if you don't need any ListView-specific features.
Nov
2
accepted Do you know any file comparison add-in for visual studio
Oct
29
comment MFC - change text color of a cstatic text control
Yes, 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).
Oct
29
answered MFC - change text color of a cstatic text control
Oct
29
comment How does Windows identify non-Unicode applications?
The "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: support.microsoft.com/?scid=kb;en-us;282187&x…
Oct
22
comment “Don’t show this again” option in message boxes
Warning: 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".
Oct
22
answered “Don’t show this again” option in message boxes
Oct
22
comment “Don’t show this again” option in message boxes
Yes, that's exactly what I wanted!
Oct
20
comment “Don’t show this again” option in message boxes
There seem to be a lot of options, though, I just want a simple checkbox...
Oct
20
comment “Don’t show this again” option in message boxes
That's great, I wonder if would work well on XP...
Oct
20
comment “Don’t show this again” option in message boxes
I know what to do with the option value after I retrieve it, I was thinking of using @John Sibly's suggestion.
Oct
20
comment “Don’t show this again” option in message boxes
That would be the hard way, I guess. I was looking for something already built in the framework.
Oct
20
asked “Don’t show this again” option in message boxes
Oct
20
answered “Sticky” MFC popup menu
Oct
20
comment MFC Wizard Appearance
Please check my answer again, I included a few more sugestions
Oct
20
revised MFC Wizard Appearance
added 786 characters in body; added 5 characters in body
Oct
19
answered MFC Wizard Appearance
Oct
15
comment I can’t seem to add a column header to a list box in an inherited MFC dialog. What’s wrong?
Thanks, glad I could help.
Oct
15
accepted I can’t seem to add a column header to a list box in an inherited MFC dialog. What’s wrong?
Oct
15
answered I can’t seem to add a column header to a list box in an inherited MFC dialog. What’s wrong?
Oct
15
revised MFC Open Folder Dialog
added 42 characters in body
Oct
15
answered MFC Open Folder Dialog
Oct
14
comment How do I set a specific printer for a report?
This helps setting the default printer, which is not quite what I intended, but it can be useful to others.
Oct
14
comment How do I set a specific printer for a report?
Thank you, I think that does it. I had searched the web for this but didn't find that particular article.
Oct
14
asked How do I set a specific printer for a report?
Oct
9
comment Is it possible to configure VS2008 to build using older VC++ compilers?
This means you'd have to have VC6 installed anyway, right?
Oct
9
answered Visual Studio Go to Definition
Oct
6
answered List box context menu
Oct
6
answered How to get CEdit to scroll properly?
Sep
29
comment Deleting a method from Visual Studio properties window
OK, I'll accept this as long as no one comes up with some way of doing it.
Sep
29
revised How to convert a float to a string regardless of regional settings?
deleted 306 characters in body; edited tags
Sep
29
accepted How to convert a float to a string regardless of regional settings?
Sep
29
answered How to convert a float to a string regardless of regional settings?
Sep
29
comment Deleting a method from Visual Studio properties window
It does a good job when it just comments the code...
Sep
29
revised Deleting a method from Visual Studio properties window
edited tags
Sep
29
asked Deleting a method from Visual Studio properties window
Sep
29
comment How do I get the default check box images?
Yeah I did, though it's still a lot of work just to change the text color...
Sep
28
comment How do I get the default check box images?
That works, plus I found out that CMFCVisualManager::GetInstance()->DrawCheckBox does the same thing.
Sep
28
comment How do I get the default check box images?
DrawFrameControl() works but it doesn't handle the Common Controls 6.0 manifest. Thanks anyway :)
Sep
28
comment How do I get the default check box images?
Found out it works on VS2003 but not on VS2008.