Monitor: Fix SQL, add Icon

This commit is contained in:
Jonathan Jenne 2021-06-18 11:27:36 +02:00
parent c558df75a9
commit 6085fba151
3 changed files with 7 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -42,6 +42,9 @@
<PropertyGroup> <PropertyGroup>
<StartupObject>DigitalData.GUIs.Monitor.My.MyApplication</StartupObject> <StartupObject>DigitalData.GUIs.Monitor.My.MyApplication</StartupObject>
</PropertyGroup> </PropertyGroup>
<PropertyGroup>
<ApplicationIcon>ChartType_Line.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="DevExpress.BonusSkins.v19.2" /> <Reference Include="DevExpress.BonusSkins.v19.2" />
<Reference Include="DevExpress.Data.v19.2" /> <Reference Include="DevExpress.Data.v19.2" />
@ -192,6 +195,9 @@
<ItemGroup> <ItemGroup>
<None Include="Resources\export.svg" /> <None Include="Resources\export.svg" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Content Include="ChartType_Line.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets. Other similar extension points exist, see Microsoft.Common.targets.

View File

@ -143,7 +143,7 @@ Public Class frmMonitor
Private Function LoadData() As Boolean Private Function LoadData() As Boolean
Try Try
Dim oSQL As String = "EXEC PRDD_MONITORING_GET_TREEVIEW_RESULT 'TYPE1','sdsdd',2" Dim oSQL As String = "EXEC [IDB].[dbo].[PRDD_MONITORING_GET_TREEVIEW_RESULT] 'TYPE1','sdsdd',2"
Dim oTable As DataTable = Database.GetDatatable(oSQL) Dim oTable As DataTable = Database.GetDatatable(oSQL)
TreeListResults.DataSource = oTable TreeListResults.DataSource = oTable