private void btnOpenReport_Click(object sender, EventArgs e)
{
if (System.IO.File.Exists(outputFilePath))
{
Process.Start(new ProcessStartInfo("excel.exe", " /select, " + outputFilePath.Replace("\\\\", "\\")));
}
}
質問する
11881 次