CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: MattInSD73

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    2,540

    sqlDataSource selectCommand

    I am having trouble figuring out how to get my datasource to pull a query with a where clause when it detects a query string and strip the where clause when the parameter is empty.

    My datasource...
  2. Re: setbase not setting the base for cout

    I assumed that the doubles would get converted to the proper base, but apparently cout and setbase don't play that well enough together as to accept a non-integral type. Luckily, I don't need the...
  3. [RESOLVED] setbase not setting the base for cout

    I'm having trouble understanding why this code doesn't work. I am copying almost verbatim from msdn help for the setw iomanip library function. It should set the base for output, but it isn't.

    ...
  4. Replies
    1
    Views
    5,538

    listBox.InvokeRequired question

    I'm trying to figure out what's going on in this snippet of code. I think the code is making sure the listbox delegate is invoked? Does this mean a listbox is a delegate? Any clarity would be...
  5. Replies
    3
    Views
    4,248

    Re: Generics question

    Thanks! I thought there was a was to make it more "loosely coupled" than I had it written originally(if that's the correct term).

    ~M
  6. Replies
    3
    Views
    4,248

    Re: Generics question

    err (Person p1, Person p2)
  7. Replies
    3
    Views
    4,248

    [RESOLVED] Generics question

    I have a question about generics. I was wondering if there was a way to rewrite this:

    class ByFirstNameComparer : IComparer<Person>
    {
    public int Compare(<Person> p1, <Person> p2)
    ...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured