Skip to content

The Lounge

For discussing anything related to a software developer's life but is not for programming questions. <b><a href="/Questions/ask.aspx" style="color: rgba(255, 0, 0, 1)">Got a programming question?</a></b><br><br>

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

118 Topics 758 Posts
  • How important is certification for career?

    4
    0 Votes
    4 Posts
    0 Views
    M
    But something Michael Dunn did in his Resumee I consider better than any " Organized Qualification " was to state how many articles he has published on theCodeProject.com Heh, remind me to interview with you the next time I change jobs, Colin! ;) I must credit CP's own Erik Thompson for the idea of putting the CP articles in their own section on my resume. --Mike-- http://home.inreach.com/mdunn/
  • Starting a new job! What to expect?

    3
    0 Votes
    3 Posts
    0 Views
    M
    Heh, I played some pinball on Thursday... too bad Williams is out of the pin business; there's not much worth playing these days. :( Dang, it's almost noon which means I've only got 4.5 hours of sunlight left (stupid time change :mad: ) so I'd better get off my butt and do something. See y'all in about 5 hours. :D --Mike-- http://home.inreach.com/mdunn/
  • Guess who?

    7
    0 Votes
    7 Posts
    0 Views
    C
    You're right. Currently you can't post using a registered name, but you can using something really close to a registered name. I spent a bit of time trying to work out the best approach given limited screen space but am out of energy, so we all need to have a collective think about it and on Monday we'll come up with the perfect solution, right? right?? :) cheers, Chris Maunder
  • Codeproject Bookmarks?

    2
    0 Votes
    2 Posts
    0 Views
    M
    When you are reading an article, there is a group of links in the upper-right corner of the orange page header. The top one is (in bold) "Bookmark this" --Mike-- http://home.inreach.com/mdunn/
  • Dundas Last MFC bundled Gold Rush ?

    4
    0 Votes
    4 Posts
    0 Views
    M
    I'm own a fairly small shop. I just write a few shareware apps in my spare time. I just sunk a months worth of revenue into it, so I hope it's worth it. Hopefully, with some of this code, I'll be able to crank out some more shareware apps and make it back! Maybe I should find a way of convincing my "day job" to pay for it... ;-) j/k -Mike Stevenson Owner, Liquid Mirror Software CoderX@liquidmirror.com
  • XML for application configuration

    4
    0 Votes
    4 Posts
    0 Views
    A
    I'm using XML for program information, and found it to be quite flexible: I'm using a small XML document to store a set of database file names and server information for something like this....when I ask the program to open an XML file, I inspect the contents of the file, determine what is in it, and open the database files specified in the XML document. The amount of code to pull and save information into the XML document is much more than I wish it were (it took about 100 lines of code to wrap a simple 3 item XML document and allow the object to be persisted). I've not yet devised a "better" mouse trap, but there are a couple ways to make life easier: One possible solution would be to write a class generator based on an XML document, but I suspect that would be a never ending battle, and might not help much....
  • Program/Project Documentation

    2
    0 Votes
    2 Posts
    0 Views
    B
    I have written a few shareware/freeware applications in the past 8 years. I never created a spec for any of these because they were all too small. I think most of these programs were 10,000 lines long (or less), so I just used comments to document functions and functionality. I don't think a fully documented spec is really necessary unless the project is over 20,000 lines of code. Brigham W. Thorp Software Engineer Timex Corporation
  • ActiveX Designer SDK

    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Comments scripts

    4
    0 Votes
    4 Posts
    0 Views
    C
    Yep - good idea. Will add it to the list. cheers, Chris Maunder
  • WM_APP vs WM_USER

    2
    0 Votes
    2 Posts
    0 Views
    L
    I'm not an expert on this, but I think this is true: You can't detect if a given value is already used by a common control because they're just numbers. You can use WM_APP and above which should work, but didn't MS say that about WM_USER? (Or did I just misinterpret the documentation I read which said "use WM_USER and above?) You can use RegisterWindowMessage to allocate yourself a number that should be unique (given nothing is badly behaved), but this uses up some system resources or something like that, so "should be avoided". At the moment, I'm going the RegisterWindowMessage route. BTW, I used WM_USER and above for a while and didn't notice anything wrong for a very long time. Then one of my applications started behaving very strangely and I tracked it down to "my" messages coming from MFC/common controls out of the blue because I'd stumbled on to some numbers that were used for other things. (For example, I had a WM_USER+x message which meant "blah blah has happened, close the window if xyz" and that message was being received every time I gave the window focus, which meant the application appeared to close as soon as it openned! I almost gave up programming when that happened, I couldn't see how it was even possible! hehe So the WM_USER thing may not have bitten you yet, but avoid it before it does!) Hope that's accurate and helpful to ya!
  • Use your Real Name Poll,

    7
    0 Votes
    7 Posts
    0 Views
    A
    Chris, I vote for (4). Thx, /ravi (Not logged in, but it's me) http://www.ravib.com "There is always one more bug..." ravib@ravib.com
  • Crazy Specification

    8
    0 Votes
    8 Posts
    0 Views
    C
    sweet!
  • Is Codeproject getting soft?

    48
    0 Votes
    48 Posts
    0 Views
    M
    Better than that, how about posting some articles yourselves?!? You're so quick to criticize that there is too much fluff. If you don't like the fluff, write a killer article and post it. This is a site that is driven by its members/readers. That's the reason why this site is so great. It's the reason why the content is so fresh. It's the reason why the content is so RELAVANT. If they go through a slow period, it's totally understandable (especially during the holidays when us coders are supposed to be at home spending time with their families). ;-) If CodeProject paid for writers to puke out articles once a month it would suck just like all the other sites out there. And in regards to CodeGuru, I don't think that it's superior to CodeProject. I think they are paying for regurgitated advertising designed to entice us to buy the authors book. Not much use to me. CodeProject Rocks! And I thank Chris Maunder for putting as much effort as he has into it. -Mike Stevenson Owner, Liquid Mirror Software CoderX@liquidmirror.com
  • Relax folks....

    12
    0 Votes
    12 Posts
    0 Views
    C
    Yep - this is my preferred option. I'll try and get this done this week. cheers, Chris Maunder
  • The Imfamous 3 F()s problem.

    5
    0 Votes
    5 Posts
    0 Views
    S
    I guess that's my point if this is a relatively recent feature then it raises questions whether the language is moving in the right direction at all. There are always tradeoffs to be made, like speed vs. memory. What we have here is flexibility vs. confusion. Whoever are these people making decisions over there, they clearly pick flexibility at all times. Now, I can "hold it" and stick to features I'm confortable with and just like a PL-I programmer use a language I don't completely know. Or I can just accept the fact that there is something wrong with the language I worked for 9 years with and move on... until my next choice is spoiled too :)
  • windows key

    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • WM_APP vs WM_USER

    5
    0 Votes
    5 Posts
    0 Views
    U
    I'm using 0x7FFF - n to be sure that there are no problem with extra libraries that I us
  • Recommendations for a good DCOM/MTA development book?

    2
    0 Votes
    2 Posts
    0 Views
    A
    Read the - DCOM specification - Proffessionel DCOM, Richard Grimes - DCOM Application Development, Jonathan Pinnock - COM IDL & Interface design, Al Major - Programming Distributed Applications with COM and MS Visual Basic 6.0 (forget the VB thing) - Visual C++6 MTS Programming, Richard Grimes - COM/DCOM Unleashed. - www.sellsbrothers.com/tools - http://discuss.microsoft.com/archives/dcom.html HTH, Alla
  • Rumors of VC++ 7.0

    5
    0 Votes
    5 Posts
    0 Views
    L
    I have asked microsoft sales about when VC++ 7.0 Will be released and I was told first quarter of 2001. So My guess will be about March 2001.
  • You thought the billion question was bad...

    6
    0 Votes
    6 Posts
    0 Views
    J
    I normally write "3-Oct-2000", but even that has some problems. The month forces you into English, and if you adapt that to other languages, you need more letters (French requires 4 letters to differeniate "Juine" from "Juile"