Override the CanClose Method of the Form:-
public boolean canClose()
{
boolean ret;
ret = super();
infolog.language("en-us");
return ret;
}
Then Override the Clicked Method of the Form Control and then write the below code-
public boolean canClose()
{
boolean ret;
ret = super();
infolog.language("en-us");
return ret;
}
Then Override the Clicked Method of the Form Control and then write the below code-
void clicked()
{
infolog.language("en-us");
super();
}
No comments:
Post a Comment