Click here to Skip to main content
15,903,856 members
Home / Discussions / C#
   

C#

 
AnswerRe: Trigger after printing Pin
Not Active15-Apr-10 14:39
mentorNot Active15-Apr-10 14:39 
AnswerRe: Trigger after printing Pin
Ravi Bhavnani15-Apr-10 17:18
professionalRavi Bhavnani15-Apr-10 17:18 
GeneralRe: Trigger after printing Pin
Dave Kreskowiak15-Apr-10 17:56
mveDave Kreskowiak15-Apr-10 17:56 
GeneralRe: Trigger after printing Pin
Ravi Bhavnani16-Apr-10 3:32
professionalRavi Bhavnani16-Apr-10 3:32 
GeneralRe: Trigger after printing Pin
Dave Kreskowiak16-Apr-10 9:32
mveDave Kreskowiak16-Apr-10 9:32 
GeneralRe: Trigger after printing Pin
Ravi Bhavnani16-Apr-10 10:14
professionalRavi Bhavnani16-Apr-10 10:14 
Questionhelp Pin
samuel200215-Apr-10 11:20
samuel200215-Apr-10 11:20 
QuestionLive streaming question Pin
Rajan UNCC 15-Apr-10 10:52
Rajan UNCC 15-Apr-10 10:52 
AnswerRe: Live streaming question Pin
Not Active15-Apr-10 14:35
mentorNot Active15-Apr-10 14:35 
QuestionIIS Media service question Pin
Rajan UNCC 15-Apr-10 10:42
Rajan UNCC 15-Apr-10 10:42 
QuestionFile Dialog Result Pin
mprice21415-Apr-10 9:38
mprice21415-Apr-10 9:38 
AnswerRe: File Dialog Result [modified] Pin
kevinnicol15-Apr-10 9:41
kevinnicol15-Apr-10 9:41 
AnswerRe: File Dialog Result Pin
PIEBALDconsult15-Apr-10 9:44
mvePIEBALDconsult15-Apr-10 9:44 
GeneralRe: File Dialog Result Pin
mprice21415-Apr-10 9:57
mprice21415-Apr-10 9:57 
AnswerRe: File Dialog Result Pin
Calla15-Apr-10 22:31
Calla15-Apr-10 22:31 
GeneralRe: File Dialog Result Pin
mprice21416-Apr-10 2:39
mprice21416-Apr-10 2:39 
QuestionAdding code to a method prevents previous code from executing? [modified] [SOLVED] Pin
Paladin200015-Apr-10 9:17
Paladin200015-Apr-10 9:17 
AnswerRe: Adding code to a method prevents previous code from executing? [SOLVED] Pin
Paladin200015-Apr-10 11:25
Paladin200015-Apr-10 11:25 
QuestionDemand/LinkDemand Pin
Kevin Marois15-Apr-10 9:03
professionalKevin Marois15-Apr-10 9:03 
AnswerRe: Demand/LinkDemand Pin
Ravi Bhavnani15-Apr-10 17:21
professionalRavi Bhavnani15-Apr-10 17:21 
QuestionSimple C# logic traingle ?? Pin
Jaison V15-Apr-10 8:13
Jaison V15-Apr-10 8:13 
AnswerRe: Simple C# logic traingle ?? Pin
OriginalGriff15-Apr-10 8:28
mveOriginalGriff15-Apr-10 8:28 
In order to use the break and continue statements, you need to use a for, foreach or while loop - they are illegal elsewhere (ignoring switch statements which would not be helpful to you). If you must use them, then set up a non-terminating while loop (where the condition always evaluates to true) and control the loop execution / exit with break and continue

I can think of no programming exercise for novices where goto should be used at all, with the sole exception of
goto Hell;
Laugh | :laugh:
You should never use standby on an elephant. It always crashes when you lift the ears. - Mark Wallace

C/C++ (I dont see a huge difference between them, and the 'benefits' of C++ are questionable, who needs inheritance when you have copy and paste) - fat_boy

AnswerRe: Simple C# logic traingle ?? Pin
PIEBALDconsult15-Apr-10 9:31
mvePIEBALDconsult15-Apr-10 9:31 
GeneralRe: Simple C# logic traingle ?? Pin
Jaison V15-Apr-10 10:40
Jaison V15-Apr-10 10:40 
AnswerRe: Simple C# logic traingle ?? Pin
Jaison V15-Apr-10 11:21
Jaison V15-Apr-10 11:21 

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.