How to create waiting clock while function is in progress?

  • Thread starter Thread starter TakeshiKitano
  • Start date Start date
T

TakeshiKitano

Guest
Hi all,

How to create waiting clock while function is in progress?

I tried something like this ...

1. I created a new WinForm or WPF window and call it WaitWindow

2. I follow this steps ...

- 1. WaitWindow ww = new WaitWindow();

- 2. ww.Show();

- 3. readDatabase();

- 4. ww.Close();


... but I think this is not good way of how to do it so please help me with this problem

Continue reading...
 
Back
Top