Click here to Skip to main content
15,890,438 members
Home / Discussions / C#
   

C#

 
GeneralRe: Inserting Localised Lookup Data into a Fresh Database Pin
Gerry Schmitz23-Feb-17 13:54
mveGerry Schmitz23-Feb-17 13:54 
GeneralRe: Inserting Localised Lookup Data into a Fresh Database Pin
Jammer23-Feb-17 20:34
Jammer23-Feb-17 20:34 
GeneralRe: Inserting Localised Lookup Data into a Fresh Database Pin
Gerry Schmitz23-Feb-17 20:38
mveGerry Schmitz23-Feb-17 20:38 
GeneralRe: Inserting Localised Lookup Data into a Fresh Database Pin
Jammer23-Feb-17 20:49
Jammer23-Feb-17 20:49 
GeneralRe: Inserting Localised Lookup Data into a Fresh Database Pin
Gerry Schmitz23-Feb-17 21:28
mveGerry Schmitz23-Feb-17 21:28 
AnswerRe: Inserting Localised Lookup Data into a Fresh Database Pin
Bernhard Hiller23-Feb-17 21:32
Bernhard Hiller23-Feb-17 21:32 
Questionwhy not escape to catch an error when i next run? Pin
Member 245846723-Feb-17 2:18
Member 245846723-Feb-17 2:18 
AnswerRe: why not escape to catch an error when i next run? Pin
OriginalGriff23-Feb-17 2:40
mveOriginalGriff23-Feb-17 2:40 
It does - that's the whole point.
You use the try block to catch and handle exceptions, and the code will continue from the line immediately after the catch block.
Since your whole try...catch block is inside your loop, the loop will continue:
int j = 0;
for (int i = 0; i < 5; i++)
    {
    Console.WriteLine(i);
    try
        {
        i = i / j;
        }
    catch (Exception ex)
        {
        Console.WriteLine(ex.Message);
        }
    }

Gives:
0
Attempted to divide by zero.
1
Attempted to divide by zero.
2
Attempted to divide by zero.
3
Attempted to divide by zero.
4
Attempted to divide by zero.

Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

GeneralRe: why not escape to catch an error when i next run? Pin
Member 245846723-Feb-17 16:08
Member 245846723-Feb-17 16:08 
GeneralRe: why not escape to catch an error when i next run? Pin
OriginalGriff23-Feb-17 20:35
mveOriginalGriff23-Feb-17 20:35 
GeneralRe: why not escape to catch an error when i next run? Pin
Member 24584672-Mar-17 16:03
Member 24584672-Mar-17 16:03 
AnswerRe: why not escape to catch an error when i next run? Pin
Eddy Vluggen23-Feb-17 2:43
professionalEddy Vluggen23-Feb-17 2:43 
QuestionVS c# 2015 Setup Project: How to force Rollback before commit on my own condition Pin
nemo1423-Feb-17 1:07
nemo1423-Feb-17 1:07 
AnswerRe: VS c# 2015 Setup Project: How to force Rollback before commit on my own condition Pin
OriginalGriff23-Feb-17 1:22
mveOriginalGriff23-Feb-17 1:22 
AnswerRe: VS c# 2015 Setup Project: How to force Rollback before commit on my own condition Pin
Bernhard Hiller23-Feb-17 21:39
Bernhard Hiller23-Feb-17 21:39 
QuestionC# Winform: Slide show is not working when i use Quartz.net to fire my routine at specific time Pin
Tridip Bhattacharjee22-Feb-17 23:01
professionalTridip Bhattacharjee22-Feb-17 23:01 
AnswerRe: C# Winform: Slide show is not working when i use Quartz.net to fire my routine at specific time Pin
Pete O'Hanlon22-Feb-17 23:32
mvePete O'Hanlon22-Feb-17 23:32 
AnswerRe: C# Winform: Slide show is not working when i use Quartz.net to fire my routine at specific time Pin
Gerry Schmitz23-Feb-17 9:44
mveGerry Schmitz23-Feb-17 9:44 
QuestionSpell checker for c# project Pin
Ramesh Tigapuram21-Feb-17 22:14
Ramesh Tigapuram21-Feb-17 22:14 
AnswerRe: Spell checker for c# project Pin
Richard MacCutchan21-Feb-17 23:18
mveRichard MacCutchan21-Feb-17 23:18 
AnswerRe: Spell checker for c# project Pin
Pete O'Hanlon21-Feb-17 23:19
mvePete O'Hanlon21-Feb-17 23:19 
QuestionSea trying to change the RichTextBox does not work ? Pin
Member 245846721-Feb-17 18:59
Member 245846721-Feb-17 18:59 
AnswerRe: Sea trying to change the RichTextBox does not work ? Pin
Pete O'Hanlon21-Feb-17 21:27
mvePete O'Hanlon21-Feb-17 21:27 
QuestionPrinting arabic from epson TM-T88V VB.NET, C# Pin
aliraza156721-Feb-17 2:02
professionalaliraza156721-Feb-17 2:02 
AnswerRe: Printing arabic from epson TM-T88V VB.NET, C# Pin
Jochen Arndt21-Feb-17 2:48
professionalJochen Arndt21-Feb-17 2:48 

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.