>I have an application that sends messages to other applications. Also > one I have not written. > > I wonder what will happen, if an application does not have a specific > handler for that/those messages? > > Will a standard handling routine service them, so my application can > go on doing its business, or is there a 'chance' that it occationally > will hang?
Are you talking about windows messages sent using PostMessage and similar ? If yes, then there is a default do-nothing handler. The problem could be that you selected a message number which is used by the program for other purposes. Then, yes there are a lot of chances that you'll cause trouble. -- [EMAIL PROTECTED] The author of the freeware multi-tier middleware MidWare The author of the freeware Internet Component Suite (ICS) http://www.overbyte.be _______________________________________________ Delphi mailing list -> [email protected] http://www.elists.org/mailman/listinfo/delphi

