Hello,
I have a question.
can I call a dashboard from a button in the customization.
I created a dashboard and add a menu for that dashboard. Now, I want to open the dashboard from a form.
please let me know if it is possible.
thanks,
Eddy
Hello,
I have a question.
can I call a dashboard from a button in the customization.
I created a dashboard and add a menu for that dashboard. Now, I want to open the dashboard from a form.
please let me know if it is possible.
thanks,
Eddy
Yes you can easily do this by using the ProcessCaller.LaunchForm method.
In this example, I am invoking it with a button click event on my form. The first argument is the transaction object of the form you’re in, and the second is the menu ID for the menu item you are trying to launch
private void btnQuoteForm_Click(object sender, System.EventArgs args)
{
// ** Place Event Handling Code Here **
ProcessCaller.LaunchForm(oTrans, "EQUDR002");
}
thanks so much.
it worked.
thanks.