Is Form() safe to use?

Hello,
Is Form() safe to use with gui stuff in win32gdk? Its clearly not threadsafe… Should I avoid using it?
Ed

Hi Ed,
do you create extra thread?
Despite of the fact that win32gdk has 3 threads running
it can be treated as a single thread application
because threads have some type of syncronization
(for terminal input thread) and independency (similar to
appartment threads in COM terms)
We are actively using TString and its functions inside ROOT
without problems.

Regards. Valeriy

Valeriy - thanks, thats all I needed to hear. No, I don’t create my own threads…

Ed