Click here to Skip to main content
15,892,537 members
Home / Discussions / C#
   

C#

 
GeneralRe: Enumeration Location Pin
carbon_golem24-Apr-08 10:53
carbon_golem24-Apr-08 10:53 
GeneralAdvice required on Matching Input: Code copied from ARL(Advanced Reporting Language) Pin
MumbleB24-Apr-08 7:06
MumbleB24-Apr-08 7:06 
GeneralRe: Advice required on Matching Input: Code copied from ARL(Advanced Reporting Language) Pin
KaptinKrunch24-Apr-08 7:16
KaptinKrunch24-Apr-08 7:16 
GeneralRe: Advice required on Matching Input: Code copied from ARL(Advanced Reporting Language) Pin
MumbleB24-Apr-08 7:26
MumbleB24-Apr-08 7:26 
GeneralRe: Advice required on Matching Input: Code copied from ARL(Advanced Reporting Language) Pin
carbon_golem24-Apr-08 7:17
carbon_golem24-Apr-08 7:17 
GeneralRe: Advice required on Matching Input: Code copied from ARL(Advanced Reporting Language) Pin
KaptinKrunch24-Apr-08 7:34
KaptinKrunch24-Apr-08 7:34 
GeneralRe: Advice required on Matching Input: Code copied from ARL(Advanced Reporting Language) Pin
MumbleB24-Apr-08 7:40
MumbleB24-Apr-08 7:40 
GeneralRe: Advice required on Matching Input: Code copied from ARL(Advanced Reporting Language) Pin
Ed.Poore24-Apr-08 8:45
Ed.Poore24-Apr-08 8:45 
private void btnValidate_Click(object sender, EventArgs e)
{
  int pcode = 0;
  // Some error handling incase it's an invalid integer
  if (int.TryParse(txtboxPcode.Text) == false)
  {
    MessageBox.Show("Invalid Integer!");
    return;
  }
  // Check to see if it's in the appropriate range
  if ((pcode >= 4731) && (pcode <= 6499))
  {
    MessageBox.Show("Eastern Cape");
    return;
  }
  // Outside all ranges
  MessageBox.Show("Unknown Cape!"); // :-)
}



GeneralRe: Advice required on Matching Input: Code copied from ARL(Advanced Reporting Language) Pin
MumbleB24-Apr-08 18:46
MumbleB24-Apr-08 18:46 
Generalproblems parsing [modified] Pin
stephan_00724-Apr-08 6:46
stephan_00724-Apr-08 6:46 
GeneralRe: problems parsing Pin
KaptinKrunch24-Apr-08 7:31
KaptinKrunch24-Apr-08 7:31 
GeneralRe: problems parsing Pin
Anthony Mushrow24-Apr-08 12:18
professionalAnthony Mushrow24-Apr-08 12:18 
Questionthe main class in C# Pin
A@YZ24-Apr-08 6:31
A@YZ24-Apr-08 6:31 
GeneralRe: the main class in C# Pin
Anthony Mushrow24-Apr-08 6:52
professionalAnthony Mushrow24-Apr-08 6:52 
GeneralRe: the main class in C# Pin
Colin Angus Mackay24-Apr-08 7:50
Colin Angus Mackay24-Apr-08 7:50 
GeneralRe: the main class in C# Pin
Jasmine250124-Apr-08 8:51
Jasmine250124-Apr-08 8:51 
GeneralRe: the main class in C# Pin
Colin Angus Mackay24-Apr-08 7:51
Colin Angus Mackay24-Apr-08 7:51 
GeneralRe: the main class in C# Pin
PIEBALDconsult24-Apr-08 8:51
mvePIEBALDconsult24-Apr-08 8:51 
JokeRe: the main class in C# Pin
Guffa24-Apr-08 9:29
Guffa24-Apr-08 9:29 
GeneralRe: the main class in C# Pin
Vikram A Punathambekar24-Apr-08 19:03
Vikram A Punathambekar24-Apr-08 19:03 
Questionwhat is meant by Interface in C#? Pin
A@YZ24-Apr-08 6:29
A@YZ24-Apr-08 6:29 
AnswerRe: what is meant by Interface in C#? Pin
johnnycantcode24-Apr-08 6:41
johnnycantcode24-Apr-08 6:41 
AnswerRe: what is meant by Interface in C#? Pin
Gareth H24-Apr-08 6:57
Gareth H24-Apr-08 6:57 
QuestionMultiple Inheritance is possible in C# are not? Pin
A@YZ24-Apr-08 6:26
A@YZ24-Apr-08 6:26 
AnswerRe: Multiple Inheritance is possible in C# are not? Pin
Gareth H24-Apr-08 6:45
Gareth H24-Apr-08 6:45 

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.