how to write clicked method on a form?

Hi,

I have a form ,on that i have one button “Update”.I want to update records in ax table based on conditions?

please provide small stuff for this.

thanks inadvance

Hi Nivas,

on the form button, override the clicked method. Then put your logic in that method

Regards,

Dar

Nivas,

Create a clicked method, and write your logic or update your logic i will give that method

Method ;-

void clicked()
{
super();

------------------> Make your logic here
}

Sakthi S