So i have a small issue... When going from one window(start window) and starting up second window(Main window), the second window is very heavy and need some loading time of around 10 secs, which means that the start window would freeze for 10 seconds then start Second window and close itself.
So Running This function takes 10 sec: BoardTable table = new BoardTable()
And i would like to have some live loading symbol/graphics while it's loading for 10 seconds and not freeze up whole UI.
*I have tried loading the second window on another thread result => Static thread error...
*Loaded With Static Thread(Got this idea from another post here at stackoverflow)... Either UI would freeze or second table would not load at all.
So im a little bit confused of how to implement a Loading Symbol of some sort when the UI just keeps Freezing :(