Maintain the commandbutton clicked.

Hello

I have a form with buttons “new”, “LineVw” and “Edit”

How can I do so that when I click on “new” button to enable the “LineVw” and “Edit”?

I have override the clicked() method of “new”, here is a code:

void clicked()

{

LineWv.clicked();

Edit.clicked();

super();

}

this code works only on first click, after second click the LineWv and Edit buttons aren’t clicked(or selected) anymore.