Check if widget is active

According to the Codex, you may add some additional parameters to is_active_widget() to make it work. So try this one:

if ( is_active_widget(false, false, 'Search_Widget_Page', true) ) { // check if search widget is used

   // Do not display this widget

} else {

   // Display this widget

}