Skip to content

Commit

Permalink
Custom Reports - Add Open In New Window
Browse files Browse the repository at this point in the history
Add an option to open custom reports in a new Window.
  • Loading branch information
DavidWiseman committed Nov 3, 2024
1 parent ab805eb commit a0625eb
Show file tree
Hide file tree
Showing 5 changed files with 155 additions and 124 deletions.
26 changes: 19 additions & 7 deletions DBADashGUI/CustomReports/CustomReportView.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions DBADashGUI/CustomReports/CustomReportView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1336,5 +1336,12 @@ await MessagingHelper.SendMessageAndProcessReply(msg, context, SetStatus, Proces
await cancellationTokenSource.CancelAsync();
}
}

private void TsNewWindow_Click(object sender, EventArgs e)
{
var frm = new CustomReportViewer();
frm.Context = context;
frm.Show();
}
}
}
9 changes: 9 additions & 0 deletions DBADashGUI/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a0625eb

Please sign in to comment.