Forum Replies Created

Viewing 15 posts - 2,776 through 2,790 (of 9,707 total)

  • RE: C#.Net "message box" question

    GAH.

    "A breakpoint could not be inserted at this location."

    And when I do find a place where I can insert a breakpoint, there is NOTHING in the immediate window. It's empty.

    Useless....

  • RE: C#.Net "message box" question

    The thing is, I don't want to add text to my web page. I want a popup box to appear that I can click off and let the code continue...

  • RE: C#.Net "message box" question

    Sean Lange (3/11/2015)


    Brandie Tarvin (3/11/2015)


    Phil Parkin (3/11/2015)


    Brandie Tarvin (3/11/2015)


    Phil Parkin (3/11/2015)


    What sort of C# app is this? Windows forms, console, web etc?

    Ummm... That's a good question. Where would I look...

  • RE: C#.Net "message box" question

    Sean Lange (3/11/2015)


    Brandie Tarvin (3/11/2015)


    Phil Parkin (3/11/2015)


    What sort of C# app is this? Windows forms, console, web etc?

    Ummm... That's a good question. Where would I look to find that information?...

  • RE: C#.Net "message box" question

    Phil Parkin (3/11/2015)


    Brandie Tarvin (3/11/2015)


    Phil Parkin (3/11/2015)


    What sort of C# app is this? Windows forms, console, web etc?

    Ummm... That's a good question. Where would I look to find that information?...

  • RE: C#.Net "message box" question

    Phil Parkin (3/11/2015)


    What sort of C# app is this? Windows forms, console, web etc?

    Ummm... That's a good question. Where would I look to find that information? (Someone else created it).

  • RE: C#.Net "message box" question

    I've even tried putting it outside the switch and outside the foreach, and I'm still getting the error.

    This is frustrating.

  • RE: C#.Net "message box" question

    Phil Parkin (3/11/2015)


    Try adding a couple more statements:

    switch (name) {

    case "Job1": this.DTDQC.Src = Page.ResolveClientUrl(imagename);

    break;

    case "Job2": this.XMEDPTX.Src = Page.ResolveClientUrl(imagename);

    break;

    default:

    MessageBox.Show("hello, how are you");

    break;

    ...

    Nope. "The name 'MessageBox' does not exist in the current...

  • RE: C#.Net "message box" question

    There is no indication of an error on the previous line.

    I've tried to put it into a void method that calls a SQL proc.

    void findstatus ()

    ...

  • RE: Are the posted questions getting worse?

    GilaMonster (3/11/2015)


    Brandie Tarvin (3/10/2015)


    SQLRNNR (3/10/2015)


    Jack Corbett (3/10/2015)


    SQLRNNR (3/9/2015)


    Jack Corbett (3/9/2015)


    Grant Fritchey (3/9/2015)


    By the way, Gianluca is a giant.

    So this means if and when I meet Gianluca...

  • RE: Are the posted questions getting worse?

    SQLRNNR (3/10/2015)


    Jack Corbett (3/10/2015)


    SQLRNNR (3/9/2015)


    Jack Corbett (3/9/2015)


    Grant Fritchey (3/9/2015)


    By the way, Gianluca is a giant.

    So this means if and when I meet Gianluca he'll have to...

  • RE: Are the posted questions getting worse?

    Jack Corbett (3/9/2015)


    FYI - if you want to speak at the PASS Summit you only have one more week to submit. I submitted 3 sessions this past...

  • RE: SUM OVER() coming up with different values than CTE query

    dwain.c (3/8/2015)


    I tend to avoid the SUM() OVER and related functions for another reason.

    The Performance of the T-SQL Window Functions[/url]

    Except in cases where a query is really complex already and...

  • RE: SUM OVER() coming up with different values than CTE query

    Turns out I have 244 rows that are sorta duplicated (dups, but not true dups when I look at some of the more unique columns).

    So this means there is yet...

  • RE: SUM OVER() coming up with different values than CTE query

    Eirikur Eiriksson (3/6/2015)


    Quick thought, the difference is mainly that the first code snip implies a group by which translates to a distinct aggregation of each set members by group, the...

Viewing 15 posts - 2,776 through 2,790 (of 9,707 total)