가로등 통합 anycpu 로 변경

This commit is contained in:
Arin(asus)
2023-10-01 23:07:40 +09:00
parent 3fde205c2e
commit 32e56bb016
47 changed files with 6379 additions and 176 deletions

View File

@@ -29,7 +29,7 @@
<DocumentationFile>
</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355</NoWarn>
<PlatformTarget>x86</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>None</DebugType>

View File

@@ -29,7 +29,7 @@
<DocumentationFile>
</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355</NoWarn>
<PlatformTarget>x86</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>None</DebugType>

View File

@@ -29,7 +29,7 @@
<DocumentationFile>
</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355</NoWarn>
<PlatformTarget>x86</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>None</DebugType>

Binary file not shown.

View File

@@ -89,7 +89,11 @@ Public Class MakeList
' If DemoDlg.ShowDialog() <> Windows.Forms.DialogResult.OK Then End
'End If
Me.Text = My.Application.Info.ProductName & " Ver. {0}.{1:00}.{2}.{3}"
Dim bit64 As String = "x86"
If (Environment.Is64BitProcess) Then bit64 = "x64"
Me.Text = $"{My.Application.Info.ProductName} Ver. {0}.{1:00}.{2}.{3} - {bit64}"
Me.Text = System.String.Format(Me.Text, My.Application.Info.Version.Major, My.Application.Info.Version.Minor, My.Application.Info.Version.Build, My.Application.Info.Version.Revision)
Me.view1.Font = New Font(ViewFont.FontName, ViewFont.FontSize, Me.Font.Style) '//글자정보 불러오기
' Me.ToolStrip1.Font = New Font(MenuFont.FontName, MenuFont.FontSize, Me.Font.Style) '//글자정보 불러오기

View File

@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' 지정되도록 할 수 있습니다.
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("23.03.09.2330")>
<Assembly: AssemblyFileVersion("23.03.09.2330")>
<Assembly: AssemblyVersion("23.10.01.2240")>
<Assembly: AssemblyFileVersion("23.10.01.2240")>

View File

@@ -15,7 +15,7 @@ Option Explicit On
Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0"), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.7.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase
@@ -29,7 +29,7 @@ Namespace My
Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then
My.Settings.Save()
End If
@@ -57,7 +57,8 @@ Namespace My
<Global.System.Configuration.ApplicationScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.SpecialSettingAttribute(Global.System.Configuration.SpecialSetting.ConnectionString), _
Global.System.Configuration.DefaultSettingValueAttribute("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\DataBase\irea.mdb")> _
Global.System.Configuration.DefaultSettingValueAttribute("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\DataBase\simp.accdb"& _
"")> _
Public ReadOnly Property ireaConnectionString() As String
Get
Return CType(Me("ireaConnectionString"),String)

View File

@@ -4,11 +4,11 @@
<Settings>
<Setting Name="ireaConnectionString" Type="(Connection string)" Scope="Application">
<DesignTimeValue Profile="(Default)">&lt;?xml version="1.0" encoding="utf-16"?&gt;
&lt;SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;ConnectionString&gt;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\DataBase\irea.mdb&lt;/ConnectionString&gt;
&lt;SerializableConnectionString xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&gt;
&lt;ConnectionString&gt;Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\DataBase\simp.accdb&lt;/ConnectionString&gt;
&lt;ProviderName&gt;System.Data.OleDb&lt;/ProviderName&gt;
&lt;/SerializableConnectionString&gt;</DesignTimeValue>
<Value Profile="(Default)">Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\DataBase\irea.mdb</Value>
<Value Profile="(Default)">Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\DataBase\simp.accdb</Value>
</Setting>
</Settings>
</SettingsFile>

View File

@@ -3,7 +3,8 @@
<configSections>
</configSections>
<connectionStrings>
<add name="EpoleNetv3.My.MySettings.ireaConnectionString" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\DataBase\irea.mdb" providerName="System.Data.OleDb"/>
<add name="EpoleNetv3.My.MySettings.ireaConnectionString" connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\DataBase\simp.accdb"
providerName="System.Data.OleDb" />
</connectionStrings>
<system.diagnostics>
<sources>

View File

