Why does my start method never get called in an EA?

 
I can't figure out why my start method isn't ever being called.

Here is the code:

//+------------------------------------------------------------------+
//|                                                         Test.mq4 |
//|                      Copyright © 2007, Red Mountain Technologies |
//|                                            http://www.rmtech.net |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2007, Red Mountain Technologies"
#property link      "http://www.rmtech.net"

//+------------------------------------------------------------------+
//| expert initialization function                                   |
//+------------------------------------------------------------------+
int init()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| expert deinitialization function                                 |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| expert start function                                            |
//+------------------------------------------------------------------+
int start()
  {
//----
   Print( "In Start" );
//----
   return(0);
  }
//+------------------------------------------------------------------+
 
please read documentation "MQL4: Program Run"
Make sure that experts are enabled (main menu - Tools - Options - Experts tab)