Click here to Skip to main content
15,896,526 members
Home / Discussions / C#
   

C#

 
GeneralRe: Kill a working BackgroundWorker Pin
Luis Alonso Ramos10-Apr-06 13:48
Luis Alonso Ramos10-Apr-06 13:48 
AnswerRe: Kill a working BackgroundWorker Pin
Judah Gabriel Himango10-Apr-06 10:52
sponsorJudah Gabriel Himango10-Apr-06 10:52 
GeneralRe: Kill a working BackgroundWorker Pin
Luis Alonso Ramos10-Apr-06 13:53
Luis Alonso Ramos10-Apr-06 13:53 
GeneralRe: Kill a working BackgroundWorker Pin
Judah Gabriel Himango10-Apr-06 15:15
sponsorJudah Gabriel Himango10-Apr-06 15:15 
GeneralRe: Kill a working BackgroundWorker Pin
Luis Alonso Ramos10-Apr-06 15:22
Luis Alonso Ramos10-Apr-06 15:22 
QuestionUsing Statements - Confusion Reigns Pin
MrEyes10-Apr-06 7:59
MrEyes10-Apr-06 7:59 
AnswerRe: Using Statements - Confusion Reigns Pin
Dan Neely10-Apr-06 8:03
Dan Neely10-Apr-06 8:03 
GeneralRe: Using Statements - Confusion Reigns Pin
MrEyes10-Apr-06 8:08
MrEyes10-Apr-06 8:08 
OK I can live with that, thanks for the prompt reply.

Now just to test your skills further Smile | :) How about this pearl:

I have another namespace problem that I think may be related:

I have the following class:

<br />
namespace Where.No.Man.Has.Gone<br />
{<br />
  class Before<br />
  {<br />
    .....<br />
  }<br />
}<br />


In another area of the code I need to use the Before class, so I duly created a using statement for it and called the class:

<br />
using Where.No.Man.Has.Gone<br />
<br />
namespace Right.Here.Right<br />
{<br />
  class Now<br />
  {<br />
    Before b = new Before()<br />
  }<br />
}<br />


The compiler fails with this on the Before class initilialisation, but does work with this:

<br />
using Where.No.Man.Has.Gone<br />
<br />
namespace Right.Here.Right<br />
{<br />
  class Now<br />
  {<br />
    Where.No.Man.Has.Gone.Before b = new Where.No.Man.Has.Gone.Before()<br />
  }<br />
}<br />


The using statement is valid, as the compiler does raise an eyebrow at it.
GeneralRe: Using Statements - Confusion Reigns Pin
Wjousts10-Apr-06 10:47
Wjousts10-Apr-06 10:47 
Questionpop-up alerts Pin
aero_t10-Apr-06 7:42
aero_t10-Apr-06 7:42 
AnswerRe: pop-up alerts Pin
User 665810-Apr-06 9:09
User 665810-Apr-06 9:09 
AnswerRe: pop-up alerts Pin
Ravi Bhavnani10-Apr-06 10:23
professionalRavi Bhavnani10-Apr-06 10:23 
AnswerRe: pop-up alerts Pin
Ravi Bhavnani10-Apr-06 10:28
professionalRavi Bhavnani10-Apr-06 10:28 
GeneralRe: pop-up alerts Pin
aero_t10-Apr-06 14:29
aero_t10-Apr-06 14:29 
Questionhow to monitor application activity Pin
Sergey Gorchichko10-Apr-06 7:33
Sergey Gorchichko10-Apr-06 7:33 
AnswerRe: how to monitor application activity Pin
Judah Gabriel Himango10-Apr-06 10:45
sponsorJudah Gabriel Himango10-Apr-06 10:45 
GeneralRe: how to monitor application activity Pin
Sergey Gorchichko10-Apr-06 19:45
Sergey Gorchichko10-Apr-06 19:45 
QuestionA tale of DataGrids, Scrollbars, and Sorting Pin
Pseudo Quasi10-Apr-06 7:16
Pseudo Quasi10-Apr-06 7:16 
QuestionUsing Fonts with Windows Forms Pin
Mario Bessa10-Apr-06 7:08
Mario Bessa10-Apr-06 7:08 
AnswerRe: Using Fonts with Windows Forms Pin
Judah Gabriel Himango10-Apr-06 7:12
sponsorJudah Gabriel Himango10-Apr-06 7:12 
Questioncompare hashtable values Pin
kani9810-Apr-06 6:20
kani9810-Apr-06 6:20 
AnswerRe: compare hashtable values Pin
Ravi Bhavnani10-Apr-06 6:43
professionalRavi Bhavnani10-Apr-06 6:43 
GeneralRe: compare hashtable values Pin
kani9810-Apr-06 7:25
kani9810-Apr-06 7:25 
AnswerRe: compare hashtable values Pin
Ravi Bhavnani10-Apr-06 7:33
professionalRavi Bhavnani10-Apr-06 7:33 
GeneralRe: compare hashtable values Pin
leppie10-Apr-06 10:36
leppie10-Apr-06 10:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.