You can open any power point by its location on click of a button
protected void btnClubPPT_Click(object sender, EventArgs e)
{
try
{
System.Diagnostics.Process.Start("You PPT.ppt");
}
catch (Exception ex)
{
throw ex;
}
finally
{
GC.Collect();
}
Looking to take your .NET development skills to the next level? This blog offers expert guidance on everything from C# programming to Azure integration, helping you build robust, scalable applications.
In our journey of developing a .NET Core web application, we encountered a peculiar challenge with our time-tracking feature. The applicati...
No comments:
Post a Comment