private void btnViewTemplate_Click(object sender, EventArgs e) { ProcessStartInfo pInfo = new ProcessStartInfo(); pInfo.FileName = _TemplateResult.GetTemplatePath(); pInfo.UseShellExecute = true; Process p = Process.Start(pInfo); }