Changes for issue #121
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
Imports System.Xml.Serialization
|
||||
|
||||
<XmlRoot("Session")>
|
||||
Public Class Session
|
||||
Private sGame As String
|
||||
Private sStart As String
|
||||
Private sEnd As String
|
||||
Private dHours As Double
|
||||
|
||||
<XmlElement("Game")>
|
||||
Public Property GameName As String
|
||||
Set(value As String)
|
||||
sGame = value
|
||||
End Set
|
||||
Get
|
||||
Return sGame
|
||||
End Get
|
||||
End Property
|
||||
|
||||
<XmlElement("Start")>
|
||||
Public Property StartDate As String
|
||||
Set(value As String)
|
||||
sStart = value
|
||||
End Set
|
||||
Get
|
||||
Return sStart
|
||||
End Get
|
||||
End Property
|
||||
|
||||
<XmlElement("End")>
|
||||
Public Property EndDate As String
|
||||
Set(value As String)
|
||||
sEnd = value
|
||||
End Set
|
||||
Get
|
||||
Return sEnd
|
||||
End Get
|
||||
End Property
|
||||
|
||||
<XmlElement("Hours")>
|
||||
Public Property Hours As Double
|
||||
Set(value As Double)
|
||||
dHours = value
|
||||
End Set
|
||||
Get
|
||||
Return dHours
|
||||
End Get
|
||||
End Property
|
||||
End Class
|
||||
Generated
+180
@@ -0,0 +1,180 @@
|
||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
Partial Class frmSessionExport
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Form overrides dispose to clean up the component list.
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
Try
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
Finally
|
||||
MyBase.Dispose(disposing)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Required by the Windows Form Designer
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'NOTE: The following procedure is required by the Windows Form Designer
|
||||
'It can be modified using the Windows Form Designer.
|
||||
'Do not modify it using the code editor.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Me.btnExport = New System.Windows.Forms.Button()
|
||||
Me.btnCancel = New System.Windows.Forms.Button()
|
||||
Me.grpExportType = New System.Windows.Forms.GroupBox()
|
||||
Me.grpDateType = New System.Windows.Forms.GroupBox()
|
||||
Me.optCSV = New System.Windows.Forms.RadioButton()
|
||||
Me.optXML = New System.Windows.Forms.RadioButton()
|
||||
Me.optCurrentLocale = New System.Windows.Forms.RadioButton()
|
||||
Me.optUnix = New System.Windows.Forms.RadioButton()
|
||||
Me.grpOptions = New System.Windows.Forms.GroupBox()
|
||||
Me.chkCSVHeaders = New System.Windows.Forms.CheckBox()
|
||||
Me.grpExportType.SuspendLayout()
|
||||
Me.grpDateType.SuspendLayout()
|
||||
Me.grpOptions.SuspendLayout()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'btnExport
|
||||
'
|
||||
Me.btnExport.Location = New System.Drawing.Point(116, 226)
|
||||
Me.btnExport.Name = "btnExport"
|
||||
Me.btnExport.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnExport.TabIndex = 3
|
||||
Me.btnExport.Text = "&Export"
|
||||
Me.btnExport.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btnCancel
|
||||
'
|
||||
Me.btnCancel.Location = New System.Drawing.Point(197, 226)
|
||||
Me.btnCancel.Name = "btnCancel"
|
||||
Me.btnCancel.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnCancel.TabIndex = 4
|
||||
Me.btnCancel.Text = "&Cancel"
|
||||
Me.btnCancel.UseVisualStyleBackColor = True
|
||||
'
|
||||
'grpExportType
|
||||
'
|
||||
Me.grpExportType.Controls.Add(Me.optXML)
|
||||
Me.grpExportType.Controls.Add(Me.optCSV)
|
||||
Me.grpExportType.Location = New System.Drawing.Point(12, 12)
|
||||
Me.grpExportType.Name = "grpExportType"
|
||||
Me.grpExportType.Size = New System.Drawing.Size(260, 70)
|
||||
Me.grpExportType.TabIndex = 0
|
||||
Me.grpExportType.TabStop = False
|
||||
Me.grpExportType.Text = "Export Type"
|
||||
'
|
||||
'grpDateType
|
||||
'
|
||||
Me.grpDateType.Controls.Add(Me.optUnix)
|
||||
Me.grpDateType.Controls.Add(Me.optCurrentLocale)
|
||||
Me.grpDateType.Location = New System.Drawing.Point(12, 88)
|
||||
Me.grpDateType.Name = "grpDateType"
|
||||
Me.grpDateType.Size = New System.Drawing.Size(260, 70)
|
||||
Me.grpDateType.TabIndex = 1
|
||||
Me.grpDateType.TabStop = False
|
||||
Me.grpDateType.Text = "Date Type"
|
||||
'
|
||||
'optCSV
|
||||
'
|
||||
Me.optCSV.AutoSize = True
|
||||
Me.optCSV.Location = New System.Drawing.Point(6, 19)
|
||||
Me.optCSV.Name = "optCSV"
|
||||
Me.optCSV.Size = New System.Drawing.Size(46, 17)
|
||||
Me.optCSV.TabIndex = 0
|
||||
Me.optCSV.TabStop = True
|
||||
Me.optCSV.Text = "CSV"
|
||||
Me.optCSV.UseVisualStyleBackColor = True
|
||||
'
|
||||
'optXML
|
||||
'
|
||||
Me.optXML.AutoSize = True
|
||||
Me.optXML.Location = New System.Drawing.Point(6, 42)
|
||||
Me.optXML.Name = "optXML"
|
||||
Me.optXML.Size = New System.Drawing.Size(47, 17)
|
||||
Me.optXML.TabIndex = 1
|
||||
Me.optXML.TabStop = True
|
||||
Me.optXML.Text = "XML"
|
||||
Me.optXML.UseVisualStyleBackColor = True
|
||||
'
|
||||
'optCurrentLocale
|
||||
'
|
||||
Me.optCurrentLocale.AutoEllipsis = True
|
||||
Me.optCurrentLocale.Location = New System.Drawing.Point(6, 19)
|
||||
Me.optCurrentLocale.Name = "optCurrentLocale"
|
||||
Me.optCurrentLocale.Size = New System.Drawing.Size(248, 17)
|
||||
Me.optCurrentLocale.TabIndex = 0
|
||||
Me.optCurrentLocale.TabStop = True
|
||||
Me.optCurrentLocale.Text = "Current Locale"
|
||||
Me.optCurrentLocale.UseVisualStyleBackColor = True
|
||||
'
|
||||
'optUnix
|
||||
'
|
||||
Me.optUnix.AutoEllipsis = True
|
||||
Me.optUnix.Location = New System.Drawing.Point(6, 42)
|
||||
Me.optUnix.Name = "optUnix"
|
||||
Me.optUnix.Size = New System.Drawing.Size(248, 17)
|
||||
Me.optUnix.TabIndex = 1
|
||||
Me.optUnix.TabStop = True
|
||||
Me.optUnix.Text = "Unix Timestamp"
|
||||
Me.optUnix.UseVisualStyleBackColor = True
|
||||
'
|
||||
'grpOptions
|
||||
'
|
||||
Me.grpOptions.Controls.Add(Me.chkCSVHeaders)
|
||||
Me.grpOptions.Location = New System.Drawing.Point(12, 164)
|
||||
Me.grpOptions.Name = "grpOptions"
|
||||
Me.grpOptions.Size = New System.Drawing.Size(260, 45)
|
||||
Me.grpOptions.TabIndex = 2
|
||||
Me.grpOptions.TabStop = False
|
||||
Me.grpOptions.Text = "Other Options"
|
||||
'
|
||||
'chkCSVHeaders
|
||||
'
|
||||
Me.chkCSVHeaders.AutoSize = True
|
||||
Me.chkCSVHeaders.Location = New System.Drawing.Point(6, 19)
|
||||
Me.chkCSVHeaders.Name = "chkCSVHeaders"
|
||||
Me.chkCSVHeaders.Size = New System.Drawing.Size(167, 17)
|
||||
Me.chkCSVHeaders.TabIndex = 0
|
||||
Me.chkCSVHeaders.Text = "Export Column Headers (CSV)"
|
||||
Me.chkCSVHeaders.UseVisualStyleBackColor = True
|
||||
'
|
||||
'frmSessionExport
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(284, 261)
|
||||
Me.Controls.Add(Me.grpOptions)
|
||||
Me.Controls.Add(Me.grpDateType)
|
||||
Me.Controls.Add(Me.grpExportType)
|
||||
Me.Controls.Add(Me.btnCancel)
|
||||
Me.Controls.Add(Me.btnExport)
|
||||
Me.MaximizeBox = False
|
||||
Me.MinimizeBox = False
|
||||
Me.Name = "frmSessionExport"
|
||||
Me.ShowIcon = False
|
||||
Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide
|
||||
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
|
||||
Me.Text = "Session Export Options"
|
||||
Me.grpExportType.ResumeLayout(False)
|
||||
Me.grpExportType.PerformLayout()
|
||||
Me.grpDateType.ResumeLayout(False)
|
||||
Me.grpOptions.ResumeLayout(False)
|
||||
Me.grpOptions.PerformLayout()
|
||||
Me.ResumeLayout(False)
|
||||
|
||||
End Sub
|
||||
|
||||
Friend WithEvents btnExport As Button
|
||||
Friend WithEvents btnCancel As Button
|
||||
Friend WithEvents grpExportType As GroupBox
|
||||
Friend WithEvents optXML As RadioButton
|
||||
Friend WithEvents optCSV As RadioButton
|
||||
Friend WithEvents grpDateType As GroupBox
|
||||
Friend WithEvents optUnix As RadioButton
|
||||
Friend WithEvents optCurrentLocale As RadioButton
|
||||
Friend WithEvents grpOptions As GroupBox
|
||||
Friend WithEvents chkCSVHeaders As CheckBox
|
||||
End Class
|
||||
@@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
||||
@@ -0,0 +1,90 @@
|
||||
Imports GBM.My.Resources
|
||||
|
||||
Public Class frmSessionExport
|
||||
|
||||
Private bXML As Boolean = True
|
||||
Private bUnix As Boolean = False
|
||||
Private bCSVHeaders As Boolean = True
|
||||
|
||||
Public ReadOnly Property XML As Boolean
|
||||
Get
|
||||
Return bXML
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Public ReadOnly Property Unix As Boolean
|
||||
Get
|
||||
Return bUnix
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Public ReadOnly Property Headers As Boolean
|
||||
Get
|
||||
Return bCSVHeaders
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Private Sub SetOptions()
|
||||
If optXML.Checked Then
|
||||
bXML = True
|
||||
Else
|
||||
bXML = False
|
||||
End If
|
||||
|
||||
If optUnix.Checked Then
|
||||
bUnix = True
|
||||
Else
|
||||
bUnix = False
|
||||
End If
|
||||
|
||||
If chkCSVHeaders.Checked Then
|
||||
bCSVHeaders = True
|
||||
Else
|
||||
bCSVHeaders = False
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub SetForm()
|
||||
Me.Text = frmSessionExport_FormName
|
||||
|
||||
grpExportType.Text = frmSessionExport_grpExportType
|
||||
grpDateType.Text = frmSessionExport_grpDateType
|
||||
grpOptions.Text = frmSessionExport_grpOptions
|
||||
|
||||
optCSV.Text = frmSessionExport_optCSV
|
||||
optXML.Text = frmSessionExport_optXML
|
||||
optCurrentLocale.Text = frmSessionExport_optCurrentLocale & " - " & Now
|
||||
optUnix.Text = frmSessionExport_optUnix & " - " & mgrCommon.DateToUnix(Now)
|
||||
|
||||
chkCSVHeaders.Text = frmSessionExport_chkCSVHeaders
|
||||
|
||||
btnExport.Text = frmSessionExport_btnExport
|
||||
btnCancel.Text = frmSessionExport_btnCancel
|
||||
|
||||
optCSV.Checked = True
|
||||
optCurrentLocale.Checked = True
|
||||
End Sub
|
||||
|
||||
Private Sub frmSessionExport_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
SetForm()
|
||||
End Sub
|
||||
|
||||
Private Sub btnExport_Click(sender As Object, e As EventArgs) Handles btnExport.Click
|
||||
SetOptions()
|
||||
Me.DialogResult = DialogResult.OK
|
||||
End Sub
|
||||
|
||||
Private Sub btnCancel_Click(sender As Object, e As EventArgs) Handles btnCancel.Click
|
||||
Me.DialogResult = DialogResult.Cancel
|
||||
End Sub
|
||||
|
||||
Private Sub optCSV_CheckedChanged(sender As Object, e As EventArgs) Handles optCSV.CheckedChanged
|
||||
If Not optCSV.Checked Then
|
||||
chkCSVHeaders.Checked = False
|
||||
chkCSVHeaders.Enabled = False
|
||||
Else
|
||||
chkCSVHeaders.Checked = True
|
||||
chkCSVHeaders.Enabled = True
|
||||
End If
|
||||
End Sub
|
||||
End Class
|
||||
Generated
+14
-1
@@ -33,6 +33,7 @@ Partial Class frmSessions
|
||||
Me.btnClose = New System.Windows.Forms.Button()
|
||||
Me.lblDateRange = New System.Windows.Forms.Label()
|
||||
Me.lblTotalHours = New System.Windows.Forms.Label()
|
||||
Me.btnExport = New System.Windows.Forms.Button()
|
||||
CType(Me.dgSessions, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
@@ -141,16 +142,27 @@ Partial Class frmSessions
|
||||
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.lblTotalHours.Location = New System.Drawing.Point(118, 531)
|
||||
Me.lblTotalHours.Name = "lblTotalHours"
|
||||
Me.lblTotalHours.Size = New System.Drawing.Size(467, 13)
|
||||
Me.lblTotalHours.Size = New System.Drawing.Size(361, 13)
|
||||
Me.lblTotalHours.TabIndex = 0
|
||||
Me.lblTotalHours.Text = "Total Hours:"
|
||||
Me.lblTotalHours.TextAlign = System.Drawing.ContentAlignment.TopCenter
|
||||
'
|
||||
'btnExport
|
||||
'
|
||||
Me.btnExport.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.btnExport.Location = New System.Drawing.Point(485, 526)
|
||||
Me.btnExport.Name = "btnExport"
|
||||
Me.btnExport.Size = New System.Drawing.Size(100, 23)
|
||||
Me.btnExport.TabIndex = 10
|
||||
Me.btnExport.Text = "&Export Grid"
|
||||
Me.btnExport.UseVisualStyleBackColor = True
|
||||
'
|
||||
'frmSessions
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(784, 561)
|
||||
Me.Controls.Add(Me.btnExport)
|
||||
Me.Controls.Add(Me.lblTotalHours)
|
||||
Me.Controls.Add(Me.lblDateRange)
|
||||
Me.Controls.Add(Me.btnClose)
|
||||
@@ -184,4 +196,5 @@ Partial Class frmSessions
|
||||
Friend WithEvents btnClose As Button
|
||||
Friend WithEvents lblDateRange As Label
|
||||
Friend WithEvents lblTotalHours As Label
|
||||
Friend WithEvents btnExport As Button
|
||||
End Class
|
||||
|
||||
@@ -48,8 +48,8 @@ Public Class frmSessions
|
||||
Dim sFilter As String
|
||||
Dim dStart As DateTime
|
||||
Dim dEnd As DateTime
|
||||
Dim iHours As Double
|
||||
Dim iTotalHours As Double
|
||||
Dim dHours As Double
|
||||
Dim dTotalHours As Double
|
||||
|
||||
If txtFilter.Text = String.Empty Then
|
||||
oData = mgrSessions.GetSessionRange(dtpStart.Value, dtpEnd.Value)
|
||||
@@ -63,12 +63,12 @@ Public Class frmSessions
|
||||
For Each dr As DataRow In oData.Tables(0).Rows
|
||||
dStart = mgrCommon.UnixToDate(dr("Start"))
|
||||
dEnd = mgrCommon.UnixToDate(dr("End"))
|
||||
iHours = Math.Round(dEnd.Subtract(dStart).TotalHours, 2)
|
||||
iTotalHours += iHours
|
||||
dgSessions.Rows.Add(New Object() {dr("MonitorID"), dr("Name"), dr("Start"), dStart, dr("End"), dEnd, iHours})
|
||||
dHours = Math.Round(dEnd.Subtract(dStart).TotalHours, 2)
|
||||
dTotalHours += dHours
|
||||
dgSessions.Rows.Add(New Object() {dr("MonitorID"), dr("Name"), dr("Start"), dStart, dr("End"), dEnd, dHours})
|
||||
Next
|
||||
|
||||
lblTotalHours.Text = mgrCommon.FormatString(frmSessions_lblTotalHours, iTotalHours)
|
||||
lblTotalHours.Text = mgrCommon.FormatString(frmSessions_lblTotalHours, dTotalHours)
|
||||
|
||||
dgSessions.AutoResizeColumns()
|
||||
End Sub
|
||||
@@ -178,6 +178,30 @@ Public Class frmSessions
|
||||
End Select
|
||||
End Sub
|
||||
|
||||
Private Sub ExportGrid()
|
||||
Dim frm As New frmSessionExport
|
||||
Dim sLocation As String
|
||||
|
||||
frm.ShowDialog()
|
||||
|
||||
If frm.DialogResult = DialogResult.OK Then
|
||||
|
||||
If frm.XML Then
|
||||
sLocation = mgrCommon.SaveFileBrowser("Session_Export", frmSessions_ChooseExportLocation, "xml", frmSessions_XML, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), frmSessions_DefaultExportFileName)
|
||||
Else
|
||||
sLocation = mgrCommon.SaveFileBrowser("Session_Export", frmSessions_ChooseExportLocation, "csv", frmSessions_CSV, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), frmSessions_DefaultExportFileName)
|
||||
End If
|
||||
|
||||
If sLocation <> String.Empty Then
|
||||
If frm.XML Then
|
||||
mgrSessions.ExportAsXML(sLocation, frm.Unix, dgSessions)
|
||||
Else
|
||||
mgrSessions.ExportAsCSV(sLocation, frm.Unix, frm.Headers, dgSessions)
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub frmSession_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
SetForm()
|
||||
ResetFilterFields()
|
||||
@@ -223,6 +247,10 @@ Public Class frmSessions
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub btnExport_Click(sender As Object, e As EventArgs) Handles btnExport.Click
|
||||
ExportGrid()
|
||||
End Sub
|
||||
|
||||
Private Sub dgSessions_ColumnHeaderMouseClick(sender As Object, e As DataGridViewCellMouseEventArgs) Handles dgSessions.ColumnHeaderMouseClick
|
||||
HandleSort(e.ColumnIndex)
|
||||
End Sub
|
||||
|
||||
@@ -127,6 +127,7 @@
|
||||
<Compile Include="Classes\clsSavedPath.vb" />
|
||||
<Compile Include="Classes\clsSession.vb" />
|
||||
<Compile Include="Classes\XML Serialize Classes\ExportData.vb" />
|
||||
<Compile Include="Classes\XML Serialize Classes\Session.vb" />
|
||||
<Compile Include="Classes\XML Serialize Classes\Tag.vb" />
|
||||
<Compile Include="Classes\XML Serialize Classes\Game.vb" />
|
||||
<Compile Include="Classes\clsGameTag.vb" />
|
||||
@@ -170,6 +171,12 @@
|
||||
<Compile Include="Forms\frmIncludeExclude.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Forms\frmSessionExport.Designer.vb">
|
||||
<DependentUpon>frmSessionExport.vb</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Forms\frmSessionExport.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Forms\frmSessions.Designer.vb">
|
||||
<DependentUpon>frmSessions.vb</DependentUpon>
|
||||
</Compile>
|
||||
@@ -276,6 +283,9 @@
|
||||
<EmbeddedResource Include="Forms\frmIncludeExclude.resx">
|
||||
<DependentUpon>frmIncludeExclude.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Forms\frmSessionExport.resx">
|
||||
<DependentUpon>frmSessionExport.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Forms\frmSessions.resx">
|
||||
<DependentUpon>frmSessions.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
|
||||
+104
-1
@@ -1,4 +1,9 @@
|
||||
Public Class mgrSessions
|
||||
Imports GBM.My.Resources
|
||||
Imports System.IO
|
||||
Imports System.Xml.Serialization
|
||||
|
||||
|
||||
Public Class mgrSessions
|
||||
|
||||
Private Shared Function MapToObject(ByVal dr As DataRow) As clsSession
|
||||
Dim oSession As New clsSession
|
||||
@@ -123,4 +128,102 @@
|
||||
|
||||
Return iRowCount
|
||||
End Function
|
||||
|
||||
Public Shared Function ExportAsCSV(ByVal sLocation As String, ByVal bUnixTime As Boolean, ByVal bHeaders As Boolean, ByRef dg As DataGridView) As Boolean
|
||||
Dim oWriter As StreamWriter
|
||||
Dim sHeader As String
|
||||
Dim sCurrentRow As String
|
||||
Dim oBannedColumns As New List(Of DataGridViewColumn)
|
||||
|
||||
Try
|
||||
oWriter = New StreamWriter(sLocation)
|
||||
|
||||
'Ban Columns
|
||||
oBannedColumns.Add(dg.Columns("MonitorID"))
|
||||
|
||||
If bUnixTime Then
|
||||
oBannedColumns.Add(dg.Columns("Start"))
|
||||
oBannedColumns.Add(dg.Columns("End"))
|
||||
Else
|
||||
oBannedColumns.Add(dg.Columns("StartUnix"))
|
||||
oBannedColumns.Add(dg.Columns("EndUnix"))
|
||||
End If
|
||||
|
||||
'Handle Headers
|
||||
If bHeaders Then
|
||||
sHeader = String.Empty
|
||||
For Each dgCol As DataGridViewColumn In dg.Columns
|
||||
If Not oBannedColumns.Contains(dgCol) Then
|
||||
sHeader &= dgCol.HeaderText & ","
|
||||
End If
|
||||
Next
|
||||
sHeader = sHeader.TrimEnd(",")
|
||||
|
||||
oWriter.WriteLine(sHeader)
|
||||
End If
|
||||
|
||||
'Handle Rows
|
||||
For Each dgRow As DataGridViewRow In dg.Rows
|
||||
sCurrentRow = String.Empty
|
||||
For Each dgCell As DataGridViewCell In dgRow.Cells
|
||||
If Not oBannedColumns.Contains(dg.Columns(dgCell.ColumnIndex)) Then
|
||||
sCurrentRow &= dgCell.Value.ToString & ","
|
||||
End If
|
||||
Next
|
||||
sCurrentRow = sCurrentRow.TrimEnd(",")
|
||||
oWriter.WriteLine(sCurrentRow)
|
||||
Next
|
||||
|
||||
'Finish up
|
||||
oWriter.Flush()
|
||||
oWriter.Close()
|
||||
|
||||
mgrCommon.ShowMessage(mgrSessions_ExportSuccess, MsgBoxStyle.Information)
|
||||
Return True
|
||||
Catch ex As Exception
|
||||
mgrCommon.ShowMessage(mgrSessions_ErrorExportFailure, ex.Message, MsgBoxStyle.Exclamation)
|
||||
Return False
|
||||
End Try
|
||||
End Function
|
||||
|
||||
Public Shared Function ExportAsXML(ByVal sLocation As String, ByVal bUnixTime As Boolean, ByRef dg As DataGridView) As Boolean
|
||||
Dim oSerializer As XmlSerializer
|
||||
Dim oWriter As StreamWriter
|
||||
Dim oCurrentSession As Session
|
||||
Dim oSessions As New List(Of Session)
|
||||
Dim oBannedColumns As New List(Of DataGridViewColumn)
|
||||
|
||||
Try
|
||||
'Format data for export
|
||||
For Each dgRow As DataGridViewRow In dg.Rows
|
||||
oCurrentSession = New Session
|
||||
oCurrentSession.GameName = dgRow.Cells("Name").Value.ToString
|
||||
If bUnixTime Then
|
||||
oCurrentSession.StartDate = dgRow.Cells("StartUnix").Value.ToString
|
||||
oCurrentSession.EndDate = dgRow.Cells("EndUnix").Value.ToString
|
||||
Else
|
||||
oCurrentSession.StartDate = dgRow.Cells("Start").Value.ToString
|
||||
oCurrentSession.EndDate = dgRow.Cells("End").Value.ToString
|
||||
End If
|
||||
oCurrentSession.Hours = dgRow.Cells("Hours").Value.ToString
|
||||
oSessions.Add(oCurrentSession)
|
||||
Next
|
||||
|
||||
'Serialize
|
||||
oSerializer = New XmlSerializer(oSessions.GetType, New XmlRootAttribute("Sessions"))
|
||||
oWriter = New StreamWriter(sLocation)
|
||||
oSerializer.Serialize(oWriter.BaseStream, oSessions)
|
||||
|
||||
'Finish up
|
||||
oWriter.Flush()
|
||||
oWriter.Close()
|
||||
|
||||
mgrCommon.ShowMessage(mgrSessions_ExportSuccess, MsgBoxStyle.Information)
|
||||
Return True
|
||||
Catch ex As Exception
|
||||
mgrCommon.ShowMessage(mgrSessions_ErrorExportFailure, ex.Message, MsgBoxStyle.Exclamation)
|
||||
Return False
|
||||
End Try
|
||||
End Function
|
||||
|
||||
End Class
|
||||
Generated
+162
@@ -3624,6 +3624,105 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to &Cancel.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessionExport_btnCancel() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessionExport_btnCancel", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to &Export.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessionExport_btnExport() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessionExport_btnExport", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Export Column Headers (CSV).
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessionExport_chkCSVHeaders() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessionExport_chkCSVHeaders", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Session Export Options.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessionExport_FormName() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessionExport_FormName", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Date Type.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessionExport_grpDateType() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessionExport_grpDateType", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Export Type.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessionExport_grpExportType() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessionExport_grpExportType", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Other Options.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessionExport_grpOptions() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessionExport_grpOptions", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to CSV.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessionExport_optCSV() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessionExport_optCSV", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Current Locale.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessionExport_optCurrentLocale() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessionExport_optCurrentLocale", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Unix Timestamp.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessionExport_optUnix() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessionExport_optUnix", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to XML.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessionExport_optXML() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessionExport_optXML", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to &Close.
|
||||
'''</summary>
|
||||
@@ -3642,6 +3741,15 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to &Export Grid.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessions_btnExport() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessions_btnExport", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to &Reset Filters.
|
||||
'''</summary>
|
||||
@@ -3651,6 +3759,15 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Choose a location for the export file.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessions_ChooseExportLocation() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessions_ChooseExportLocation", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to End.
|
||||
'''</summary>
|
||||
@@ -3705,6 +3822,24 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to CSV.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessions_CSV() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessions_CSV", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Game Session Export.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessions_DefaultExportFileName() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessions_DefaultExportFileName", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Date Range:.
|
||||
'''</summary>
|
||||
@@ -3741,6 +3876,15 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to XML.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmSessions_XML() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmSessions_XML", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Executable.
|
||||
'''</summary>
|
||||
@@ -5527,6 +5671,24 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to An error occured exporting the session data.[BR][BR][PARAM].
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrSessions_ErrorExportFailure() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrSessions_ErrorExportFailure", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to The data has been exported successfully..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrSessions_ExportSuccess() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrSessions_ExportSuccess", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to An error occured creating a backup of the database file at [PARAM][BR][BR][PARAM].
|
||||
'''</summary>
|
||||
|
||||
@@ -1954,4 +1954,58 @@
|
||||
<data name="frmSessions_lblTotalHours" xml:space="preserve">
|
||||
<value>Total Hours: [PARAM]</value>
|
||||
</data>
|
||||
<data name="frmSessions_ChooseExportLocation" xml:space="preserve">
|
||||
<value>Choose a location for the export file</value>
|
||||
</data>
|
||||
<data name="frmSessions_CSV" xml:space="preserve">
|
||||
<value>CSV</value>
|
||||
</data>
|
||||
<data name="frmSessions_DefaultExportFileName" xml:space="preserve">
|
||||
<value>Game Session Export</value>
|
||||
</data>
|
||||
<data name="frmSessions_XML" xml:space="preserve">
|
||||
<value>XML</value>
|
||||
</data>
|
||||
<data name="mgrSessions_ErrorExportFailure" xml:space="preserve">
|
||||
<value>An error occured exporting the session data.[BR][BR][PARAM]</value>
|
||||
</data>
|
||||
<data name="mgrSessions_ExportSuccess" xml:space="preserve">
|
||||
<value>The data has been exported successfully.</value>
|
||||
</data>
|
||||
<data name="frmSessionExport_btnCancel" xml:space="preserve">
|
||||
<value>&Cancel</value>
|
||||
</data>
|
||||
<data name="frmSessionExport_btnExport" xml:space="preserve">
|
||||
<value>&Export</value>
|
||||
</data>
|
||||
<data name="frmSessionExport_chkCSVHeaders" xml:space="preserve">
|
||||
<value>Export Column Headers (CSV)</value>
|
||||
</data>
|
||||
<data name="frmSessionExport_FormName" xml:space="preserve">
|
||||
<value>Session Export Options</value>
|
||||
</data>
|
||||
<data name="frmSessionExport_grpDateType" xml:space="preserve">
|
||||
<value>Date Type</value>
|
||||
</data>
|
||||
<data name="frmSessionExport_grpExportType" xml:space="preserve">
|
||||
<value>Export Type</value>
|
||||
</data>
|
||||
<data name="frmSessionExport_grpOptions" xml:space="preserve">
|
||||
<value>Other Options</value>
|
||||
</data>
|
||||
<data name="frmSessionExport_optCSV" xml:space="preserve">
|
||||
<value>CSV</value>
|
||||
</data>
|
||||
<data name="frmSessionExport_optCurrentLocale" xml:space="preserve">
|
||||
<value>Current Locale</value>
|
||||
</data>
|
||||
<data name="frmSessionExport_optUnix" xml:space="preserve">
|
||||
<value>Unix Timestamp</value>
|
||||
</data>
|
||||
<data name="frmSessionExport_optXML" xml:space="preserve">
|
||||
<value>XML</value>
|
||||
</data>
|
||||
<data name="frmSessions_btnExport" xml:space="preserve">
|
||||
<value>&Export Grid</value>
|
||||
</data>
|
||||
</root>
|
||||
Reference in New Issue
Block a user