Well i am creating a program in which i need a separate window to show the log.
I managed to show another form using
form1.ShowDialog();
But unfortunately this transfers the focus to the shown form and the user is not able to click on the previous form until he\she closes it.
Question : How could i use 2 separate forms at the same time ( one for the main ui, and one for the logger ).
.Show()instead of.ShowDialog()