Click here to Skip to main content
16,013,489 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralRe: Workspaces Pin
Nnamdi Onyeyiri5-Nov-02 6:50
Nnamdi Onyeyiri5-Nov-02 6:50 
GeneralRe: Workspaces Pin
Michael Mac5-Nov-02 10:03
Michael Mac5-Nov-02 10:03 
GeneralRe: Workspaces Pin
Michael Mac5-Nov-02 10:02
Michael Mac5-Nov-02 10:02 
GeneralRe: Workspaces Pin
benjymous7-Nov-02 23:48
benjymous7-Nov-02 23:48 
GeneralRe: Workspaces Pin
Marco Bertschi6-Jun-14 23:32
protectorMarco Bertschi6-Jun-14 23:32 
Generalside effects of VC++7 Pin
Stephane Rodriguez.2-Nov-02 22:34
Stephane Rodriguez.2-Nov-02 22:34 
GeneralRe: side effects of VC++7 Pin
Michael Dunn3-Nov-02 5:01
sitebuilderMichael Dunn3-Nov-02 5:01 
GeneralRe: side effects of VC++7 Pin
Stephane Rodriguez.3-Nov-02 6:15
Stephane Rodriguez.3-Nov-02 6:15 
Try this :

void F( CString& s ) { s.MakeLower(); }
CStringArray arrS; // MFC coll<br>
arrS.Add( CString("bob") );

F( arrS.GetAt(0) );


This compiles fine with VC6, and produces a C2664 error with VC7.

The answer is in the actual source code. Blame MS (as usual for being morons, ie changing code guidelines without notice).

In MFC6, the GetAt() accessor is defined as : CString GetAt(int nIndex) const;
In MFC7, the same accessor is defined as : const CString& GetAt(INT_PTR nIndex) const;


I am not interested in the Graus'ian debate of whether const is good or not. I am just saying THE CODE DOES NOT COMPILE WITH VC7. I think it's simple enough to understand.

And if you enforce const stuff with VC7 code, people willing to downgrade it to VC6 code will have the equivalent issues. Again, this will not compile without changing the implementation, or even worse : the API.



Michael Dunn wrote:
You can also get the MFC 6 redistributables from http://activex.microsoft.com/controls/vc/mfc42.cab

Thanks for the link. Do you assume that everyone knows this link ? Do you assume anyone is willing to get beyond the simple "missing MFC42.dll" error when testing precompiled stuff ? This takes time, and it's annoying. Facing that with .NET (you probably know the "missing mscoree.dll") in the past, my point was to never go back to anything related to .NET.
The fact is I got VS.NET to play with, and things began to get better. But the average Joe user will spit on you for providing him with such things.
The answers are obvious to me. If we don't find a better way to share these kind of resources from now on, this will may be turn out to be the death of CodeProject. For a lot of people, an executable demo from an article failing to execute is showing how unreliable it can be.
Of course, that's only my point. Now you know.





Back to real work : D-27.
GeneralRe: side effects of VC++7 Pin
peterchen4-Nov-02 13:25
peterchen4-Nov-02 13:25 
GeneralRe: side effects of VC++7 Pin
Stephane Rodriguez.4-Nov-02 19:15
Stephane Rodriguez.4-Nov-02 19:15 
GeneralUI suggestions for the voting Pin
Michael Dunn1-Nov-02 15:31
sitebuilderMichael Dunn1-Nov-02 15:31 
GeneralRe: UI suggestions for the voting Pin
Rohit  Sinha2-Nov-02 10:23
Rohit  Sinha2-Nov-02 10:23 
GeneralRe: UI suggestions for the voting Pin
Chris Maunder3-Nov-02 15:35
cofounderChris Maunder3-Nov-02 15:35 
GeneralRe: UI suggestions for the voting Pin
Nick Parker3-Nov-02 15:58
protectorNick Parker3-Nov-02 15:58 
GeneralRe: UI suggestions for the voting Pin
Paul Watson3-Nov-02 20:35
sitebuilderPaul Watson3-Nov-02 20:35 
GeneralRe: UI suggestions for the voting Pin
peterchen4-Nov-02 13:27
peterchen4-Nov-02 13:27 
Generallink to amazon Pin
Philip Fitzsimons1-Nov-02 7:19
Philip Fitzsimons1-Nov-02 7:19 
GeneralRe: link to amazon Pin
Nnamdi Onyeyiri2-Nov-02 2:27
Nnamdi Onyeyiri2-Nov-02 2:27 
Generalnew forum Pin
Jason Henderson31-Oct-02 10:05
Jason Henderson31-Oct-02 10:05 
GeneralRe: new forum Pin
Paul Watson1-Nov-02 4:03
sitebuilderPaul Watson1-Nov-02 4:03 
GeneralRe: new forum Pin
Philip Fitzsimons1-Nov-02 6:57
Philip Fitzsimons1-Nov-02 6:57 
GeneralNoise Filters Pin
Brian Delahunty31-Oct-02 9:42
Brian Delahunty31-Oct-02 9:42 
GeneralRe: Noise Filters Pin
Shog931-Oct-02 14:39
sitebuilderShog931-Oct-02 14:39 
GeneralRe: Noise Filters Pin
Chris Maunder1-Nov-02 3:37
cofounderChris Maunder1-Nov-02 3:37 
GeneralRe: Noise Filters Pin
Brian Delahunty1-Nov-02 3:41
Brian Delahunty1-Nov-02 3:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.