Add this line over there ....
while (!thStart.IsAlive) ;
This will make sure that your first thread is started working...
Thread thStart = new Thread(BindCSVData);
thStart.IsBackground = true;
thStart.Start();
while (!thStart.IsAlive) ;
Thread thStart1 = new Thread(BindTreeViewData);
thStart1.Start();