Hi Yin Kuan Loke,
To prompt a message box use this : (Use Event Accordingly)
int iReturnValue;
iReturnValue = SBO_Application.MessageBox("Your Error Message. Do you want to continue anyway ?", 1, "Continue", "Cancel", "");
if (iReturnValue == 1)
{
BubbleEvent = true;
}
else
{
BubbleEvent = false;
}
Hope it helps....
Thanks & Regards
Ankit Chauhan