When calling a form from a thread. It just hangs. No error detects or etc

Recommended Answers

All 4 Replies

Sounds to me like you have either a dead-lock.

What about to debug and go through your code to know in which method has infinite loop or deadlock like Comatose says...

ya thats a deadlock. A thread is running at back. when i cal a form from that thread. Form hangs. I think it does not go to either side coz form is actually a thread na of ui type so it hangs. NOw tell me the solution. Code goes like this

Thread in some different class than UI

while(true) 
     if ( some condition )
        dim abc as form
        abc.show()
        ' Here form just hangs and nothing ahead. any solution?
     end if
 end while

Should we understand these lines of codes!!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.