1. try to enclose your initialization procedures into BeginInit/EndInit methods as shown below:
[VB.Net]
Private Sub Search()
Me.FlyGrid1.BeginInit()
Try
RemoveDatasource()
PrepareSelectCommand(PrepareExp())
FillDataset()
SetDatasource()
Finally
Me.FlyGrid1.EndInit()
End Try
End Sub