Hello. Anybody can suggest whats the best way to trap the null exeption from this code of mine.

vb Code:
  1. long last_Sent;
  2.         long last_Rec;
  3.  
  4.         private void timerPackets_Tick(object sender, EventArgs e)
  5.         {
  6.             try
  7.             {
  8.                 string strSent = null;
  9.                 string strReceived = null;
  10.                 long strStatdon;
  11.                 long strStatup;
  12.                 long curr_Sent = 0;
  13.                 long curr_Rec = 0;
  14.                 long speedDown = 0;
  15.                 long speedUp = 0;
  16.  
  17.                
  18.                 strSent = clsMethods.strLines(5);
  19.                 strReceived = clsMethods.strLines(4);
  20.                 string[] arrSent = strSent.Split(',');
  21.                 string[] arrRec = strReceived.Split(',');
  22.                 curr_Sent = long.Parse(arrSent[1]);
  23.                 curr_Rec = long.Parse(arrRec[1]);
  24.                 speedDown = curr_Rec - last_Rec;
  25.                 speedUp = curr_Sent - last_Sent;
  26.                 strStatdon = speedDown * 8;
  27.                 strStatup = speedUp * 8;
  28.                 StatusDown.Text = clsMethods.convertSize(strStatdon) + " /s";
  29.                 StatusUP.Text = clsMethods.convertSize(strStatup) + " /s";
  30.                 lblUP.Text = clsMethods.convertSize(last_Sent);                
  31.                 lblDown.Text = clsMethods.convertSize(last_Rec);
  32.                 last_Rec = long.Parse(arrRec[1]);
  33.                 last_Sent = long.Parse(arrSent[1]);
  34.             }
  35.             catch (Exception ex)
  36.             {
  37.                 MessageBox.Show(ex.ToString(),"Information");
  38.             }
For I just popup the error being generated.
On my code sometimes this two line
strSent = clsMethods.strLines(5);
strReceived = clsMethods.strLines(4);

doesn't return a value.
that's why this line
string[] arrSent = strSent.Split(',');
string[] arrRec = strReceived.Split(',');
throw me an exeption.
I want when nullreference error occured just to continue the timer tick until that two line have value in it..

THanks.
br.