Hi,
How can I open an excel file after create?
here my code but it dosen’t work !
private void Save()
{
worksheet.Name = name;
workbook.Save(destinationFolder);<span style="color:green;">//Create a Stream object</span> <span style="color:#2b91af;">FileStream</span> fstream = <span style="color:blue;">new</span> <span style="color:#2b91af;">FileStream</span>(destinationFolder, <span style="color:#2b91af;">FileMode</span>.Open); <span style="color:green;">//Creating a Workbook object, open the file from a Stream object</span> <span style="color:green;">//that contains the content of file and it should support seeking</span> <span style="color:#2b91af;">Workbook</span> work = <span style="color:blue;">new</span> <span style="color:#2b91af;">Workbook</span>(fstream); }</pre><pre style="font-family: Consolas; font-size: 13px; background: white;"><br></pre><pre style="font-family: Consolas; font-size: 13px; background: white;">Thank you</pre></div>