we made a window form application, this app create new record into CRM, after save successfully, then open the record detail form.
in CRM, we can use below script to open entity,
Xrm.Utility.openEntityForm
but in window form applicaitons, how to do it? we need to think about two situations:
1. visting CRM via web browser, for this case, i can use below code to open a browser and pass the parameters:
System.Diagnostics.Process.Start(url+parameters);
2. visting CRM via outlook, how about this?
thanks