Skip to content

Commit d03cbd3

Browse files
committed
[Enhance] Add commands to launch Theme Designer and DynaViewer
1 parent 65b3177 commit d03cbd3

File tree

5 files changed

+143
-108
lines changed

5 files changed

+143
-108
lines changed

MainForm.Designer.vb

Lines changed: 9 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MainForm.resx

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,6 @@
197197
/gfq1uDNCGhXRAAAAABJRU5ErkJggg==
198198
</value>
199199
</data>
200-
<metadata name="ToolStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
201-
<value>249, 17</value>
202-
</metadata>
203-
<metadata name="StatusStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
204-
<value>356, 17</value>
205-
</metadata>
206200
<data name="Button26.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
207201
<value>
208202
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAaNJREFUWEft
@@ -523,12 +517,6 @@
523517
<metadata name="ToolStrip2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
524518
<value>727, 17</value>
525519
</metadata>
526-
<metadata name="prjTreeStatus.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
527-
<value>132, 17</value>
528-
</metadata>
529-
<metadata name="ToolStrip2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
530-
<value>727, 17</value>
531-
</metadata>
532520
<data name="RefreshViewTSB.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
533521
<value>
534522
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8

MainForm.vb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16742,4 +16742,11 @@ Public Class MainForm
1674216742
Private Sub RemountImage_Click(sender As Object, e As EventArgs) Handles RemountImage.Click
1674316743
Button25.PerformClick()
1674416744
End Sub
16745+
16746+
Private Sub OpenDiagnosticLogsInLogViewerToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles OpenDiagnosticLogsInLogViewerToolStripMenuItem.Click
16747+
If File.Exists(Path.Combine(Application.StartupPath, "tools", "DynaViewer", "DynaViewer.exe")) Then
16748+
Process.Start(Path.Combine(Application.StartupPath, "tools", "DynaViewer", "DynaViewer.exe"),
16749+
Path.Combine(Application.StartupPath, "logs", "DT_DynaLog.log"))
16750+
End If
16751+
End Sub
1674516752
End Class

0 commit comments

Comments
 (0)