Skip to content

IT & Infrastructure

General IT Discussions

This category can be followed from the open social web via the handle it-infrastructure@forum.codeproject.com

6.1k Topics 18.2k Posts
  • how would you?....

    c++ graphics game-dev question
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Discussion threads disappearing.

    html question discussion
    2
    0 Votes
    2 Posts
    3 Views
    C
    Hi Erik, The old forums used a completely different system to the new scripts, and while I was able to pull most of the messages from the old forums there were still a small number that failed to transfer over for various reasons. Also, if you posted the new message while I was moving the system over then your message may have been lost in limbo. I did the changeover in the wee small hours (US time) but since there are a bunch of us from other time zones I knew there was a chance a couple may slip through the cracks... cheers, Chris
  • Linking to CodeProject

    question
    2
    0 Votes
    2 Posts
    2 Views
    C
    Yep - at the bottom of the Links Page
  • Awesome site...

    c++ design linux
    2
    0 Votes
    2 Posts
    2 Views
    C
    Thanks Farzad - I appreciate the comments - and I'm certainly looking forward to the articles. If you have some VB stuff then that would be awesome. I really want to start expanding and bringing the MFC/VB programmers together. cheers, Chris
  • New Discussion forums!

    design beta-testing discussion
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • How many programmers?

    c++ question
    2
    0 Votes
    2 Posts
    2 Views
    C
    I think the number is far higher than that by at least an order of magnitude. Consider how huge the IT industry is, and the populations of all the major western countries, and the answer would have to be in the tens of millions ================== The original message was: How many VC++ programmers are there? How many VB? How many PC-based (not necessarily Windows) programmers? Web programmers? Does anyone have answers to these questions, or a source for them? I found a source that said there are "537,000 computer operator / programmers". Does that sound accurate? Nick H.
  • Thumbs up for the new "other articles by this author" feature!

    3
    0 Votes
    3 Posts
    2 Views
    C
    Thanks Mike. ================== The original message was: Subject says it all - I really like that new feature! --Mike--
  • basic question

    question
    3
    0 Votes
    3 Posts
    4 Views
    M
    grr... sorry 'bout that. This message board software is annoying sometimes. ;) Anyway, the order in which function params are evaluated doesn't have to be left-to-right, as demonstrated by your sample code. Since params are pushed on the stack from right to left, the compiler is evaluating the params in right-to-left order, and so "i++" is evaluated first. (You can see this for yourself by looking as the disassembly.) This compiler-reordering is also the reason you must avoid stuff like: int x = i + (i++); There's no guarantee which operand will be evaluated first. --Mike-- ================== The original message was: What should the output to the following program be ? VC6 gives: 1 1 #include "stdio.h" void test(int i, int j) { printf("%d %d\n", i, j); } main() { int i = 0; test(i, ++i); }
  • Double processors

    adobe performance tutorial
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Nice site

    2
    0 Votes
    2 Posts
    2 Views
    C
    Thanks :)
  • CodeProject in MSDN mag

    2
    0 Votes
    2 Posts
    4 Views
    C
    Glad you liked it... ================== The original message was: I just saw the CP ad in MSDN mag. Pretty neat! I also think it's quite cool that both my name and my coworker Chris's name are visible in the screen shot. =)
  • Serial communication with Win32 API

    help question algorithms json
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • C/C++ compiler freely available from Borland

    c++ delphi com announcement
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Job Openning

    com career c++ question workspace
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Not getteing replies

    question
    3
    0 Votes
    3 Posts
    3 Views
    M
    Heh, I think you would find that folks here disagree with you about CodeGuru (or should I call it C*d*G*r* so as not to offend everyone?) ;) In fact, CodeProject was started because Chris Maunder was so unhappy with the way C*d*G*r* was being managed (or not managed) after it was sold. If you can find the C*d*G*r* message board for suggestions, go back a few months and look at all the posts saying how awful the site looked, and then notice how *nothing* was done. In fact the site still looks awful IMHonestO. --Mike-- ================== The original message was: someone has introduced this site to me, but i think another site: www.codeguru.com is better than this . u can get more replies at there....
  • online magazines

    c++ delphi css
    2
    0 Votes
    2 Posts
    2 Views
    C
    ...or better yet, post the URLs to webmaster@codeproject.com and I'll add them to the links page. ================== The original message was: Wondering if anyone's run across any links to online magazines or newsletters for C or C++. Just noticed a newsletter for C++Builder at Borland's web site. Wanted to locate other newsletters, especially those with more C or C++ content and less compiler specific content. If anyone's run across any others, please post the URLs here. Thank you.
  • What is wrong with that picture?

    c++ question css learning
    2
    0 Votes
    2 Posts
    2 Views
    C
    Article of the Week isn't necessarily the best or the biggest article - it's an article that discusses something interesting, cool or new. In this case I had just added the Scripting secitons and wanted to highlight the fact that we are no longer just C/C++. ================== The original message was: Article of the week ASP Guest book? It takes less that 15 minutes to write! Why? If I write MFC C++ guest book, can my article be article of the week? Gees
  • xbase

    c++ database
    2
    0 Votes
    2 Posts
    2 Views
    M
    Just found out the Xbase web site is back up at http://www.startech.keller.tx.us/xbase/xbase.html and future updates are being planned.
  • Forum Suggestions

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Add a comment

    2
    0 Votes
    2 Posts
    3 Views
    C
    No problem. But please - thank Uwe too. ================== The original message was: Thank you, Chris, for implementing the "Add a comment" feature for each article! Thank you, thank you, thank you.