@@ -37,13 +37,13 @@ Partial Class DemoDlg
Me.LabelCopyright = New System.Windows.Forms.Label()
Me.LabelCompanyName = New System.Windows.Forms.Label()
Me.Panel1 = New System.Windows.Forms.Panel()
Me.Button3 = New System.Windows.Forms.Button()
Me.Panel2 = New System.Windows.Forms.Panel()
Me.Button2 = New System.Windows.Forms.Button()
Me.Button1 = New System.Windows.Forms.Button()
Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel()
Me.lb_expiredate = New System.Windows.Forms.Label()
Me.lb_msg = New System.Windows.Forms.Label()
Me.Button3 = New System.Windows.Forms.Button()
Me.Panel2 = New System.Windows.Forms.Panel()
Me.TableLayoutPanel.SuspendLayout()
CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).BeginInit()
Me.Panel1.SuspendLayout()
@@ -149,6 +149,27 @@ Partial Class DemoDlg
Me.Panel1.Size = New System.Drawing.Size(348, 24)
Me.Panel1.TabIndex = 2
'
'Button3
'
Me.Button3.BackColor = System.Drawing.Color.Transparent
Me.Button3.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.Button3.Dock = System.Windows.Forms.DockStyle.Right
Me.Button3.Font = New System.Drawing.Font("굴림", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.Button3.Location = New System.Drawing.Point(174, 0)
Me.Button3.Name = "Button3"
Me.Button3.Size = New System.Drawing.Size(99, 24)
Me.Button3.TabIndex = 3
Me.Button3.Text = "인증키입력"
Me.Button3.UseVisualStyleBackColor = False
'
'Panel2
'
Me.Panel2.Dock = System.Windows.Forms.DockStyle.Right
Me.Panel2.Location = New System.Drawing.Point(273, 0)
Me.Panel2.Name = "Panel2"
Me.Panel2.Size = New System.Drawing.Size(11, 24)
Me.Panel2.TabIndex = 4
'
'Button2
'
Me.Button2.BackColor = System.Drawing.Color.Transparent
@@ -210,27 +231,6 @@ Partial Class DemoDlg
Me.lb_msg.Text = "."
Me.lb_msg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
'
'Button3
'
Me.Button3.BackColor = System.Drawing.Color.Transparent
Me.Button3.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.Button3.Dock = System.Windows.Forms.DockStyle.Right
Me.Button3.Font = New System.Drawing.Font("굴림", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.Button3.Location = New System.Drawing.Point(174, 0)
Me.Button3.Name = "Button3"
Me.Button3.Size = New System.Drawing.Size(99, 24)
Me.Button3.TabIndex = 3
Me.Button3.Text = "인증키입력"
Me.Button3.UseVisualStyleBackColor = False
'
'Panel2
'
Me.Panel2.Dock = System.Windows.Forms.DockStyle.Right
Me.Panel2.Location = New System.Drawing.Point(273, 0)
Me.Panel2.Name = "Panel2"
Me.Panel2.Size = New System.Drawing.Size(11, 24)
Me.Panel2.TabIndex = 4
'
'DemoDlg
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!)

View File

@@ -22,12 +22,12 @@ Partial Class SplashScreen
'코드 편집기를 사용하여 수정하지 마십시오.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.MainLayoutPanel = New System.Windows.Forms.TableLayoutPanel
Me.lb_msg = New System.Windows.Forms.Label
Me.DetailsLayoutPanel = New System.Windows.Forms.TableLayoutPanel
Me.Copyright = New System.Windows.Forms.Label
Me.Version = New System.Windows.Forms.Label
Me.ApplicationTitle = New System.Windows.Forms.Label
Me.MainLayoutPanel = New System.Windows.Forms.TableLayoutPanel()
Me.lb_msg = New System.Windows.Forms.Label()
Me.DetailsLayoutPanel = New System.Windows.Forms.TableLayoutPanel()
Me.Copyright = New System.Windows.Forms.Label()
Me.Version = New System.Windows.Forms.Label()
Me.ApplicationTitle = New System.Windows.Forms.Label()
Me.MainLayoutPanel.SuspendLayout()
Me.DetailsLayoutPanel.SuspendLayout()
Me.SuspendLayout()
@@ -37,29 +37,31 @@ Partial Class SplashScreen
Me.MainLayoutPanel.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer))
Me.MainLayoutPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
Me.MainLayoutPanel.ColumnCount = 1
Me.MainLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 286.0!))
Me.MainLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 545.0!))
Me.MainLayoutPanel.Controls.Add(Me.lb_msg, 0, 2)
Me.MainLayoutPanel.Controls.Add(Me.DetailsLayoutPanel, 0, 1)
Me.MainLayoutPanel.Controls.Add(Me.ApplicationTitle, 0, 0)
Me.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill
Me.MainLayoutPanel.Location = New System.Drawing.Point(0, 0)
Me.MainLayoutPanel.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
Me.MainLayoutPanel.Name = "MainLayoutPanel"
Me.MainLayoutPanel.RowCount = 3
Me.MainLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 70.0!))
Me.MainLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 18.0!))
Me.MainLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.0!))
Me.MainLayoutPanel.Size = New System.Drawing.Size(424, 252)
Me.MainLayoutPanel.Size = New System.Drawing.Size(694, 364)
Me.MainLayoutPanel.TabIndex = 0
'
'lb_msg
'
Me.lb_msg.BackColor = System.Drawing.Color.Transparent
Me.lb_msg.Dock = System.Windows.Forms.DockStyle.Fill
Me.lb_msg.Font = New System.Drawing.Font("굴림", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.lb_msg.Font = New System.Drawing.Font("맑은 고딕", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.lb_msg.ForeColor = System.Drawing.Color.Black
Me.lb_msg.Location = New System.Drawing.Point(3, 221)
Me.lb_msg.Location = New System.Drawing.Point(4, 319)
Me.lb_msg.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
Me.lb_msg.Name = "lb_msg"
Me.lb_msg.Size = New System.Drawing.Size(418, 31)
Me.lb_msg.Size = New System.Drawing.Size(686, 45)
Me.lb_msg.TabIndex = 2
Me.lb_msg.Text = "[]"
Me.lb_msg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
@@ -68,26 +70,28 @@ Partial Class SplashScreen
'
Me.DetailsLayoutPanel.BackColor = System.Drawing.Color.Transparent
Me.DetailsLayoutPanel.ColumnCount = 1
Me.DetailsLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 490.0!))
Me.DetailsLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 630.0!))
Me.DetailsLayoutPanel.Controls.Add(Me.Copyright, 0, 1)
Me.DetailsLayoutPanel.Controls.Add(Me.Version, 0, 0)
Me.DetailsLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill
Me.DetailsLayoutPanel.Location = New System.Drawing.Point(3, 179)
Me.DetailsLayoutPanel.Location = New System.Drawing.Point(4, 259)
Me.DetailsLayoutPanel.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
Me.DetailsLayoutPanel.Name = "DetailsLayoutPanel"
Me.DetailsLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 53.0303!))
Me.DetailsLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 46.9697!))
Me.DetailsLayoutPanel.Size = New System.Drawing.Size(418, 39)
Me.DetailsLayoutPanel.Size = New System.Drawing.Size(686, 55)
Me.DetailsLayoutPanel.TabIndex = 1
'
'Copyright
'
Me.Copyright.BackColor = System.Drawing.Color.Transparent
Me.Copyright.Dock = System.Windows.Forms.DockStyle.Fill
Me.Copyright.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Copyright.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Copyright.ForeColor = System.Drawing.Color.Black
Me.Copyright.Location = New System.Drawing.Point(3, 20)
Me.Copyright.Location = New System.Drawing.Point(4, 29)
Me.Copyright.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
Me.Copyright.Name = "Copyright"
Me.Copyright.Size = New System.Drawing.Size(484, 19)
Me.Copyright.Size = New System.Drawing.Size(678, 26)
Me.Copyright.TabIndex = 2
Me.Copyright.Text = "저작권"
'
@@ -95,11 +99,12 @@ Partial Class SplashScreen
'
Me.Version.BackColor = System.Drawing.Color.Transparent
Me.Version.Dock = System.Windows.Forms.DockStyle.Fill
Me.Version.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Version.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Version.ForeColor = System.Drawing.Color.Black
Me.Version.Location = New System.Drawing.Point(3, 0)
Me.Version.Location = New System.Drawing.Point(4, 0)
Me.Version.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
Me.Version.Name = "Version"
Me.Version.Size = New System.Drawing.Size(484, 20)
Me.Version.Size = New System.Drawing.Size(678, 29)
Me.Version.TabIndex = 1
Me.Version.Text = "Version {0}.{1:00}.{2}.{3}"
'
@@ -108,21 +113,24 @@ Partial Class SplashScreen
Me.ApplicationTitle.BackColor = System.Drawing.Color.Transparent
Me.ApplicationTitle.Dock = System.Windows.Forms.DockStyle.Fill
Me.ApplicationTitle.Font = New System.Drawing.Font("맑은 고딕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.ApplicationTitle.Location = New System.Drawing.Point(3, 0)
Me.ApplicationTitle.Location = New System.Drawing.Point(4, 0)
Me.ApplicationTitle.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
Me.ApplicationTitle.Name = "ApplicationTitle"
Me.ApplicationTitle.Size = New System.Drawing.Size(418, 176)
Me.ApplicationTitle.Size = New System.Drawing.Size(686, 254)
Me.ApplicationTitle.TabIndex = 0
Me.ApplicationTitle.Text = "응용 프로그램 제목"
Me.ApplicationTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
'
'SplashScreen
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!)
Me.AutoScaleDimensions = New System.Drawing.SizeF(9.0!, 21.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(424, 252)
Me.ClientSize = New System.Drawing.Size(694, 364)
Me.ControlBox = False
Me.Controls.Add(Me.MainLayoutPanel)
Me.Font = New System.Drawing.Font("맑은 고딕", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "SplashScreen"

View File

@@ -112,9 +112,9 @@
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<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=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@@ -191,7 +191,7 @@ Public NotInheritable Class SplashScreen
Try
Cn.Open()
Catch ex As Exception
MsgBox("데이터베이스를 열수 없습니다" & vbCrLf & "데이터베이스 파일이 손상되었는지 사용중인지 확인하세요", MsgBoxStyle.Critical, "오류")
MsgBox("데이터베이스를 열수 없습니다" & vbCrLf & "데이터베이스 파일이 손상되었는지 사용중인지 확인하세요₩n" + ex.Message, MsgBoxStyle.Critical, "오류")
Return False
End Try
If Cn.State <> ConnectionState.Open Then

View File

@@ -28,32 +28,39 @@ Partial Class fPassword
'
'TextBox1
'
Me.TextBox1.Location = New System.Drawing.Point(20, 16)
Me.TextBox1.Dock = System.Windows.Forms.DockStyle.Top
Me.TextBox1.Location = New System.Drawing.Point(10, 10)
Me.TextBox1.Margin = New System.Windows.Forms.Padding(5, 7, 5, 7)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(345, 21)
Me.TextBox1.Size = New System.Drawing.Size(576, 34)
Me.TextBox1.TabIndex = 0
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(20, 45)
Me.Button1.Dock = System.Windows.Forms.DockStyle.Bottom
Me.Button1.Location = New System.Drawing.Point(10, 51)
Me.Button1.Margin = New System.Windows.Forms.Padding(5, 7, 5, 7)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(345, 28)
Me.Button1.Size = New System.Drawing.Size(576, 65)
Me.Button1.TabIndex = 1
Me.Button1.Text = "Button1"
Me.Button1.Text = "확인"
Me.Button1.UseVisualStyleBackColor = True
'
'fPassword
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!)
Me.AutoScaleDimensions = New System.Drawing.SizeF(11.0!, 28.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(379, 85)
Me.ClientSize = New System.Drawing.Size(596, 126)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.TextBox1)
Me.Font = New System.Drawing.Font("맑은 고딕", 15.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.Margin = New System.Windows.Forms.Padding(5, 7, 5, 7)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "fPassword"
Me.Padding = New System.Windows.Forms.Padding(10)
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "fPassword"
Me.Text = "암호 입력"
Me.ResumeLayout(False)
Me.PerformLayout()

107
Epole/fAuth.Designer.vb generated
View File

@@ -31,104 +31,149 @@ Partial Class fAuth
Me.LinkLabel1 = New System.Windows.Forms.LinkLabel()
Me.Button1 = New System.Windows.Forms.Button()
Me.Button2 = New System.Windows.Forms.Button()
Me.Panel1 = New System.Windows.Forms.Panel()
Me.Panel2 = New System.Windows.Forms.Panel()
Me.Panel1.SuspendLayout()
Me.Panel2.SuspendLayout()
Me.SuspendLayout()
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Font = New System.Drawing.Font("굴림", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.Label1.Location = New System.Drawing.Point(17, 19)
Me.Label1.Dock = System.Windows.Forms.DockStyle.Top
Me.Label1.Font = New System.Drawing.Font("맑은 고딕", 17.0!, System.Drawing.FontStyle.Bold)
Me.Label1.Location = New System.Drawing.Point(10, 10)
Me.Label1.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(298, 16)
Me.Label1.Size = New System.Drawing.Size(595, 71)
Me.Label1.TabIndex = 0
Me.Label1.Text = "현재 남은 사용 횟수는 {0} 회 입니다."
Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Font = New System.Drawing.Font("굴림", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.Label2.Location = New System.Drawing.Point(17, 55)
Me.Label2.Dock = System.Windows.Forms.DockStyle.Top
Me.Label2.Font = New System.Drawing.Font("맑은 고딕", 13.0!, System.Drawing.FontStyle.Bold)
Me.Label2.Location = New System.Drawing.Point(10, 81)
Me.Label2.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(303, 12)
Me.Label2.Size = New System.Drawing.Size(595, 35)
Me.Label2.TabIndex = 1
Me.Label2.Text = "프로그램을 영구 사용하려면 인증키를 입력하세요."
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.Dock = System.Windows.Forms.DockStyle.Top
Me.Label3.Font = New System.Drawing.Font("맑은 고딕", 13.0!, System.Drawing.FontStyle.Bold)
Me.Label3.ForeColor = System.Drawing.Color.Red
Me.Label3.Location = New System.Drawing.Point(17, 75)
Me.Label3.Location = New System.Drawing.Point(10, 116)
Me.Label3.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(341, 12)
Me.Label3.Size = New System.Drawing.Size(595, 35)
Me.Label3.TabIndex = 1
Me.Label3.Text = "지정 횟수를 초과하면 더 이상 프로그램을 사용할 수 없습니다."
'
'TextBox1
'
Me.TextBox1.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.TextBox1.Location = New System.Drawing.Point(19, 133)
Me.TextBox1.Dock = System.Windows.Forms.DockStyle.Fill
Me.TextBox1.Font = New System.Drawing.Font("굴림", 20.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.TextBox1.Location = New System.Drawing.Point(0, 5)
Me.TextBox1.Margin = New System.Windows.Forms.Padding(4, 6, 4, 6)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(367, 29)
Me.TextBox1.Size = New System.Drawing.Size(508, 38)
Me.TextBox1.TabIndex = 1
'
'Label4
'
Me.Label4.AutoSize = True
Me.Label4.Location = New System.Drawing.Point(37, 104)
Me.Label4.Dock = System.Windows.Forms.DockStyle.Left
Me.Label4.Location = New System.Drawing.Point(0, 0)
Me.Label4.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(37, 12)
Me.Label4.Size = New System.Drawing.Size(52, 21)
Me.Label4.TabIndex = 3
Me.Label4.Text = "문의 :"
'
'LinkLabel1
'
Me.LinkLabel1.AutoSize = True
Me.LinkLabel1.Location = New System.Drawing.Point(79, 103)
Me.LinkLabel1.Dock = System.Windows.Forms.DockStyle.Left
Me.LinkLabel1.Font = New System.Drawing.Font("맑은 고딕", 10.0!, System.Drawing.FontStyle.Bold)
Me.LinkLabel1.Location = New System.Drawing.Point(52, 0)
Me.LinkLabel1.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
Me.LinkLabel1.Name = "LinkLabel1"
Me.LinkLabel1.Size = New System.Drawing.Size(283, 12)
Me.LinkLabel1.Size = New System.Drawing.Size(342, 19)
Me.LinkLabel1.TabIndex = 4
Me.LinkLabel1.TabStop = True
Me.LinkLabel1.Text = "해광기획 (http://hawgwang.co.kr) / 062-381-0411"
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(392, 133)
Me.Button1.Dock = System.Windows.Forms.DockStyle.Right
Me.Button1.Location = New System.Drawing.Point(508, 5)
Me.Button1.Margin = New System.Windows.Forms.Padding(4, 6, 4, 6)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(68, 29)
Me.Button1.Size = New System.Drawing.Size(87, 39)
Me.Button1.TabIndex = 2
Me.Button1.Text = "인증"
Me.Button1.UseVisualStyleBackColor = True
'
'Button2
'
Me.Button2.Location = New System.Drawing.Point(19, 170)
Me.Button2.Dock = System.Windows.Forms.DockStyle.Bottom
Me.Button2.Location = New System.Drawing.Point(10, 235)
Me.Button2.Margin = New System.Windows.Forms.Padding(4, 6, 4, 6)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(441, 29)
Me.Button2.Size = New System.Drawing.Size(595, 50)
Me.Button2.TabIndex = 0
Me.Button2.Text = "테스트 사용"
Me.Button2.UseVisualStyleBackColor = True
'
'Panel1
'
Me.Panel1.Controls.Add(Me.TextBox1)
Me.Panel1.Controls.Add(Me.Button1)
Me.Panel1.Dock = System.Windows.Forms.DockStyle.Bottom
Me.Panel1.Location = New System.Drawing.Point(10, 186)
Me.Panel1.Name = "Panel1"
Me.Panel1.Padding = New System.Windows.Forms.Padding(0, 5, 0, 5)
Me.Panel1.Size = New System.Drawing.Size(595, 49)
Me.Panel1.TabIndex = 5
'
'Panel2
'
Me.Panel2.Controls.Add(Me.LinkLabel1)
Me.Panel2.Controls.Add(Me.Label4)
Me.Panel2.Dock = System.Windows.Forms.DockStyle.Top
Me.Panel2.Location = New System.Drawing.Point(10, 151)
Me.Panel2.Name = "Panel2"
Me.Panel2.Size = New System.Drawing.Size(595, 26)
Me.Panel2.TabIndex = 6
'
'fAuth
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!)
Me.AutoScaleDimensions = New System.Drawing.SizeF(9.0!, 21.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(478, 219)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.LinkLabel1)
Me.Controls.Add(Me.Label4)
Me.Controls.Add(Me.TextBox1)
Me.ClientSize = New System.Drawing.Size(615, 295)
Me.Controls.Add(Me.Panel2)
Me.Controls.Add(Me.Label3)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.Panel1)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Label1)
Me.Font = New System.Drawing.Font("맑은 고딕", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Margin = New System.Windows.Forms.Padding(4, 6, 4, 6)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "fAuth"
Me.Padding = New System.Windows.Forms.Padding(10)
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "인증하기"
Me.Panel1.ResumeLayout(False)
Me.Panel1.PerformLayout()
Me.Panel2.ResumeLayout(False)
Me.Panel2.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents Label1 As System.Windows.Forms.Label
@@ -139,4 +184,6 @@ Partial Class fAuth
Friend WithEvents LinkLabel1 As System.Windows.Forms.LinkLabel
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents Button2 As System.Windows.Forms.Button
Friend WithEvents Panel1 As Panel
Friend WithEvents Panel2 As Panel
End Class

View File

@@ -1,10 +1,15 @@
Public Class fAuth
Private Sub fAuth_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' Runcnt = Me.ReadAuthcount
If Runcnt > 9 Then
Button2.Text = "사용횟수초과(테스트사용불가)"
Button2.Enabled = False
If System.Diagnostics.Debugger.IsAttached = False Then
If RunCnt > 9 Then
Button2.Text = "사용횟수초과(테스트사용불가)"
Button2.Enabled = False
End If
Else
MsgBox("개발툴 연결로 인해 인증을 해제 합니다")
End If
Dim remain As Integer = 10 - Runcnt
Label1.Text = String.Format(Label1.Text, remain)
@@ -43,6 +48,9 @@
auth.SetAuth(dateValue.ToFileTimeUtc(), setfile)
MsgBox("프로그램을 재실행 하세요", MsgBoxStyle.Information, "확인")
DialogResult = Windows.Forms.DialogResult.Cancel
Else
MsgBox("인증키값이 일치하지 않습니다" + vbCrLf + "다시 시도하세요", MsgBoxStyle.Information, "확인")
End If
Catch ex As Exception
MsgBox("인증키 확인 중 오류 발생, 다시 시도하세요")

5
Epole/packages.config Normal file
View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.VisualStudio.Interop" version="17.7.37355" targetFramework="net40" />
<package id="stdole" version="17.7.37355" targetFramework="net40" />
</packages>

View File

@@ -51,11 +51,11 @@
<DebugType>full</DebugType>
<DefineDebug>true</DefineDebug>
<DefineTrace>false</DefineTrace>
<OutputPath>..\..\..\..\SIMP\통합번호찰%28가로등%29\</OutputPath>
<OutputPath>..\..\Runtime\통합번호찰프로그램%28PDF출력%29 - 가로등%282%29\</OutputPath>
<DocumentationFile>
</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355</NoWarn>
<PlatformTarget>x86</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
<RunCodeAnalysis>false</RunCodeAnalysis>
<UseVSHostingProcess>true</UseVSHostingProcess>
<DefineConstants>STYLES=0</DefineConstants>
@@ -92,11 +92,16 @@
<Reference Include="FarPoint.Win.Chart, Version=5.0.3505.2008, Culture=neutral, PublicKeyToken=327c3516b1b18457, processorArchitecture=MSIL" />
<Reference Include="FarPoint.Win.Spread, Version=5.0.3505.2008, Culture=neutral, PublicKeyToken=327c3516b1b18457, processorArchitecture=MSIL" />
<Reference Include="Microsoft.VisualBasic.Compatibility" />
<Reference Include="Microsoft.VisualStudio.Interop, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Interop.17.7.37355\lib\net20\Microsoft.VisualStudio.Interop.dll</HintPath>
</Reference>
<Reference Include="NewControlGroup, Version=1.0.3928.21799, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\DLLS\NewControlGroup.dll</HintPath>
</Reference>
<Reference Include="stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<Reference Include="stdole, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\stdole.17.7.37355\lib\net20\stdole.dll</HintPath>
</Reference>
<Reference Include="System">
<Private>False</Private>
</Reference>
@@ -367,76 +372,13 @@
<Name>Cls_SkNetworks</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\hd_24.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\hd_16.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\add_16.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\apps_16.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\apps_24.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\del_24.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\help_24.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\smicn_24.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\PNG\splay_24.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\PNG\cd_24.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\cd_24.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\add_24.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\srch_32.png" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\아이콘\play_32.png" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="bin\Debug\아이콘\print_24.png" />
<None Include="bin\Debug\아이콘\print_32.png" />
<None Include="bin\Debug\아이콘\back_16.png" />
<None Include="bin\Debug\아이콘\rewnd_16.png" />
<None Include="bin\Debug\아이콘\forwd_16.png" />
<None Include="bin\Debug\아이콘\fastf_24.png" />
<None Include="bin\Debug\아이콘\fastf_16.png" />
<None Include="bin\Debug\아이콘\lgicn_24.png" />
<None Include="bin\Debug\아이콘\lgicn_16.png" />
<None Include="bin\Debug\아이콘\picts_24.png" />
<None Include="bin\Debug\아이콘\chart_24.png" />
<None Include="bin\Debug\아이콘\image_32.png" />
<None Include="bin\Debug\아이콘\del_32.png" />
<None Include="bin\Debug\아이콘\ref_24.png" />
<None Include="bin\Debug\아이콘\PNG\ref_24.png" />
<None Include="bin\Debug\아이콘\prtpv_24.png" />
<None Include="bin\Debug\아이콘\redo_132.png" />
<None Include="bin\Debug\아이콘\web_32.png" />
<None Include="bin\Debug\아이콘\about_32.png" />
<None Include="bin\Debug\아이콘\prtpv_32.png" />
<None Include="bin\Debug\image\start.png" />
<None Include="bin\Debug\아이콘\splay_24.png" />
<None Include="bin\Debug\아이콘\splay_32.png" />
<Content Include="DataBase\simp.accdb" />
<Content Include="hg.ico" />
<Content Include="ReadMe.txt" />
<Content Include="문서\SEtcontrol백업.txt" />
<None Include="packages.config" />
<None Include="Resources\opts_32.png" />
<None Include="Resources\print_321.png" />
<None Include="Resources\ref_24.png" />

View File

@@ -1,6 +1,8 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2010
# Visual Studio Version 17
VisualStudioVersion = 17.7.34031.279
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "통합번호찰_가로등", "Epole\통합번호찰_가로등.vbproj", "{AFB4982C-C6E3-49C6-8C8F-01154D3A4D64}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Cls_SkNetworks", "Cls_Sknetworks\Cls_SkNetworks.vbproj", "{679094DD-F99D-498A-8BC0-080714A00F46}"
@@ -27,6 +29,14 @@ Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ArinNewFp13", "..\ArinNewFp
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StyleEditor", "StyleEditor\StyleEditor.csproj", "{7CEBE298-8D1A-436A-901C-F10DBEEE6510}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Union", "..\Z_Epole_LimitEditor(통합)\Union\Union.vbproj", "{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Keygen", "Keygen", "{305A5F3E-2995-4E51-BCB7-32CB865C163A}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "v2", "..\Z_Epole_LimitEditor(통합)\V2\v2.vbproj", "{042A2888-6EAC-479C-9D48-4314F0D8B760}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "v3", "..\Z_Epole_LimitEditor(통합)\V3\v3.vbproj", "{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
CD_ROM|Any CPU = CD_ROM|Any CPU
@@ -336,21 +346,114 @@ Global
{7CEBE298-8D1A-436A-901C-F10DBEEE6510}.SingleImage|Mixed Platforms.Build.0 = Release|x86
{7CEBE298-8D1A-436A-901C-F10DBEEE6510}.SingleImage|x86.ActiveCfg = Release|x86
{7CEBE298-8D1A-436A-901C-F10DBEEE6510}.SingleImage|x86.Build.0 = Release|x86
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.CD_ROM|Any CPU.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.CD_ROM|Any CPU.Build.0 = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.CD_ROM|Mixed Platforms.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.CD_ROM|Mixed Platforms.Build.0 = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.CD_ROM|x86.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.CD_ROM|x86.Build.0 = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Debug|x86.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Debug|x86.Build.0 = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.DVD-5|Any CPU.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.DVD-5|Any CPU.Build.0 = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.DVD-5|Mixed Platforms.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.DVD-5|Mixed Platforms.Build.0 = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.DVD-5|x86.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.DVD-5|x86.Build.0 = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Release|Any CPU.Build.0 = Release|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Release|x86.ActiveCfg = Release|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.Release|x86.Build.0 = Release|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.SingleImage|Any CPU.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.SingleImage|Any CPU.Build.0 = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.SingleImage|Mixed Platforms.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.SingleImage|Mixed Platforms.Build.0 = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.SingleImage|x86.ActiveCfg = Debug|Any CPU
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2}.SingleImage|x86.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.CD_ROM|Any CPU.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.CD_ROM|Any CPU.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.CD_ROM|Mixed Platforms.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.CD_ROM|Mixed Platforms.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.CD_ROM|x86.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.CD_ROM|x86.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Debug|Any CPU.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Debug|x86.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Debug|x86.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.DVD-5|Any CPU.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.DVD-5|Any CPU.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.DVD-5|Mixed Platforms.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.DVD-5|Mixed Platforms.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.DVD-5|x86.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.DVD-5|x86.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Release|Any CPU.ActiveCfg = Release|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Release|Any CPU.Build.0 = Release|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Release|x86.ActiveCfg = Release|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.Release|x86.Build.0 = Release|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.SingleImage|Any CPU.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.SingleImage|Any CPU.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.SingleImage|Mixed Platforms.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.SingleImage|Mixed Platforms.Build.0 = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.SingleImage|x86.ActiveCfg = Debug|Any CPU
{042A2888-6EAC-479C-9D48-4314F0D8B760}.SingleImage|x86.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.CD_ROM|Any CPU.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.CD_ROM|Any CPU.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.CD_ROM|Mixed Platforms.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.CD_ROM|Mixed Platforms.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.CD_ROM|x86.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.CD_ROM|x86.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Debug|x86.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Debug|x86.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.DVD-5|Any CPU.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.DVD-5|Any CPU.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.DVD-5|Mixed Platforms.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.DVD-5|Mixed Platforms.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.DVD-5|x86.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.DVD-5|x86.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Release|Any CPU.Build.0 = Release|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Release|x86.ActiveCfg = Release|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.Release|x86.Build.0 = Release|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.SingleImage|Any CPU.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.SingleImage|Any CPU.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.SingleImage|Mixed Platforms.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.SingleImage|Mixed Platforms.Build.0 = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.SingleImage|x86.ActiveCfg = Debug|Any CPU
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF}.SingleImage|x86.Build.0 = Debug|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{E98126B2-AF17-4783-96B9-856D6744DCA3} = {22F8F794-A64A-4284-8C18-415EA737A652}
{FC8D5F6B-9892-48A4-BD90-4FA6F427567C} = {22F8F794-A64A-4284-8C18-415EA737A652}
{E98126B2-AF17-4783-96B9-856D6744DCA3} = {22F8F794-A64A-4284-8C18-415EA737A652}
{A8FF605F-231E-4DC1-9CD8-FD1466FDE5CD} = {22F8F794-A64A-4284-8C18-415EA737A652}
{2BC2ED74-6A5C-4478-B897-E76F34FC1CCF} = {22F8F794-A64A-4284-8C18-415EA737A652}
{B0371B1F-8657-47A6-979E-4AEB970559D2} = {22F8F794-A64A-4284-8C18-415EA737A652}
{3611D55B-71E3-4D92-9EFC-43F7D8BB8555} = {22F8F794-A64A-4284-8C18-415EA737A652}
{B0CC37CF-1CE5-42B4-8E4D-863F8D45B2A2} = {305A5F3E-2995-4E51-BCB7-32CB865C163A}
{042A2888-6EAC-479C-9D48-4314F0D8B760} = {305A5F3E-2995-4E51-BCB7-32CB865C163A}
{D9C116F9-65B4-47E7-82DB-3DE4F3FDE1CF} = {305A5F3E-2995-4E51-BCB7-32CB865C163A}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
Spices_ProjectFileName =
Spices_CreateProject = -1
Spices_ObfuscateProject = -1
Spices_CreateProject = -1
Spices_ProjectFileName =
EndGlobalSection
EndGlobal

Binary file not shown.

View File

@@ -0,0 +1,36 @@
MICROSOFT SOFTWARE LICENSE TERMS
MICROSOFT VISUAL STUDIO ADD-ONs and EXTENSIONS
These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms.
IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.
1. INSTALLATION AND USE RIGHTS.
You may install and use any number of copies of the software to use solely with
Visual Studio Community
Visual Studio Professional
Visual Studio Enterprise
Visual Studio Code
2. THIRD PARTY COMPONENTS.<2E> The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software.<2E>
3. DATA.
a. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the software documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications and you should provide a copy of Microsoft<66>s privacy statement to your users. The Microsoft privacy statement is located here https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use from the software documentation and our privacy statement. Your use of the software operates as your consent to these practices.
b. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.
4. SCOPE OF LICENSE. The software is licensed, not sold. These license terms only give you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in these license terms. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. In addition, you may not
* work around any technical limitations in the software;
* reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software;
* remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;
* use the software in any way that is against the law;
* share, publish, rent, or lease the software; or
* provide the software as a stand-alone offering or combine it with any of your applications for others to use, or transfer the software or this agreement to any third party.
5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting.
6. SUPPORT SERVICES. Because this software is <20>as is<69>, we may not provide support services for it.
7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.
8. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.
9. CONSUMER RIGHTS; REGIONAL VARIATIONS. These license terms describe certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. You may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:
a. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.
b. Canada. You may stop receiving updates on your device by turning off Internet access. If and when you re-connect to the Internet, the software will resume checking for and installing updates.
c. Germany and Austria.
(i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.
(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in the case of death or personal or physical injury, Microsoft is liable according to the statutory law.
Subject to the preceding sentence (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.
10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED <20>AS-IS<49>. YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
11. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.
This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.
It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

36
packages/stdole.17.7.37355/LICENSE.txt vendored Normal file
View File

@@ -0,0 +1,36 @@
MICROSOFT SOFTWARE LICENSE TERMS
MICROSOFT VISUAL STUDIO ADD-ONs and EXTENSIONS
These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms.
IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.
1. INSTALLATION AND USE RIGHTS.
You may install and use any number of copies of the software to use solely with
Visual Studio Community
Visual Studio Professional
Visual Studio Enterprise
Visual Studio Code
2. THIRD PARTY COMPONENTS.<2E> The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software.<2E>
3. DATA.
a. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the software documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications and you should provide a copy of Microsoft<66>s privacy statement to your users. The Microsoft privacy statement is located here https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use from the software documentation and our privacy statement. Your use of the software operates as your consent to these practices.
b. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.
4. SCOPE OF LICENSE. The software is licensed, not sold. These license terms only give you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in these license terms. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. In addition, you may not
* work around any technical limitations in the software;
* reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software;
* remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;
* use the software in any way that is against the law;
* share, publish, rent, or lease the software; or
* provide the software as a stand-alone offering or combine it with any of your applications for others to use, or transfer the software or this agreement to any third party.
5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting.
6. SUPPORT SERVICES. Because this software is <20>as is<69>, we may not provide support services for it.
7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.
8. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.
9. CONSUMER RIGHTS; REGIONAL VARIATIONS. These license terms describe certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. You may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:
a. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.
b. Canada. You may stop receiving updates on your device by turning off Internet access. If and when you re-connect to the Internet, the software will resume checking for and installing updates.
c. Germany and Austria.
(i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.
(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in the case of death or personal or physical injury, Microsoft is liable according to the statutory law.
Subject to the preceding sentence (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.
10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED <20>AS-IS<49>. YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
11. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.
This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.
It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.