Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

Michael P Scherer

@Michael P Scherer
About
Posts
10
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • base or super-like functionality in C++?
    M Michael P Scherer

    Thanks :) ! Going back to C++ continues to remind me how different it really is from C#

    Google Profile YouTube Twitter Computer Science Series: Logic (pt1) (part 2) (part 3)

    C / C++ / MFC csharp c++ java php database

  • base or super-like functionality in C++?
    M Michael P Scherer

    I've been working in C# and Java for a while, with only a little experience in using C++, and I'm having a little trouble finding information on if there is anything like base or super in C++. If for example I have this:

    class foo {
    public:
    virtual void myMethod() { cout << "this part is in foo" << endl; }
    };

    class bar : public foo {
    public:
    void myMethod() { base.myMethod(); cout << "\tthis part is in bar" << endl; }
    };

    Such that, base.myMethod() would perform the tasks of myMethod() in the base class, and then it would carry out the new implementation from there; is anything like this possible in C++? thanks!

    Google Profile YouTube Twitter Computer Science Series: Logic (pt1) (part 2) (part 3)

    C / C++ / MFC csharp c++ java php database

  • Update+Increment else Insert
    M Michael P Scherer

    I'm not much of one with SQL, and I'm not sure if this is possible, but it seemed to me that it would be better to do it this way if it is than to split it into several queries. I'm making a page usage site for my ASP.NET page, and I want to store statistics for what browser is being used, which OS, etc. So I have a table with 2 fields: BrowserName and Sessions. I want to make a query that if the BrowserName exists, then it increments Sessions, otherwise it adds the BrowserName and sets Sessions to 1. Switching between Update/Insert in particular has left me clueless. Thanks in advance!

    SoCoder - CAT Program

    Database database csharp asp-net announcement

  • Branding yourself
    M Michael P Scherer

    I'm a young developer, and have built many different "brands" for myself, under all kinds of names for my software "companies" while I did little pet projects. Right now, I'm at a point where I'm actually getting jobs and things doing web design (2.0 and 1.0), and have a few programs/utilities that I'd like to showcase. I want to create a site and an identity to represent myself with, but I'm trying to decide whether I want to label it as "Michael P. Scherer - Web Designer, Programmer, excetera" or to make up another software label, i.e. "Microgenericintersoft". What do you guys think is the better route? Do you think that one way would be more successful than the other? thanks!

    SoCoder - CAT Program

    IT & Infrastructure csharp design question

  • Weird delay in Firefox with Ajax request
    M Michael P Scherer

    i'm guessing that 1 second is the time it takes to time out its dns request

    SoCoder - CAT Program

    Clever Code php visual-studio com question

  • I am such an idiot
    M Michael P Scherer

    forget decorated war heros, accomplished diplomats, and public speakers; you ate a one pound burger! and had a picture of you hung up on the wall! that's reason to vote for you! ;P

    SoCoder - CAT Program

    The Lounge csharp com question

  • Bool expression??
    M Michael P Scherer

    or he could just save the time it takes to write that long, verbose comment and just write return x;

    SoCoder - CAT Program

    The Weird and The Wonderful csharp linq functional question

  • How to configure VS2005 to use 64 bit csc.exe
    M Michael P Scherer

    I believe you can use the build configuration manager to change whether to compile as a 32-bit program, a 64-bit one, or as one that can go both ways.

    www.socoder.net

    .NET (Core and Framework) csharp visual-studio tutorial question

  • displaying date format
    M Michael P Scherer

    Usually its safest to use the ISO date standard, so yyyy-MM-dd. In your case, that would be 2007-31-07 and I'm pretty sure the 7 has to be preceded by a 0 for it to work properly, let alone for any single-digit number in the date.

    www.socoder.net

    ASP.NET database question

  • identifier expected
    M Michael P Scherer

    you left out the class identifier, i.e. private const string VirtualRoot instead of private const VirtualRoot

    www.socoder.net

    ASP.NET csharp visual-studio help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups