O.P. send message
hi.....i want send a message in a specific windows how can i do?
i have this windows
function OngiocoEvent_CtrlClicked(gioco, ControlId) {
switch(ControlId) {
case "gioca" :
if((turno == squadra) && (cartapescata == 0))
{
cartapescata=1;
CreaDomanda(gioco);
}
break;
}
}
when this windows is closed i use this function:
function OngiocoEvent_Destroyed(gioco, ExitCode) {
if(ExitCode ==2) {
scrittura2.SendMessage("windows is closed");
}
}
How i can send a message (windows is closed) in a windows where i have create windows gioco?
|