Booji wrote: > Why does a MessageBox () hang up ? no error , no warning, nothing at all .... > but the application hangs up as soon as a MessageBox is issued , and without > the MessageBox being visualized .... > How is it possible ???
Could you provide some of the surrounding code and the call to the MessageBox. MessageBox() is a modal dialog and should appear at the top of the window stack for the current application. Also make sure the strings you are passing in are of the type the call is expecting (e.g. MessageBoxA() requires ANSI strings, MessageBoxW() requires Unicode strings). -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. http://www.CubicleSoft.com/MyTaskFocus/
