cancel
Showing results for 
Search instead for 
Did you mean: 

How to catch event when click on green arrows who placed top in Business One

Former Member
0 Kudos

Need catch event when click on green arrows who placed top in Business One

How ?

Accepted Solutions (1)

Accepted Solutions (1)

edy_simon
Active Contributor

Or you can catch the After Form Data Load event to see the content of the loaded record on the form.

Regards
Edy

Answers (1)

Answers (1)

former_member185682
Active Contributor

Hi Евгений,

Use menuEvent. On this event you can do something like this:

switch (pVal.MenuUID)
{
	case "1288": //Next


		break;
	case "1289": //Previous


		break;
	case "1290": //First


		break;
	case "1291": //Last


		break;
}

Kind Regards,

Diego Lother