초기 커밋.
This commit is contained in:
parent
a408eb2d7e
commit
9e7a310be9
29
MAXIMUM_Product_Program.sln
Normal file
29
MAXIMUM_Product_Program.sln
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.5.33627.172
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "MAXIMUM_Product_Program", "MAXIMUM_Product_Program\MAXIMUM_Product_Program.vbproj", "{CA1C16A0-00FB-4EBD-AF29-5DBD46865EB7}"
|
||||
EndProject
|
||||
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup", "Setup\Setup.vdproj", "{EA60ADAC-C42F-49C8-8BBA-F7F436B5FD18}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{CA1C16A0-00FB-4EBD-AF29-5DBD46865EB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{CA1C16A0-00FB-4EBD-AF29-5DBD46865EB7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{CA1C16A0-00FB-4EBD-AF29-5DBD46865EB7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{CA1C16A0-00FB-4EBD-AF29-5DBD46865EB7}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{EA60ADAC-C42F-49C8-8BBA-F7F436B5FD18}.Debug|Any CPU.ActiveCfg = Debug
|
||||
{EA60ADAC-C42F-49C8-8BBA-F7F436B5FD18}.Release|Any CPU.ActiveCfg = Release
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {FE85AEFB-C8F4-4609-977B-FEE6E6B26773}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
6
MAXIMUM_Product_Program/App.config
Normal file
6
MAXIMUM_Product_Program/App.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
|
||||
</startup>
|
||||
</configuration>
|
105
MAXIMUM_Product_Program/BrotherPrint.vb
Normal file
105
MAXIMUM_Product_Program/BrotherPrint.vb
Normal file
@ -0,0 +1,105 @@
|
||||
Imports System.Management
|
||||
Imports System.Drawing.Printing
|
||||
|
||||
Module BrotherPrint
|
||||
|
||||
Public Enum PrintList
|
||||
BoxCode
|
||||
Warranty
|
||||
ProdLabel
|
||||
maxPrint
|
||||
End Enum
|
||||
|
||||
Public PrintActive(PrintList.maxPrint - 1) As Boolean
|
||||
Public PrintName(PrintList.maxPrint - 1) As String
|
||||
Public PrintAddress(PrintList.maxPrint - 1) As String
|
||||
Public PrintUseCode(PrintList.maxPrint - 1) As String
|
||||
Public PrintUseText(PrintList.maxPrint - 1) As String
|
||||
Public PrintUseDate As String
|
||||
Public PrintUseCkb(PrintList.maxPrint - 1) As CheckBox
|
||||
Public PrintUseTxb(PrintList.maxPrint - 1) As TextBox
|
||||
Public PrintUseZip(PrintList.maxPrint - 1) As TextBox
|
||||
|
||||
|
||||
Private Function PrintState_Check(printer As String) As Boolean
|
||||
Dim scope As ManagementScope = New ManagementScope("\root\cimv2")
|
||||
scope.Connect()
|
||||
Dim searcher As ManagementObjectSearcher = New ManagementObjectSearcher("SELECT * FROM Win32_Printer")
|
||||
|
||||
Dim CheckName As String = String.Empty
|
||||
|
||||
For Each printobj As ManagementObject In searcher.Get
|
||||
CheckName = printobj("Name").ToString
|
||||
If CheckName.Equals(printer) Then
|
||||
If printobj("WorkOffline").ToString.ToLower.Equals("true") Then
|
||||
Return False
|
||||
Else
|
||||
Return True
|
||||
End If
|
||||
End If
|
||||
Next
|
||||
|
||||
Return False
|
||||
End Function
|
||||
|
||||
Public Sub PrintRun(PrintText As String)
|
||||
Try
|
||||
Dim doc As bpac.Document = New bpac.Document
|
||||
|
||||
For i = 0 To PrintList.maxPrint - 1
|
||||
If PrintActive(i) = True Then
|
||||
If PrintState_Check(PrintName(i)) Then
|
||||
doc.Open(PrintAddress(i))
|
||||
Dim PrintCheck As Boolean = doc.SetPrinter(PrintName(i), True)
|
||||
|
||||
If PrintCheck Then
|
||||
|
||||
Select Case i
|
||||
Case PrintList.BoxCode
|
||||
doc.GetObject(PrintUseCode(i)).Text = PrintText
|
||||
doc.GetObject(PrintUseText(i)).Text = PrintText
|
||||
Case PrintList.Warranty
|
||||
doc.GetObject(PrintUseText(i)).Text = PrintText
|
||||
Case PrintList.ProdLabel
|
||||
doc.GetObject(PrintUseCode(i)).Text = PrintText
|
||||
doc.GetObject(PrintUseText(i)).Text = PrintText
|
||||
doc.GetObject(PrintUseDate).Text = Format(Now, "yyyy") & "." & Format(Now, "MM")
|
||||
Case Else
|
||||
MsgBox("잘못된 경로입니다. (라벨 인쇄)", vbCritical)
|
||||
Exit Sub
|
||||
End Select
|
||||
|
||||
doc.StartPrint("", bpac.PrintOptionConstants.bpoDefault)
|
||||
doc.PrintOut(1, bpac.PrintOptionConstants.bpoDefault)
|
||||
doc.EndPrint()
|
||||
doc.Close()
|
||||
|
||||
Else
|
||||
MsgBox("인쇄 중 경로 이탈 오류 발생", vbCritical)
|
||||
Exit Sub
|
||||
End If
|
||||
Else
|
||||
MsgBox(PrintName(i) & "의 연결 문제 발생" & vbCrLf & "연결을 확인하여 주십시오.", vbCritical)
|
||||
Exit Sub
|
||||
End If
|
||||
End If
|
||||
Next
|
||||
|
||||
Catch ex As Exception
|
||||
MsgBox("인쇄 중 오류 발생 !" & vbCrLf & ex.Message, vbCritical)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Public Sub List_Refreash(ApplyDgv As DataGridView)
|
||||
Dim PrintName As String
|
||||
Dim PrintList As System.Collections.ArrayList = New System.Collections.ArrayList(PrinterSettings.InstalledPrinters)
|
||||
PrintList.Sort()
|
||||
|
||||
ApplyDgv.Rows.Clear()
|
||||
|
||||
For i = 0 To PrintList.Count - 1
|
||||
PrintName = PrintList(i).ToString
|
||||
ApplyDgv.Rows.Add(PrintName)
|
||||
Next
|
||||
End Sub
|
||||
End Module
|
BIN
MAXIMUM_Product_Program/JOMT 아이콘_ICO.ico
Normal file
BIN
MAXIMUM_Product_Program/JOMT 아이콘_ICO.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 116 KiB |
131
MAXIMUM_Product_Program/LoginForm.Designer.vb
generated
Normal file
131
MAXIMUM_Product_Program/LoginForm.Designer.vb
generated
Normal file
@ -0,0 +1,131 @@
|
||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
<Global.System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1726")> _
|
||||
Partial Class LoginForm
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다.
|
||||
<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
|
||||
Friend WithEvents LogoPictureBox As System.Windows.Forms.PictureBox
|
||||
Friend WithEvents lbUserID As System.Windows.Forms.Label
|
||||
Friend WithEvents lbUserPW As System.Windows.Forms.Label
|
||||
Friend WithEvents txbUserID As System.Windows.Forms.TextBox
|
||||
Friend WithEvents txbUserPW As System.Windows.Forms.TextBox
|
||||
Friend WithEvents OK As System.Windows.Forms.Button
|
||||
Friend WithEvents Cancel As System.Windows.Forms.Button
|
||||
|
||||
'Windows Form 디자이너에 필요합니다.
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다.
|
||||
'수정하려면 Windows Form 디자이너를 사용하십시오.
|
||||
'코드 편집기에서는 수정하지 마세요.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(LoginForm))
|
||||
Me.lbUserID = New System.Windows.Forms.Label()
|
||||
Me.lbUserPW = New System.Windows.Forms.Label()
|
||||
Me.txbUserID = New System.Windows.Forms.TextBox()
|
||||
Me.txbUserPW = New System.Windows.Forms.TextBox()
|
||||
Me.OK = New System.Windows.Forms.Button()
|
||||
Me.Cancel = New System.Windows.Forms.Button()
|
||||
Me.LogoPictureBox = New System.Windows.Forms.PictureBox()
|
||||
CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'lbUserID
|
||||
'
|
||||
Me.lbUserID.Location = New System.Drawing.Point(172, 24)
|
||||
Me.lbUserID.Name = "lbUserID"
|
||||
Me.lbUserID.Size = New System.Drawing.Size(220, 23)
|
||||
Me.lbUserID.TabIndex = 0
|
||||
Me.lbUserID.Text = "사용자 이름(&U)"
|
||||
Me.lbUserID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||
'
|
||||
'lbUserPW
|
||||
'
|
||||
Me.lbUserPW.Location = New System.Drawing.Point(172, 81)
|
||||
Me.lbUserPW.Name = "lbUserPW"
|
||||
Me.lbUserPW.Size = New System.Drawing.Size(220, 23)
|
||||
Me.lbUserPW.TabIndex = 2
|
||||
Me.lbUserPW.Text = "암호(&P)"
|
||||
Me.lbUserPW.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||
'
|
||||
'txbUserID
|
||||
'
|
||||
Me.txbUserID.Location = New System.Drawing.Point(174, 44)
|
||||
Me.txbUserID.Name = "txbUserID"
|
||||
Me.txbUserID.Size = New System.Drawing.Size(220, 21)
|
||||
Me.txbUserID.TabIndex = 1
|
||||
'
|
||||
'txbUserPW
|
||||
'
|
||||
Me.txbUserPW.Location = New System.Drawing.Point(174, 101)
|
||||
Me.txbUserPW.Name = "txbUserPW"
|
||||
Me.txbUserPW.PasswordChar = Global.Microsoft.VisualBasic.ChrW(42)
|
||||
Me.txbUserPW.Size = New System.Drawing.Size(220, 21)
|
||||
Me.txbUserPW.TabIndex = 3
|
||||
'
|
||||
'OK
|
||||
'
|
||||
Me.OK.Location = New System.Drawing.Point(197, 161)
|
||||
Me.OK.Name = "OK"
|
||||
Me.OK.Size = New System.Drawing.Size(94, 23)
|
||||
Me.OK.TabIndex = 4
|
||||
Me.OK.Text = "확인(&O)"
|
||||
'
|
||||
'Cancel
|
||||
'
|
||||
Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
|
||||
Me.Cancel.Location = New System.Drawing.Point(300, 161)
|
||||
Me.Cancel.Name = "Cancel"
|
||||
Me.Cancel.Size = New System.Drawing.Size(94, 23)
|
||||
Me.Cancel.TabIndex = 5
|
||||
Me.Cancel.Text = "취소(&C)"
|
||||
'
|
||||
'LogoPictureBox
|
||||
'
|
||||
Me.LogoPictureBox.Image = CType(resources.GetObject("LogoPictureBox.Image"), System.Drawing.Image)
|
||||
Me.LogoPictureBox.Location = New System.Drawing.Point(0, 0)
|
||||
Me.LogoPictureBox.Name = "LogoPictureBox"
|
||||
Me.LogoPictureBox.Size = New System.Drawing.Size(165, 193)
|
||||
Me.LogoPictureBox.TabIndex = 0
|
||||
Me.LogoPictureBox.TabStop = False
|
||||
'
|
||||
'LoginForm
|
||||
'
|
||||
Me.AcceptButton = Me.OK
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.CancelButton = Me.Cancel
|
||||
Me.ClientSize = New System.Drawing.Size(401, 192)
|
||||
Me.Controls.Add(Me.Cancel)
|
||||
Me.Controls.Add(Me.OK)
|
||||
Me.Controls.Add(Me.txbUserPW)
|
||||
Me.Controls.Add(Me.txbUserID)
|
||||
Me.Controls.Add(Me.lbUserPW)
|
||||
Me.Controls.Add(Me.lbUserID)
|
||||
Me.Controls.Add(Me.LogoPictureBox)
|
||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
|
||||
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
||||
Me.MaximizeBox = False
|
||||
Me.MinimizeBox = False
|
||||
Me.Name = "LoginForm"
|
||||
Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide
|
||||
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
|
||||
Me.Text = "DUALSONIC INFO REG START LOGIN !"
|
||||
CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.ResumeLayout(False)
|
||||
Me.PerformLayout()
|
||||
|
||||
End Sub
|
||||
|
||||
End Class
|
2162
MAXIMUM_Product_Program/LoginForm.resx
Normal file
2162
MAXIMUM_Product_Program/LoginForm.resx
Normal file
File diff suppressed because it is too large
Load Diff
92
MAXIMUM_Product_Program/LoginForm.vb
Normal file
92
MAXIMUM_Product_Program/LoginForm.vb
Normal file
@ -0,0 +1,92 @@
|
||||
Public Class LoginForm
|
||||
|
||||
' TODO: 제공된 사용자 이름과 암호를 사용하여 사용자 지정 인증을 수행하는 코드를 삽입합니다
|
||||
' (https://go.microsoft.com/fwlink/?LinkId=35339 참조).
|
||||
' 그러면 사용자 지정 보안 주체가 현재 스레드의 보안 주체에 다음과 같이 첨부될 수 있습니다.
|
||||
' My.User.CurrentPrincipal = CustomPrincipal
|
||||
' 여기서 CustomPrincipal은 인증을 수행하는 데 사용되는 IPrincipal이 구현된 것입니다.
|
||||
' 나중에 My.User는 CustomPrincipal 개체에 캡슐화된 사용자 이름, 표시 이름 등의
|
||||
' ID 정보를 반환합니다.
|
||||
Public Structure UserData
|
||||
Public UserID As String
|
||||
Public UserPW As String
|
||||
Public IDType As String
|
||||
Public ExtPermition As String
|
||||
Public NowState As Int16
|
||||
End Structure
|
||||
Public UserInfo As UserData
|
||||
Private Const InfoTypeNumber As String = "10"
|
||||
|
||||
Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click
|
||||
|
||||
Try
|
||||
With UserInfo
|
||||
.UserID = String.Empty
|
||||
.UserPW = String.Empty
|
||||
.IDType = String.Empty
|
||||
.ExtPermition = String.Empty
|
||||
End With
|
||||
|
||||
Dim DBCmd As String = "SELECT UserID,UserPW,IDType,ExtPermition,NowState FROM " & LoginDB & " WHERE UserID = '" & txbUserID.Text & "'"
|
||||
If DBQueryReader(DBCmd) Then
|
||||
UserInfo.UserID = sqlDataQuery(0)
|
||||
UserInfo.UserPW = sqlDataQuery(1)
|
||||
UserInfo.IDType = sqlDataQuery(2)
|
||||
UserInfo.ExtPermition = sqlDataQuery(3)
|
||||
UserInfo.NowState = sqlDataQuery(4)
|
||||
|
||||
If UserInfo.UserPW = txbUserPW.Text Then
|
||||
If UserInfo.IDType = InfoTypeNumber Then
|
||||
If UserInfo.NowState <> 1 Then
|
||||
|
||||
If NowStateUpdate() Then
|
||||
MsgBox("로그인 도중 오류가 발생하였습니다.", vbCritical)
|
||||
GoTo FailFunc
|
||||
End If
|
||||
|
||||
MainForm.Show()
|
||||
Me.Hide()
|
||||
Exit Sub
|
||||
|
||||
Else
|
||||
MsgBox("현재 접속중인 계정입니다.", vbExclamation)
|
||||
GoTo FailFunc
|
||||
End If
|
||||
Else
|
||||
GoTo loginFail
|
||||
End If
|
||||
Else
|
||||
GoTo loginFail
|
||||
End If
|
||||
Else
|
||||
GoTo loginFail
|
||||
End If
|
||||
Catch ex As Exception
|
||||
GoTo loginFail
|
||||
End Try
|
||||
|
||||
loginFail:
|
||||
MsgBox("아이디 및 비밀번호가 잘못되었습니다.", vbExclamation)
|
||||
FailFunc:
|
||||
txbUserID.Text = String.Empty
|
||||
txbUserPW.Text = String.Empty
|
||||
txbUserID.Focus()
|
||||
End Sub
|
||||
|
||||
Private Function NowStateUpdate() As Boolean
|
||||
Dim DBCmd As String = "UPDATE " & LoginDB & " SET NowState = '1' WHERE UserID = '" & txbUserID.Text & "'"
|
||||
If DBCommand(DBCmd) Then
|
||||
Return False
|
||||
Else
|
||||
Return True
|
||||
End If
|
||||
End Function
|
||||
|
||||
Private Sub Cancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cancel.Click
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
Private Sub LoginForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
|
||||
End Sub
|
||||
End Class
|
169
MAXIMUM_Product_Program/MAXIMUM_Product_Program.vbproj
Normal file
169
MAXIMUM_Product_Program/MAXIMUM_Product_Program.vbproj
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{CA1C16A0-00FB-4EBD-AF29-5DBD46865EB7}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<StartupObject>MAXIMUM_Product_Program.My.MyApplication</StartupObject>
|
||||
<RootNamespace>MAXIMUM_Product_Program</RootNamespace>
|
||||
<AssemblyName>Product_Program</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<MyType>WindowsForms</MyType>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<DefineDebug>true</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DocumentationFile>Product_Program.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<DefineDebug>false</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DocumentationFile>Product_Program.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionCompare>Binary</OptionCompare>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionStrict>Off</OptionStrict>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionInfer>On</OptionInfer>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>JOMT 아이콘_ICO.ico</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Interop.bpac">
|
||||
<HintPath>C:\Program Files\Brother bPAC3 SDK\Samples\VBNET\NamePlt\bin\x64\Release\Interop.bpac.dll</HintPath>
|
||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
||||
</Reference>
|
||||
<Reference Include="Ivi.Visa.Interop, Version=5.11.0.0, Culture=neutral, PublicKeyToken=a128c98f1d7717c1, processorArchitecture=AMD64">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
||||
<HintPath>..\..\..\..\..\..\..\..\Windows\assembly\GAC_64\Ivi.Visa.Interop\5.11.0.0__a128c98f1d7717c1\Ivi.Visa.Interop.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="MySql.Data, Version=8.0.20.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.CodeDom, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.CodeDom.8.0.0\lib\net462\System.CodeDom.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Management" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Import Include="Microsoft.VisualBasic" />
|
||||
<Import Include="System" />
|
||||
<Import Include="System.Collections" />
|
||||
<Import Include="System.Collections.Generic" />
|
||||
<Import Include="System.Data" />
|
||||
<Import Include="System.Drawing" />
|
||||
<Import Include="System.Diagnostics" />
|
||||
<Import Include="System.Windows.Forms" />
|
||||
<Import Include="System.Linq" />
|
||||
<Import Include="System.Xml.Linq" />
|
||||
<Import Include="System.Threading.Tasks" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="BrotherPrint.vb" />
|
||||
<Compile Include="LoginForm.Designer.vb">
|
||||
<DependentUpon>LoginForm.vb</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="LoginForm.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="MainForm.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="MainForm.Designer.vb">
|
||||
<DependentUpon>MainForm.vb</DependentUpon>
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||
<Compile Include="My Project\Application.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Application.myapp</DependentUpon>
|
||||
<DesignTime>True</DesignTime>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Resources.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Settings.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
<Compile Include="mySQLModule.vb" />
|
||||
<Compile Include="RePrintForm.Designer.vb">
|
||||
<DependentUpon>RePrintForm.vb</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="RePrintForm.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SqlAddressModule.vb" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="LoginForm.resx">
|
||||
<DependentUpon>LoginForm.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="MainForm.resx">
|
||||
<DependentUpon>MainForm.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="My Project\Resources.resx">
|
||||
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="RePrintForm.resx">
|
||||
<DependentUpon>RePrintForm.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="My Project\Application.myapp">
|
||||
<Generator>MyApplicationCodeGenerator</Generator>
|
||||
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="My Project\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<CustomToolNamespace>My</CustomToolNamespace>
|
||||
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
<None Include="Resources\MAXIMUM.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="JOMT 아이콘_ICO.ico" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||
</Project>
|
3364
MAXIMUM_Product_Program/MainForm.Designer.vb
generated
Normal file
3364
MAXIMUM_Product_Program/MainForm.Designer.vb
generated
Normal file
File diff suppressed because it is too large
Load Diff
2155
MAXIMUM_Product_Program/MainForm.resx
Normal file
2155
MAXIMUM_Product_Program/MainForm.resx
Normal file
File diff suppressed because it is too large
Load Diff
3049
MAXIMUM_Product_Program/MainForm.vb
Normal file
3049
MAXIMUM_Product_Program/MainForm.vb
Normal file
File diff suppressed because it is too large
Load Diff
38
MAXIMUM_Product_Program/My Project/Application.Designer.vb
generated
Normal file
38
MAXIMUM_Product_Program/My Project/Application.Designer.vb
generated
Normal file
@ -0,0 +1,38 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' 이 코드는 도구를 사용하여 생성되었습니다.
|
||||
' 런타임 버전:4.0.30319.42000
|
||||
'
|
||||
' 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
|
||||
' 이러한 변경 내용이 손실됩니다.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My
|
||||
|
||||
'참고: 자동으로 생성되므로 직접 이 파일을 수정하지 마세요. 변경할 사항이 있거나
|
||||
' 파일에서 빌드 오류가 발생하는 경우 프로젝트 디자이너로
|
||||
' 이동([프로젝트 속성]으로 이동하거나 솔루션 탐색기에서 My Project 노드를
|
||||
'두 번 클릭)한 다음 [애플리케이션] 탭에서 변경하세요.
|
||||
'
|
||||
Partial Friend Class MyApplication
|
||||
|
||||
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||
Public Sub New()
|
||||
MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
|
||||
Me.IsSingleInstance = false
|
||||
Me.EnableVisualStyles = true
|
||||
Me.SaveMySettingsOnExit = true
|
||||
Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||
Protected Overrides Sub OnCreateMainForm()
|
||||
Me.MainForm = Global.MAXIMUM_Product_Program.LoginForm
|
||||
End Sub
|
||||
End Class
|
||||
End Namespace
|
11
MAXIMUM_Product_Program/My Project/Application.myapp
Normal file
11
MAXIMUM_Product_Program/My Project/Application.myapp
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<MyApplicationData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<MySubMain>true</MySubMain>
|
||||
<MainForm>LoginForm</MainForm>
|
||||
<SingleInstance>false</SingleInstance>
|
||||
<ShutdownMode>0</ShutdownMode>
|
||||
<EnableVisualStyles>true</EnableVisualStyles>
|
||||
<AuthenticationMode>0</AuthenticationMode>
|
||||
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
|
||||
<HighDpiMpde>false</HighDpiMpde>
|
||||
</MyApplicationData>
|
35
MAXIMUM_Product_Program/My Project/AssemblyInfo.vb
Normal file
35
MAXIMUM_Product_Program/My Project/AssemblyInfo.vb
Normal file
@ -0,0 +1,35 @@
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
Imports System.Runtime.InteropServices
|
||||
|
||||
' 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해
|
||||
' 제어됩니다. 어셈블리와 관련된 정보를 수정하려면
|
||||
' 이러한 특성 값을 변경하세요.
|
||||
|
||||
' 어셈블리 특성 값을 검토합니다.
|
||||
|
||||
<Assembly: AssemblyTitle("MAXIMUM_Product_Program")>
|
||||
<Assembly: AssemblyDescription("")>
|
||||
<Assembly: AssemblyCompany("")>
|
||||
<Assembly: AssemblyProduct("MAXIMUM_Product_Program")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2024")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
'이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다.
|
||||
<Assembly: Guid("70b9576f-4270-4c6e-9e94-548bdf6aea48")>
|
||||
|
||||
' 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다.
|
||||
'
|
||||
' 주 버전
|
||||
' 부 버전
|
||||
' 빌드 번호
|
||||
' 수정 버전
|
||||
'
|
||||
' 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
|
||||
' 기본값으로 할 수 있습니다.
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.0.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
73
MAXIMUM_Product_Program/My Project/Resources.Designer.vb
generated
Normal file
73
MAXIMUM_Product_Program/My Project/Resources.Designer.vb
generated
Normal file
@ -0,0 +1,73 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' 이 코드는 도구를 사용하여 생성되었습니다.
|
||||
' 런타임 버전:4.0.30319.42000
|
||||
'
|
||||
' 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
|
||||
' 이러한 변경 내용이 손실됩니다.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
|
||||
Namespace My.Resources
|
||||
|
||||
'이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder
|
||||
'클래스에서 자동으로 생성되었습니다.
|
||||
'멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여 ResGen을
|
||||
'다시 실행하거나 VS 프로젝트를 다시 빌드하십시오.
|
||||
'''<summary>
|
||||
''' 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
|
||||
'''</summary>
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0"), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
|
||||
Friend Module Resources
|
||||
|
||||
Private resourceMan As Global.System.Resources.ResourceManager
|
||||
|
||||
Private resourceCulture As Global.System.Globalization.CultureInfo
|
||||
|
||||
'''<summary>
|
||||
''' 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||
Get
|
||||
If Object.ReferenceEquals(resourceMan, Nothing) Then
|
||||
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("MAXIMUM_Product_Program.Resources", GetType(Resources).Assembly)
|
||||
resourceMan = temp
|
||||
End If
|
||||
Return resourceMan
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을
|
||||
''' 재정의합니다.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend Property Culture() As Global.System.Globalization.CultureInfo
|
||||
Get
|
||||
Return resourceCulture
|
||||
End Get
|
||||
Set
|
||||
resourceCulture = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property MAXIMUM() As System.Drawing.Bitmap
|
||||
Get
|
||||
Dim obj As Object = ResourceManager.GetObject("MAXIMUM", resourceCulture)
|
||||
Return CType(obj,System.Drawing.Bitmap)
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
124
MAXIMUM_Product_Program/My Project/Resources.resx
Normal file
124
MAXIMUM_Product_Program/My Project/Resources.resx
Normal file
@ -0,0 +1,124 @@
|
||||
<?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>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="MAXIMUM" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\MAXIMUM.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
73
MAXIMUM_Product_Program/My Project/Settings.Designer.vb
generated
Normal file
73
MAXIMUM_Product_Program/My Project/Settings.Designer.vb
generated
Normal file
@ -0,0 +1,73 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' 이 코드는 도구를 사용하여 생성되었습니다.
|
||||
' 런타임 버전:4.0.30319.42000
|
||||
'
|
||||
' 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
|
||||
' 이러한 변경 내용이 손실됩니다.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.5.0.0"), _
|
||||
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Partial Friend NotInheritable Class MySettings
|
||||
Inherits Global.System.Configuration.ApplicationSettingsBase
|
||||
|
||||
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
|
||||
|
||||
#Region "My.Settings 자동 저장 기능"
|
||||
#If _MyType = "WindowsForms" Then
|
||||
Private Shared addedHandler As Boolean
|
||||
|
||||
Private Shared addedHandlerLockObject As New Object
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
|
||||
If My.Application.SaveMySettingsOnExit Then
|
||||
My.Settings.Save()
|
||||
End If
|
||||
End Sub
|
||||
#End If
|
||||
#End Region
|
||||
|
||||
Public Shared ReadOnly Property [Default]() As MySettings
|
||||
Get
|
||||
|
||||
#If _MyType = "WindowsForms" Then
|
||||
If Not addedHandler Then
|
||||
SyncLock addedHandlerLockObject
|
||||
If Not addedHandler Then
|
||||
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
|
||||
addedHandler = True
|
||||
End If
|
||||
End SyncLock
|
||||
End If
|
||||
#End If
|
||||
Return defaultInstance
|
||||
End Get
|
||||
End Property
|
||||
End Class
|
||||
End Namespace
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
|
||||
Friend Module MySettingsProperty
|
||||
|
||||
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
|
||||
Friend ReadOnly Property Settings() As Global.MAXIMUM_Product_Program.My.MySettings
|
||||
Get
|
||||
Return Global.MAXIMUM_Product_Program.My.MySettings.Default
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
7
MAXIMUM_Product_Program/My Project/Settings.settings
Normal file
7
MAXIMUM_Product_Program/My Project/Settings.settings
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
</SettingsFile>
|
122
MAXIMUM_Product_Program/RePrintForm.Designer.vb
generated
Normal file
122
MAXIMUM_Product_Program/RePrintForm.Designer.vb
generated
Normal file
@ -0,0 +1,122 @@
|
||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
Partial Class RePrintForm
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다.
|
||||
<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
|
||||
|
||||
'Windows Form 디자이너에 필요합니다.
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다.
|
||||
'수정하려면 Windows Form 디자이너를 사용하십시오.
|
||||
'코드 편집기에서는 수정하지 마세요.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(RePrintForm))
|
||||
Me.pnPrText = New System.Windows.Forms.Panel()
|
||||
Me.lbPrText = New System.Windows.Forms.Label()
|
||||
Me.btnPrBox = New System.Windows.Forms.Button()
|
||||
Me.btnPrWar = New System.Windows.Forms.Button()
|
||||
Me.btnPrSer = New System.Windows.Forms.Button()
|
||||
Me.btnPrExit = New System.Windows.Forms.Button()
|
||||
Me.pnPrText.SuspendLayout()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'pnPrText
|
||||
'
|
||||
Me.pnPrText.BackColor = System.Drawing.SystemColors.Info
|
||||
Me.pnPrText.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None
|
||||
Me.pnPrText.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
|
||||
Me.pnPrText.Controls.Add(Me.lbPrText)
|
||||
Me.pnPrText.Location = New System.Drawing.Point(10, 10)
|
||||
Me.pnPrText.Name = "pnPrText"
|
||||
Me.pnPrText.Size = New System.Drawing.Size(620, 70)
|
||||
Me.pnPrText.TabIndex = 0
|
||||
'
|
||||
'lbPrText
|
||||
'
|
||||
Me.lbPrText.AutoSize = True
|
||||
Me.lbPrText.Font = New System.Drawing.Font("함초롬바탕", 36.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
|
||||
Me.lbPrText.Location = New System.Drawing.Point(120, 0)
|
||||
Me.lbPrText.Name = "lbPrText"
|
||||
Me.lbPrText.Size = New System.Drawing.Size(384, 62)
|
||||
Me.lbPrText.TabIndex = 0
|
||||
Me.lbPrText.Text = "재인쇄 항목 선택"
|
||||
'
|
||||
'btnPrBox
|
||||
'
|
||||
Me.btnPrBox.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
|
||||
Me.btnPrBox.Location = New System.Drawing.Point(10, 90)
|
||||
Me.btnPrBox.Name = "btnPrBox"
|
||||
Me.btnPrBox.Size = New System.Drawing.Size(200, 90)
|
||||
Me.btnPrBox.TabIndex = 1
|
||||
Me.btnPrBox.Text = "BOX 인쇄"
|
||||
Me.btnPrBox.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btnPrWar
|
||||
'
|
||||
Me.btnPrWar.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
|
||||
Me.btnPrWar.Location = New System.Drawing.Point(220, 90)
|
||||
Me.btnPrWar.Name = "btnPrWar"
|
||||
Me.btnPrWar.Size = New System.Drawing.Size(200, 90)
|
||||
Me.btnPrWar.TabIndex = 2
|
||||
Me.btnPrWar.Text = "Warranty 인쇄"
|
||||
Me.btnPrWar.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btnPrSer
|
||||
'
|
||||
Me.btnPrSer.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
|
||||
Me.btnPrSer.Location = New System.Drawing.Point(430, 90)
|
||||
Me.btnPrSer.Name = "btnPrSer"
|
||||
Me.btnPrSer.Size = New System.Drawing.Size(200, 90)
|
||||
Me.btnPrSer.TabIndex = 3
|
||||
Me.btnPrSer.Text = "Serial 인쇄"
|
||||
Me.btnPrSer.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btnPrExit
|
||||
'
|
||||
Me.btnPrExit.BackColor = System.Drawing.SystemColors.ButtonFace
|
||||
Me.btnPrExit.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
|
||||
Me.btnPrExit.Location = New System.Drawing.Point(220, 186)
|
||||
Me.btnPrExit.Name = "btnPrExit"
|
||||
Me.btnPrExit.Size = New System.Drawing.Size(200, 65)
|
||||
Me.btnPrExit.TabIndex = 4
|
||||
Me.btnPrExit.Text = "완 료"
|
||||
Me.btnPrExit.UseVisualStyleBackColor = False
|
||||
'
|
||||
'RePrintForm
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(639, 261)
|
||||
Me.Controls.Add(Me.btnPrExit)
|
||||
Me.Controls.Add(Me.btnPrSer)
|
||||
Me.Controls.Add(Me.btnPrWar)
|
||||
Me.Controls.Add(Me.btnPrBox)
|
||||
Me.Controls.Add(Me.pnPrText)
|
||||
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
||||
Me.Name = "RePrintForm"
|
||||
Me.Text = "RePrintForm"
|
||||
Me.pnPrText.ResumeLayout(False)
|
||||
Me.pnPrText.PerformLayout()
|
||||
Me.ResumeLayout(False)
|
||||
|
||||
End Sub
|
||||
|
||||
Friend WithEvents pnPrText As Panel
|
||||
Friend WithEvents lbPrText As Label
|
||||
Friend WithEvents btnPrBox As Button
|
||||
Friend WithEvents btnPrWar As Button
|
||||
Friend WithEvents btnPrSer As Button
|
||||
Friend WithEvents btnPrExit As Button
|
||||
End Class
|
2110
MAXIMUM_Product_Program/RePrintForm.resx
Normal file
2110
MAXIMUM_Product_Program/RePrintForm.resx
Normal file
File diff suppressed because it is too large
Load Diff
33
MAXIMUM_Product_Program/RePrintForm.vb
Normal file
33
MAXIMUM_Product_Program/RePrintForm.vb
Normal file
@ -0,0 +1,33 @@
|
||||
Public Class RePrintForm
|
||||
Private Sub btnPrBox_Click(sender As Object, e As EventArgs) Handles btnPrBox.Click
|
||||
PrintActive(PrintList.BoxCode) = True
|
||||
PrintActive(PrintList.Warranty) = False
|
||||
PrintActive(PrintList.ProdLabel) = False
|
||||
|
||||
MainForm.PrintFunc()
|
||||
End Sub
|
||||
|
||||
Private Sub btnPrWar_Click(sender As Object, e As EventArgs) Handles btnPrWar.Click
|
||||
PrintActive(PrintList.BoxCode) = False
|
||||
PrintActive(PrintList.Warranty) = True
|
||||
PrintActive(PrintList.ProdLabel) = False
|
||||
|
||||
MainForm.PrintFunc()
|
||||
End Sub
|
||||
|
||||
Private Sub btnPrSer_Click(sender As Object, e As EventArgs) Handles btnPrSer.Click
|
||||
PrintActive(PrintList.BoxCode) = False
|
||||
PrintActive(PrintList.Warranty) = False
|
||||
PrintActive(PrintList.ProdLabel) = True
|
||||
|
||||
MainForm.PrintFunc()
|
||||
End Sub
|
||||
|
||||
Private Sub btnPrExit_Click(sender As Object, e As EventArgs) Handles btnPrExit.Click
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
Private Sub RePrintForm_FormClosed(sender As Object, e As FormClosedEventArgs) Handles MyBase.FormClosed
|
||||
Me.Close()
|
||||
End Sub
|
||||
End Class
|
BIN
MAXIMUM_Product_Program/Resources/MAXIMUM.png
Normal file
BIN
MAXIMUM_Product_Program/Resources/MAXIMUM.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 289 KiB |
44
MAXIMUM_Product_Program/SqlAddressModule.vb
Normal file
44
MAXIMUM_Product_Program/SqlAddressModule.vb
Normal file
@ -0,0 +1,44 @@
|
||||
Module SqlAddressModule
|
||||
Private Const mainCartDB As String = "jomtTesterDB.jomtCartridgeTbl"
|
||||
Private Const testCartDB As String = "jomtTesterServerDB.jomtCartridgeTbl"
|
||||
|
||||
Private Const mainHFTestDB As String = "jomtTesterDB.jomtHFTestTbl"
|
||||
Private Const testHFTestDB As String = "jomtTesterServerDB.jomtHFTestTbl"
|
||||
|
||||
Private Const mainRFTestDB As String = "jomtTesterDB.jomtRFTestTbl"
|
||||
Private Const testRFTestDB As String = "jomtTesterServerDB.jomtRFTestTbl"
|
||||
|
||||
Private Const mainPD1CntDB As String = "jomtTesterDB.jomtMES_PD1Tbl"
|
||||
Private Const testPD1CntDB As String = "jomtTesterServerDB.jomtMES_PD1Tbl"
|
||||
|
||||
Private Const mainNonTDDB As String = "jomtTesterDB.jomtNonTDTbl"
|
||||
Private Const testNonTDDB As String = "jomtTesterServerDB.jomtNonTDTbl"
|
||||
|
||||
Private Const MainReturnDB As String = "jomtTesterDB.jomtReturnTbl"
|
||||
Private Const TestReturnDB As String = "jomtTesterServerDB.jomtReturnTbl"
|
||||
|
||||
Public Const LoginDB As String = "jomtAccountDB.jomtTesterUserIDTbl"
|
||||
Public Const InfoRegStateDB As String = "jomtTesterDB.jomtInfoRegStateTbl"
|
||||
|
||||
Public ApplyCartDB As String = mainCartDB
|
||||
Public ApplyHFTestDB As String = mainHFTestDB
|
||||
Public ApplyRFTestDB As String = mainRFTestDB
|
||||
Public ApplyPD1CntDB As String = mainPD1CntDB
|
||||
Public ApplyNonTDDB As String = mainNonTDDB
|
||||
Public ApplyReturnDB As String = MainReturnDB
|
||||
|
||||
Public Sub ServerChanger(ChangeState As Boolean)
|
||||
If ChangeState = True Then
|
||||
applyCartDB = testCartDB
|
||||
applyHFTestDB = testHFTestDB
|
||||
ApplyRFTestDB = testRFTestDB
|
||||
ApplyPD1CntDB = testPD1CntDB
|
||||
Else
|
||||
applyCartDB = mainCartDB
|
||||
applyHFTestDB = mainHFTestDB
|
||||
ApplyRFTestDB = mainRFTestDB
|
||||
ApplyPD1CntDB = mainPD1CntDB
|
||||
End If
|
||||
End Sub
|
||||
|
||||
End Module
|
147
MAXIMUM_Product_Program/mySQLModule.vb
Normal file
147
MAXIMUM_Product_Program/mySQLModule.vb
Normal file
@ -0,0 +1,147 @@
|
||||
Imports System.Data.SqlClient
|
||||
Imports MySql.Data.MySqlClient
|
||||
|
||||
Module mySQLModule
|
||||
Private Const LocalHostIP As String = "192.168.0.250"
|
||||
Private Const UserName As String = "root"
|
||||
Private Const UserPasswrod As String = "JOMT1646db!!"
|
||||
Private DataBaseName As String = "jomtOrderTestDB"
|
||||
|
||||
Private Conn As String = "Server=" + LocalHostIP + ";DataBase=" + DataBaseName + ";user=" + UserName + ";password=" + UserPasswrod + ";"
|
||||
|
||||
Private sqlCon As New MySqlConnection(Conn)
|
||||
Private sqlCmd As New MySqlCommand()
|
||||
Private sqlData As MySqlDataReader '' SQL Server와 연결을 유지한 상태에서 한번에 한 레코드(One Row)씩 데이타를 가져오는데 사용된다
|
||||
|
||||
Public sqlDataQuery() As Object
|
||||
|
||||
Private Function DBOpen() As Boolean
|
||||
Try
|
||||
If sqlCon.State <> ConnectionState.Open Then '' sqlCon.State 의 상태를 나타냄
|
||||
sqlCon.Open()
|
||||
End If
|
||||
Return True
|
||||
Catch ex As Exception
|
||||
MsgBox("MySQL Command Error:" + vbCrLf + Err.Description)
|
||||
Return False
|
||||
End Try
|
||||
End Function
|
||||
|
||||
Private Function DBClose() As Boolean
|
||||
Try
|
||||
If sqlCon.State = ConnectionState.Open Then
|
||||
sqlCon.Close()
|
||||
End If
|
||||
Return True
|
||||
|
||||
Catch ex As Exception
|
||||
MsgBox("MySQL Command Error:" + vbCrLf + Err.Description)
|
||||
Return False
|
||||
End Try
|
||||
End Function
|
||||
|
||||
Private Function Database_Use() As Boolean
|
||||
Try
|
||||
DBOpen()
|
||||
|
||||
sqlCmd.CommandText = "USE " & DataBaseName & ";"
|
||||
sqlCmd.Connection = sqlCon
|
||||
sqlCmd.ExecuteNonQuery()
|
||||
|
||||
Return True
|
||||
Catch ex As Exception
|
||||
MsgBox("MySQL Command Error:" + vbCrLf + Err.Description)
|
||||
Return False
|
||||
End Try
|
||||
End Function
|
||||
|
||||
Public Function DBCommand(cmdStr As String) As Boolean
|
||||
Try
|
||||
Database_Use() '' 연결에 대한 sql문 실행, 명령을 수행하고 영향을 받은 행의 수를 반환하는 메서드, 행 추가나 변경, 삭제 등의 명령을 수행할 때는 명령으로 영향받은 행의 수만 알면 되기 때문에 ExecuteNonQuery 메서드를 사용합니다. 리턴값은 INT32 형
|
||||
sqlCmd.CommandText = cmdStr
|
||||
sqlCmd.Connection = sqlCon
|
||||
sqlCmd.ExecuteNonQuery()
|
||||
DBClose()
|
||||
Return True
|
||||
|
||||
Catch ex As Exception
|
||||
MsgBox("MySQL Command Error:" + vbCrLf + Err.Description)
|
||||
DBClose()
|
||||
Return False
|
||||
End Try
|
||||
End
|
||||
End Function
|
||||
|
||||
Public Function DBQueryScalar(cmdStr As String) As String
|
||||
Dim result As String
|
||||
|
||||
Try
|
||||
Database_Use()
|
||||
sqlCmd.CommandText = cmdStr
|
||||
sqlCmd.Connection = sqlCon
|
||||
result = sqlCmd.ExecuteScalar() 'SQL 명령을 실행하고, Query 가 리턴하는 첫번째 행의 첫번째 열을 리턴한다. 결과가 딱 1개인 집계함수(count, sum, avg 등)에 사용한다. 반환값은 object 형
|
||||
|
||||
Return result
|
||||
|
||||
Catch ex As Exception
|
||||
MsgBox("MySQL Command Error:" + vbCrLf + Err.Description)
|
||||
Return "False"
|
||||
End Try
|
||||
End
|
||||
End Function
|
||||
|
||||
Public Function DBQueryReader(cmdStr As String) As Integer
|
||||
Dim FieldCount As Integer
|
||||
Dim initRun As Boolean = True
|
||||
Dim DataTypeName As String
|
||||
Dim TmpData As Object
|
||||
Dim QueryCount As ULong
|
||||
|
||||
Try
|
||||
Database_Use()
|
||||
|
||||
sqlCmd.CommandText = cmdStr
|
||||
sqlCmd.Connection = sqlCon
|
||||
sqlData = sqlCmd.ExecuteReader '' 어떤 쿼리에서도 적용이 가능하다. SELECT 쿼리를 이용할 경우 해당하는 값들이 DataReader 타입으로 온다. 값을 가져온 후에는 SqlDataReader객체의 read메서드를 통해 값을 읽어올 수 있고 , 사용 후에는 close메서드를 이용하여 실행을 끝내주어야 한다.
|
||||
|
||||
FieldCount = sqlData.FieldCount '' 현재 행의 열 수를 가져옵니다.
|
||||
|
||||
While (sqlData.Read())
|
||||
If initRun Then
|
||||
ReDim sqlDataQuery(FieldCount - 1) '' 배열을 모든 필드를 담을 수 있는 양으로 맞추는 기능
|
||||
initRun = False
|
||||
|
||||
Else
|
||||
ReDim Preserve sqlDataQuery(UBound(sqlDataQuery) + FieldCount) '' 배열에 저장된 값을 보존하면서 배열의 길이만 재선언
|
||||
End If
|
||||
|
||||
For cnt = 0 To FieldCount - 1
|
||||
DataTypeName = sqlData.GetDataTypeName(cnt) '' 지정된 열의 데이터 형식을 나타내는 문자열을 가져옵니다.
|
||||
|
||||
If DataTypeName = "DATE" Then
|
||||
TmpData = sqlData.GetDateTime(cnt)
|
||||
Else
|
||||
TmpData = sqlData.GetValue(cnt)
|
||||
End If
|
||||
|
||||
If DBNull.Value.Equals(TmpData) Or TmpData.Equals(String.Empty) Then
|
||||
sqlDataQuery(QueryCount) = "0"
|
||||
Else
|
||||
sqlDataQuery(QueryCount) = TmpData
|
||||
End If
|
||||
|
||||
QueryCount += 1
|
||||
Next
|
||||
End While
|
||||
|
||||
DBClose()
|
||||
Return QueryCount
|
||||
|
||||
Catch ex As Exception
|
||||
MsgBox(Err.Description)
|
||||
If sqlCon.State = ConnectionState.Open Then sqlCon.Close()
|
||||
Return 0
|
||||
End Try
|
||||
|
||||
End Function
|
||||
End Module
|
5
MAXIMUM_Product_Program/packages.config
Normal file
5
MAXIMUM_Product_Program/packages.config
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="System.CodeDom" version="8.0.0" targetFramework="net48" />
|
||||
<package id="System.Management" version="8.0.0" targetFramework="net48" />
|
||||
</packages>
|
BIN
Setup/Product_Program_V1.1.1_Install/Setup.msi
Normal file
BIN
Setup/Product_Program_V1.1.1_Install/Setup.msi
Normal file
Binary file not shown.
BIN
Setup/Product_Program_V1.1.1_Install/setup.exe
Normal file
BIN
Setup/Product_Program_V1.1.1_Install/setup.exe
Normal file
Binary file not shown.
BIN
Setup/Product_Program_V1.1.1_Rev1_Install.zip.txt
Normal file
BIN
Setup/Product_Program_V1.1.1_Rev1_Install.zip.txt
Normal file
Binary file not shown.
BIN
Setup/Product_Program_V1.1.1_Rev1_Install/Setup.msi
Normal file
BIN
Setup/Product_Program_V1.1.1_Rev1_Install/Setup.msi
Normal file
Binary file not shown.
BIN
Setup/Product_Program_V1.1.1_Rev1_Install/setup.exe
Normal file
BIN
Setup/Product_Program_V1.1.1_Rev1_Install/setup.exe
Normal file
Binary file not shown.
BIN
Setup/Product_Program_V1.1.1_Rev2_Install.zip.txt
Normal file
BIN
Setup/Product_Program_V1.1.1_Rev2_Install.zip.txt
Normal file
Binary file not shown.
BIN
Setup/Product_Program_V1.1.1_Rev2_Install/Setup.msi
Normal file
BIN
Setup/Product_Program_V1.1.1_Rev2_Install/Setup.msi
Normal file
Binary file not shown.
BIN
Setup/Product_Program_V1.1.1_Rev2_Install/setup.exe
Normal file
BIN
Setup/Product_Program_V1.1.1_Rev2_Install/setup.exe
Normal file
Binary file not shown.
991
Setup/Setup.vdproj
Normal file
991
Setup/Setup.vdproj
Normal file
@ -0,0 +1,991 @@
|
||||
"DeployProject"
|
||||
{
|
||||
"VSVersion" = "3:800"
|
||||
"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}"
|
||||
"IsWebType" = "8:FALSE"
|
||||
"ProjectName" = "8:Setup"
|
||||
"LanguageId" = "3:1042"
|
||||
"CodePage" = "3:949"
|
||||
"UILanguageId" = "3:1042"
|
||||
"SccProjectName" = "8:"
|
||||
"SccLocalPath" = "8:"
|
||||
"SccAuxPath" = "8:"
|
||||
"SccProvider" = "8:"
|
||||
"Hierarchy"
|
||||
{
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_1D92F8FB5E6B80BE3795F3DEF497AC4E"
|
||||
"OwnerKey" = "8:_85365A8FAE824BAD8E444AA61EF1D97A"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_27E166D8E951408AB72A40064A488864"
|
||||
"OwnerKey" = "8:_UNDEFINED"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_436CCFC71C3A44CE8E730BEF0110B9C7"
|
||||
"OwnerKey" = "8:_UNDEFINED"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_714DF0E9C42D20F4C3D33D228B476C5E"
|
||||
"OwnerKey" = "8:_85365A8FAE824BAD8E444AA61EF1D97A"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_85365A8FAE824BAD8E444AA61EF1D97A"
|
||||
"OwnerKey" = "8:_UNDEFINED"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_A5CB1C66CED144E6A2FD5201C080F038"
|
||||
"OwnerKey" = "8:_UNDEFINED"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_A97970885C9D1BDDF73E9D558B50B6E1"
|
||||
"OwnerKey" = "8:_85365A8FAE824BAD8E444AA61EF1D97A"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_D5BFC28E8FF94947A52B4BAB1892A615"
|
||||
"OwnerKey" = "8:_UNDEFINED"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_UNDEFINED"
|
||||
"OwnerKey" = "8:_85365A8FAE824BAD8E444AA61EF1D97A"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_UNDEFINED"
|
||||
"OwnerKey" = "8:_714DF0E9C42D20F4C3D33D228B476C5E"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_UNDEFINED"
|
||||
"OwnerKey" = "8:_1D92F8FB5E6B80BE3795F3DEF497AC4E"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
"Entry"
|
||||
{
|
||||
"MsmKey" = "8:_UNDEFINED"
|
||||
"OwnerKey" = "8:_A97970885C9D1BDDF73E9D558B50B6E1"
|
||||
"MsmSig" = "8:_UNDEFINED"
|
||||
}
|
||||
}
|
||||
"Configurations"
|
||||
{
|
||||
"Debug"
|
||||
{
|
||||
"DisplayName" = "8:Debug"
|
||||
"IsDebugOnly" = "11:TRUE"
|
||||
"IsReleaseOnly" = "11:FALSE"
|
||||
"OutputFilename" = "8:Debug\\Setup.msi"
|
||||
"PackageFilesAs" = "3:2"
|
||||
"PackageFileSize" = "3:-2147483648"
|
||||
"CabType" = "3:1"
|
||||
"Compression" = "3:2"
|
||||
"SignOutput" = "11:FALSE"
|
||||
"CertificateFile" = "8:"
|
||||
"PrivateKeyFile" = "8:"
|
||||
"TimeStampServer" = "8:"
|
||||
"InstallerBootstrapper" = "3:2"
|
||||
}
|
||||
"Release"
|
||||
{
|
||||
"DisplayName" = "8:Release"
|
||||
"IsDebugOnly" = "11:FALSE"
|
||||
"IsReleaseOnly" = "11:TRUE"
|
||||
"OutputFilename" = "8:Release\\Setup.msi"
|
||||
"PackageFilesAs" = "3:2"
|
||||
"PackageFileSize" = "3:-2147483648"
|
||||
"CabType" = "3:1"
|
||||
"Compression" = "3:2"
|
||||
"SignOutput" = "11:FALSE"
|
||||
"CertificateFile" = "8:"
|
||||
"PrivateKeyFile" = "8:"
|
||||
"TimeStampServer" = "8:"
|
||||
"InstallerBootstrapper" = "3:2"
|
||||
}
|
||||
}
|
||||
"Deployable"
|
||||
{
|
||||
"CustomAction"
|
||||
{
|
||||
}
|
||||
"DefaultFeature"
|
||||
{
|
||||
"Name" = "8:DefaultFeature"
|
||||
"Title" = "8:"
|
||||
"Description" = "8:"
|
||||
}
|
||||
"ExternalPersistence"
|
||||
{
|
||||
"LaunchCondition"
|
||||
{
|
||||
"{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_A2D956A55B92484A9F6CA5E09BF46C98"
|
||||
{
|
||||
"Name" = "8:.NET Framework"
|
||||
"Message" = "8:[VSDNETMSG]"
|
||||
"FrameworkVersion" = "8:.NETFramework,Version=v4.7.2"
|
||||
"AllowLaterVersions" = "11:FALSE"
|
||||
"InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=863262"
|
||||
}
|
||||
}
|
||||
}
|
||||
"File"
|
||||
{
|
||||
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1D92F8FB5E6B80BE3795F3DEF497AC4E"
|
||||
{
|
||||
"AssemblyRegister" = "3:1"
|
||||
"AssemblyIsInGAC" = "11:FALSE"
|
||||
"AssemblyAsmDisplayName" = "8:MySql.Data, Version=8.0.20.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL"
|
||||
"ScatterAssemblies"
|
||||
{
|
||||
"_1D92F8FB5E6B80BE3795F3DEF497AC4E"
|
||||
{
|
||||
"Name" = "8:MySql.Data.dll"
|
||||
"Attributes" = "3:512"
|
||||
}
|
||||
}
|
||||
"SourcePath" = "8:MySql.Data.dll"
|
||||
"TargetName" = "8:"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_43ADF5A343CD471C947A9F92E2548F46"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Vital" = "11:TRUE"
|
||||
"ReadOnly" = "11:FALSE"
|
||||
"Hidden" = "11:FALSE"
|
||||
"System" = "11:FALSE"
|
||||
"Permanent" = "11:FALSE"
|
||||
"SharedLegacy" = "11:FALSE"
|
||||
"PackageAs" = "3:1"
|
||||
"Register" = "3:1"
|
||||
"Exclude" = "11:FALSE"
|
||||
"IsDependency" = "11:TRUE"
|
||||
"IsolateTo" = "8:"
|
||||
}
|
||||
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_27E166D8E951408AB72A40064A488864"
|
||||
{
|
||||
"SourcePath" = "8:..\\MAXIMUM_Product_Program\\bin\\Debug\\Config\\Config.ini"
|
||||
"TargetName" = "8:Config.ini"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_69F237C0EE8145E8B6449D7C576B2C7D"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Vital" = "11:TRUE"
|
||||
"ReadOnly" = "11:FALSE"
|
||||
"Hidden" = "11:FALSE"
|
||||
"System" = "11:FALSE"
|
||||
"Permanent" = "11:FALSE"
|
||||
"SharedLegacy" = "11:FALSE"
|
||||
"PackageAs" = "3:1"
|
||||
"Register" = "3:1"
|
||||
"Exclude" = "11:FALSE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"IsolateTo" = "8:"
|
||||
}
|
||||
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_436CCFC71C3A44CE8E730BEF0110B9C7"
|
||||
{
|
||||
"SourcePath" = "8:..\\MAXIMUM_Product_Program\\bin\\Debug\\Config\\Print.ini"
|
||||
"TargetName" = "8:Print.ini"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_69F237C0EE8145E8B6449D7C576B2C7D"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Vital" = "11:TRUE"
|
||||
"ReadOnly" = "11:FALSE"
|
||||
"Hidden" = "11:FALSE"
|
||||
"System" = "11:FALSE"
|
||||
"Permanent" = "11:FALSE"
|
||||
"SharedLegacy" = "11:FALSE"
|
||||
"PackageAs" = "3:1"
|
||||
"Register" = "3:1"
|
||||
"Exclude" = "11:FALSE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"IsolateTo" = "8:"
|
||||
}
|
||||
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_714DF0E9C42D20F4C3D33D228B476C5E"
|
||||
{
|
||||
"AssemblyRegister" = "3:1"
|
||||
"AssemblyIsInGAC" = "11:FALSE"
|
||||
"AssemblyAsmDisplayName" = "8:System.CodeDom, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"
|
||||
"ScatterAssemblies"
|
||||
{
|
||||
"_714DF0E9C42D20F4C3D33D228B476C5E"
|
||||
{
|
||||
"Name" = "8:System.CodeDom.dll"
|
||||
"Attributes" = "3:512"
|
||||
}
|
||||
}
|
||||
"SourcePath" = "8:System.CodeDom.dll"
|
||||
"TargetName" = "8:"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_43ADF5A343CD471C947A9F92E2548F46"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Vital" = "11:TRUE"
|
||||
"ReadOnly" = "11:FALSE"
|
||||
"Hidden" = "11:FALSE"
|
||||
"System" = "11:FALSE"
|
||||
"Permanent" = "11:FALSE"
|
||||
"SharedLegacy" = "11:FALSE"
|
||||
"PackageAs" = "3:1"
|
||||
"Register" = "3:1"
|
||||
"Exclude" = "11:FALSE"
|
||||
"IsDependency" = "11:TRUE"
|
||||
"IsolateTo" = "8:"
|
||||
}
|
||||
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A5CB1C66CED144E6A2FD5201C080F038"
|
||||
{
|
||||
"SourcePath" = "8:..\\MAXIMUM_Product_Program\\JOMT 아이콘_ICO.ico"
|
||||
"TargetName" = "8:JOMT 아이콘_ICO.ico"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_43ADF5A343CD471C947A9F92E2548F46"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Vital" = "11:TRUE"
|
||||
"ReadOnly" = "11:FALSE"
|
||||
"Hidden" = "11:FALSE"
|
||||
"System" = "11:FALSE"
|
||||
"Permanent" = "11:FALSE"
|
||||
"SharedLegacy" = "11:FALSE"
|
||||
"PackageAs" = "3:1"
|
||||
"Register" = "3:1"
|
||||
"Exclude" = "11:FALSE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"IsolateTo" = "8:"
|
||||
}
|
||||
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A97970885C9D1BDDF73E9D558B50B6E1"
|
||||
{
|
||||
"AssemblyRegister" = "3:1"
|
||||
"AssemblyIsInGAC" = "11:FALSE"
|
||||
"AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
|
||||
"ScatterAssemblies"
|
||||
{
|
||||
"_A97970885C9D1BDDF73E9D558B50B6E1"
|
||||
{
|
||||
"Name" = "8:System.Net.Http.dll"
|
||||
"Attributes" = "3:512"
|
||||
}
|
||||
}
|
||||
"SourcePath" = "8:System.Net.Http.dll"
|
||||
"TargetName" = "8:"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_43ADF5A343CD471C947A9F92E2548F46"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Vital" = "11:TRUE"
|
||||
"ReadOnly" = "11:FALSE"
|
||||
"Hidden" = "11:FALSE"
|
||||
"System" = "11:FALSE"
|
||||
"Permanent" = "11:FALSE"
|
||||
"SharedLegacy" = "11:FALSE"
|
||||
"PackageAs" = "3:1"
|
||||
"Register" = "3:1"
|
||||
"Exclude" = "11:FALSE"
|
||||
"IsDependency" = "11:TRUE"
|
||||
"IsolateTo" = "8:"
|
||||
}
|
||||
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D5BFC28E8FF94947A52B4BAB1892A615"
|
||||
{
|
||||
"SourcePath" = "8:..\\MAXIMUM_Product_Program\\bin\\Debug\\Config\\InfoList.ini"
|
||||
"TargetName" = "8:InfoList.ini"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_69F237C0EE8145E8B6449D7C576B2C7D"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Vital" = "11:TRUE"
|
||||
"ReadOnly" = "11:FALSE"
|
||||
"Hidden" = "11:FALSE"
|
||||
"System" = "11:FALSE"
|
||||
"Permanent" = "11:FALSE"
|
||||
"SharedLegacy" = "11:FALSE"
|
||||
"PackageAs" = "3:1"
|
||||
"Register" = "3:1"
|
||||
"Exclude" = "11:FALSE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"IsolateTo" = "8:"
|
||||
}
|
||||
}
|
||||
"FileType"
|
||||
{
|
||||
}
|
||||
"Folder"
|
||||
{
|
||||
"{1525181F-901A-416C-8A58-119130FE478E}:_04AF12729C324AC89A745FD9ED373AA8"
|
||||
{
|
||||
"Name" = "8:#1916"
|
||||
"AlwaysCreate" = "11:FALSE"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Property" = "8:DesktopFolder"
|
||||
"Folders"
|
||||
{
|
||||
}
|
||||
}
|
||||
"{3C67513D-01DD-4637-8A68-80971EB9504F}:_43ADF5A343CD471C947A9F92E2548F46"
|
||||
{
|
||||
"DefaultLocation" = "8:[ProgramFiles64Folder][Manufacturer]\\[ProductName]"
|
||||
"Name" = "8:#1925"
|
||||
"AlwaysCreate" = "11:FALSE"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Property" = "8:TARGETDIR"
|
||||
"Folders"
|
||||
{
|
||||
"{9EF0B969-E518-4E46-987F-47570745A589}:_69F237C0EE8145E8B6449D7C576B2C7D"
|
||||
{
|
||||
"Name" = "8:Config"
|
||||
"AlwaysCreate" = "11:FALSE"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Property" = "8:_31F21F1877E745EA9AA18E9428DC1280"
|
||||
"Folders"
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
"{1525181F-901A-416C-8A58-119130FE478E}:_6CAC5A590DCC4C4780EC8FD12646A8A1"
|
||||
{
|
||||
"Name" = "8:#1919"
|
||||
"AlwaysCreate" = "11:FALSE"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Property" = "8:ProgramMenuFolder"
|
||||
"Folders"
|
||||
{
|
||||
"{9EF0B969-E518-4E46-987F-47570745A589}:_A8AD381DF1ED4B7EB4A49AED59513994"
|
||||
{
|
||||
"Name" = "8:JOMT Utillity"
|
||||
"AlwaysCreate" = "11:FALSE"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Property" = "8:_95239C1949564779A351CFB5190376B2"
|
||||
"Folders"
|
||||
{
|
||||
"{9EF0B969-E518-4E46-987F-47570745A589}:_5FB4C26446B6410CA66B0BBDBB40B380"
|
||||
{
|
||||
"Name" = "8:Product_Program"
|
||||
"AlwaysCreate" = "11:FALSE"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Property" = "8:_658BD88FE52E48B4981F3B8FA5ACA662"
|
||||
"Folders"
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
"LaunchCondition"
|
||||
{
|
||||
}
|
||||
"Locator"
|
||||
{
|
||||
}
|
||||
"MsiBootstrapper"
|
||||
{
|
||||
"LangId" = "3:1042"
|
||||
"RequiresElevation" = "11:FALSE"
|
||||
}
|
||||
"Product"
|
||||
{
|
||||
"Name" = "8:Microsoft Visual Studio"
|
||||
"ProductName" = "8:Product_Program"
|
||||
"ProductCode" = "8:{6EE2D599-0946-4194-A887-334BA2E5DA60}"
|
||||
"PackageCode" = "8:{31626B12-1EF1-4D2D-A83B-D7B54DB2C522}"
|
||||
"UpgradeCode" = "8:{496CCA57-23F6-473E-9470-59DD13DCC3B9}"
|
||||
"AspNetVersion" = "8:2.0.50727.0"
|
||||
"RestartWWWService" = "11:FALSE"
|
||||
"RemovePreviousVersions" = "11:FALSE"
|
||||
"DetectNewerInstalledVersion" = "11:TRUE"
|
||||
"InstallAllUsers" = "11:TRUE"
|
||||
"ProductVersion" = "8:1.0.0"
|
||||
"Manufacturer" = "8:JION MEDITECH"
|
||||
"ARPHELPTELEPHONE" = "8:"
|
||||
"ARPHELPLINK" = "8:"
|
||||
"Title" = "8:Product_Program_Ver.1.1.1"
|
||||
"Subject" = "8:"
|
||||
"ARPCONTACT" = "8:JION MEDITECH"
|
||||
"Keywords" = "8:"
|
||||
"ARPCOMMENTS" = "8:"
|
||||
"ARPURLINFOABOUT" = "8:"
|
||||
"ARPPRODUCTICON" = "8:"
|
||||
"ARPIconIndex" = "3:0"
|
||||
"SearchPath" = "8:"
|
||||
"UseSystemSearchPath" = "11:TRUE"
|
||||
"TargetPlatform" = "3:1"
|
||||
"PreBuildEvent" = "8:"
|
||||
"PostBuildEvent" = "8:"
|
||||
"RunPostBuildEvent" = "3:0"
|
||||
}
|
||||
"Registry"
|
||||
{
|
||||
"HKLM"
|
||||
{
|
||||
"Keys"
|
||||
{
|
||||
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_C65A5B6ED6E1453880D1D1FD7E59D7E6"
|
||||
{
|
||||
"Name" = "8:Software"
|
||||
"Condition" = "8:"
|
||||
"AlwaysCreate" = "11:FALSE"
|
||||
"DeleteAtUninstall" = "11:FALSE"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Keys"
|
||||
{
|
||||
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_2276804AD1804EE68DA054691B6076B1"
|
||||
{
|
||||
"Name" = "8:[Manufacturer]"
|
||||
"Condition" = "8:"
|
||||
"AlwaysCreate" = "11:FALSE"
|
||||
"DeleteAtUninstall" = "11:FALSE"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Keys"
|
||||
{
|
||||
}
|
||||
"Values"
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
"Values"
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
"HKCU"
|
||||
{
|
||||
"Keys"
|
||||
{
|
||||
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_2977686112F14BBBAA206F8474225A83"
|
||||
{
|
||||
"Name" = "8:Software"
|
||||
"Condition" = "8:"
|
||||
"AlwaysCreate" = "11:FALSE"
|
||||
"DeleteAtUninstall" = "11:FALSE"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Keys"
|
||||
{
|
||||
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_548BFF2D2B9747FF9FEBD215652C049E"
|
||||
{
|
||||
"Name" = "8:[Manufacturer]"
|
||||
"Condition" = "8:"
|
||||
"AlwaysCreate" = "11:FALSE"
|
||||
"DeleteAtUninstall" = "11:FALSE"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Keys"
|
||||
{
|
||||
}
|
||||
"Values"
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
"Values"
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
"HKCR"
|
||||
{
|
||||
"Keys"
|
||||
{
|
||||
}
|
||||
}
|
||||
"HKU"
|
||||
{
|
||||
"Keys"
|
||||
{
|
||||
}
|
||||
}
|
||||
"HKPU"
|
||||
{
|
||||
"Keys"
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
"Sequences"
|
||||
{
|
||||
}
|
||||
"Shortcut"
|
||||
{
|
||||
"{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_8C430529A8514ACF9C4B27A158A79C9D"
|
||||
{
|
||||
"Name" = "8:Product_Program_Ver.1.1.1"
|
||||
"Arguments" = "8:"
|
||||
"Description" = "8:"
|
||||
"ShowCmd" = "3:1"
|
||||
"IconIndex" = "3:0"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Target" = "8:_85365A8FAE824BAD8E444AA61EF1D97A"
|
||||
"Folder" = "8:_04AF12729C324AC89A745FD9ED373AA8"
|
||||
"WorkingFolder" = "8:_43ADF5A343CD471C947A9F92E2548F46"
|
||||
"Icon" = "8:_A5CB1C66CED144E6A2FD5201C080F038"
|
||||
"Feature" = "8:"
|
||||
}
|
||||
"{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_9257CD9CCEFE4363A055436F085EB93F"
|
||||
{
|
||||
"Name" = "8:Product_Program_Ver.1.1.1"
|
||||
"Arguments" = "8:"
|
||||
"Description" = "8:"
|
||||
"ShowCmd" = "3:1"
|
||||
"IconIndex" = "3:0"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Target" = "8:_85365A8FAE824BAD8E444AA61EF1D97A"
|
||||
"Folder" = "8:_5FB4C26446B6410CA66B0BBDBB40B380"
|
||||
"WorkingFolder" = "8:_43ADF5A343CD471C947A9F92E2548F46"
|
||||
"Icon" = "8:_A5CB1C66CED144E6A2FD5201C080F038"
|
||||
"Feature" = "8:"
|
||||
}
|
||||
}
|
||||
"UserInterface"
|
||||
{
|
||||
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_08F0011C9ED14A42996F97AFF55B887A"
|
||||
{
|
||||
"Name" = "8:#1902"
|
||||
"Sequence" = "3:1"
|
||||
"Attributes" = "3:3"
|
||||
"Dialogs"
|
||||
{
|
||||
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7D0F39D7973F4CCFBA79E4F89F427DD9"
|
||||
{
|
||||
"Sequence" = "3:100"
|
||||
"DisplayName" = "8:마침"
|
||||
"UseDynamicProperties" = "11:TRUE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid"
|
||||
"Properties"
|
||||
{
|
||||
"BannerBitmap"
|
||||
{
|
||||
"Name" = "8:BannerBitmap"
|
||||
"DisplayName" = "8:#1001"
|
||||
"Description" = "8:#1101"
|
||||
"Type" = "3:8"
|
||||
"ContextData" = "8:Bitmap"
|
||||
"Attributes" = "3:4"
|
||||
"Setting" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
"UpdateText"
|
||||
{
|
||||
"Name" = "8:UpdateText"
|
||||
"DisplayName" = "8:#1058"
|
||||
"Description" = "8:#1158"
|
||||
"Type" = "3:15"
|
||||
"ContextData" = "8:"
|
||||
"Attributes" = "3:0"
|
||||
"Setting" = "3:1"
|
||||
"Value" = "8:#1258"
|
||||
"DefaultValue" = "8:#1258"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_4B0A72F7D95741ED938BA80EBE5B8CB6"
|
||||
{
|
||||
"Name" = "8:#1900"
|
||||
"Sequence" = "3:1"
|
||||
"Attributes" = "3:1"
|
||||
"Dialogs"
|
||||
{
|
||||
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6D41095526164CBB982071120EB4A737"
|
||||
{
|
||||
"Sequence" = "3:100"
|
||||
"DisplayName" = "8:환영"
|
||||
"UseDynamicProperties" = "11:TRUE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid"
|
||||
"Properties"
|
||||
{
|
||||
"BannerBitmap"
|
||||
{
|
||||
"Name" = "8:BannerBitmap"
|
||||
"DisplayName" = "8:#1001"
|
||||
"Description" = "8:#1101"
|
||||
"Type" = "3:8"
|
||||
"ContextData" = "8:Bitmap"
|
||||
"Attributes" = "3:4"
|
||||
"Setting" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
"CopyrightWarning"
|
||||
{
|
||||
"Name" = "8:CopyrightWarning"
|
||||
"DisplayName" = "8:#1002"
|
||||
"Description" = "8:#1102"
|
||||
"Type" = "3:3"
|
||||
"ContextData" = "8:"
|
||||
"Attributes" = "3:0"
|
||||
"Setting" = "3:1"
|
||||
"Value" = "8:#1202"
|
||||
"DefaultValue" = "8:#1202"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
"Welcome"
|
||||
{
|
||||
"Name" = "8:Welcome"
|
||||
"DisplayName" = "8:#1003"
|
||||
"Description" = "8:#1103"
|
||||
"Type" = "3:3"
|
||||
"ContextData" = "8:"
|
||||
"Attributes" = "3:0"
|
||||
"Setting" = "3:1"
|
||||
"Value" = "8:#1203"
|
||||
"DefaultValue" = "8:#1203"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
}
|
||||
}
|
||||
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_811305F75C764C80A4039E85C903913A"
|
||||
{
|
||||
"Sequence" = "3:300"
|
||||
"DisplayName" = "8:설치 확인"
|
||||
"UseDynamicProperties" = "11:TRUE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid"
|
||||
"Properties"
|
||||
{
|
||||
"BannerBitmap"
|
||||
{
|
||||
"Name" = "8:BannerBitmap"
|
||||
"DisplayName" = "8:#1001"
|
||||
"Description" = "8:#1101"
|
||||
"Type" = "3:8"
|
||||
"ContextData" = "8:Bitmap"
|
||||
"Attributes" = "3:4"
|
||||
"Setting" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
}
|
||||
}
|
||||
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_AEEE4B4511944A7BBF7C5591AAB5DFCC"
|
||||
{
|
||||
"Sequence" = "3:200"
|
||||
"DisplayName" = "8:설치 폴더"
|
||||
"UseDynamicProperties" = "11:TRUE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid"
|
||||
"Properties"
|
||||
{
|
||||
"BannerBitmap"
|
||||
{
|
||||
"Name" = "8:BannerBitmap"
|
||||
"DisplayName" = "8:#1001"
|
||||
"Description" = "8:#1101"
|
||||
"Type" = "3:8"
|
||||
"ContextData" = "8:Bitmap"
|
||||
"Attributes" = "3:4"
|
||||
"Setting" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
"InstallAllUsersVisible"
|
||||
{
|
||||
"Name" = "8:InstallAllUsersVisible"
|
||||
"DisplayName" = "8:#1059"
|
||||
"Description" = "8:#1159"
|
||||
"Type" = "3:5"
|
||||
"ContextData" = "8:1;True=1;False=0"
|
||||
"Attributes" = "3:0"
|
||||
"Setting" = "3:0"
|
||||
"Value" = "3:1"
|
||||
"DefaultValue" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
"{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_6607DAE001D746D6907D9C555EEF4F8E"
|
||||
{
|
||||
"UseDynamicProperties" = "11:FALSE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim"
|
||||
}
|
||||
"{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_95BAA4820EF74391BB37CF38144831E4"
|
||||
{
|
||||
"UseDynamicProperties" = "11:FALSE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim"
|
||||
}
|
||||
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_B705746343F84032818960E3C6CC6C79"
|
||||
{
|
||||
"Name" = "8:#1901"
|
||||
"Sequence" = "3:1"
|
||||
"Attributes" = "3:2"
|
||||
"Dialogs"
|
||||
{
|
||||
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_82B5628C0D8545B58D7F24E981893CA1"
|
||||
{
|
||||
"Sequence" = "3:100"
|
||||
"DisplayName" = "8:진행률"
|
||||
"UseDynamicProperties" = "11:TRUE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid"
|
||||
"Properties"
|
||||
{
|
||||
"BannerBitmap"
|
||||
{
|
||||
"Name" = "8:BannerBitmap"
|
||||
"DisplayName" = "8:#1001"
|
||||
"Description" = "8:#1101"
|
||||
"Type" = "3:8"
|
||||
"ContextData" = "8:Bitmap"
|
||||
"Attributes" = "3:4"
|
||||
"Setting" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
"ShowProgress"
|
||||
{
|
||||
"Name" = "8:ShowProgress"
|
||||
"DisplayName" = "8:#1009"
|
||||
"Description" = "8:#1109"
|
||||
"Type" = "3:5"
|
||||
"ContextData" = "8:1;True=1;False=0"
|
||||
"Attributes" = "3:0"
|
||||
"Setting" = "3:0"
|
||||
"Value" = "3:1"
|
||||
"DefaultValue" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_FDDBEBD464EB4F33A5F8F35F54CD682A"
|
||||
{
|
||||
"Name" = "8:#1901"
|
||||
"Sequence" = "3:2"
|
||||
"Attributes" = "3:2"
|
||||
"Dialogs"
|
||||
{
|
||||
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B62EEAF4B93B488DAF3DBDB0C7BB280B"
|
||||
{
|
||||
"Sequence" = "3:100"
|
||||
"DisplayName" = "8:진행률"
|
||||
"UseDynamicProperties" = "11:TRUE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid"
|
||||
"Properties"
|
||||
{
|
||||
"BannerBitmap"
|
||||
{
|
||||
"Name" = "8:BannerBitmap"
|
||||
"DisplayName" = "8:#1001"
|
||||
"Description" = "8:#1101"
|
||||
"Type" = "3:8"
|
||||
"ContextData" = "8:Bitmap"
|
||||
"Attributes" = "3:4"
|
||||
"Setting" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
"ShowProgress"
|
||||
{
|
||||
"Name" = "8:ShowProgress"
|
||||
"DisplayName" = "8:#1009"
|
||||
"Description" = "8:#1109"
|
||||
"Type" = "3:5"
|
||||
"ContextData" = "8:1;True=1;False=0"
|
||||
"Attributes" = "3:0"
|
||||
"Setting" = "3:0"
|
||||
"Value" = "3:1"
|
||||
"DefaultValue" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_FDF90FBA761B4AE083B905B3598B5E72"
|
||||
{
|
||||
"Name" = "8:#1900"
|
||||
"Sequence" = "3:2"
|
||||
"Attributes" = "3:1"
|
||||
"Dialogs"
|
||||
{
|
||||
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_46F08087B19342EEABBC5B747DF0E42C"
|
||||
{
|
||||
"Sequence" = "3:200"
|
||||
"DisplayName" = "8:설치 폴더"
|
||||
"UseDynamicProperties" = "11:TRUE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid"
|
||||
"Properties"
|
||||
{
|
||||
"BannerBitmap"
|
||||
{
|
||||
"Name" = "8:BannerBitmap"
|
||||
"DisplayName" = "8:#1001"
|
||||
"Description" = "8:#1101"
|
||||
"Type" = "3:8"
|
||||
"ContextData" = "8:Bitmap"
|
||||
"Attributes" = "3:4"
|
||||
"Setting" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
}
|
||||
}
|
||||
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8081C7B6905645939059E614437237D1"
|
||||
{
|
||||
"Sequence" = "3:100"
|
||||
"DisplayName" = "8:환영"
|
||||
"UseDynamicProperties" = "11:TRUE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid"
|
||||
"Properties"
|
||||
{
|
||||
"BannerBitmap"
|
||||
{
|
||||
"Name" = "8:BannerBitmap"
|
||||
"DisplayName" = "8:#1001"
|
||||
"Description" = "8:#1101"
|
||||
"Type" = "3:8"
|
||||
"ContextData" = "8:Bitmap"
|
||||
"Attributes" = "3:4"
|
||||
"Setting" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
"CopyrightWarning"
|
||||
{
|
||||
"Name" = "8:CopyrightWarning"
|
||||
"DisplayName" = "8:#1002"
|
||||
"Description" = "8:#1102"
|
||||
"Type" = "3:3"
|
||||
"ContextData" = "8:"
|
||||
"Attributes" = "3:0"
|
||||
"Setting" = "3:1"
|
||||
"Value" = "8:#1202"
|
||||
"DefaultValue" = "8:#1202"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
"Welcome"
|
||||
{
|
||||
"Name" = "8:Welcome"
|
||||
"DisplayName" = "8:#1003"
|
||||
"Description" = "8:#1103"
|
||||
"Type" = "3:3"
|
||||
"ContextData" = "8:"
|
||||
"Attributes" = "3:0"
|
||||
"Setting" = "3:1"
|
||||
"Value" = "8:#1203"
|
||||
"DefaultValue" = "8:#1203"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
}
|
||||
}
|
||||
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_DEB0D0FECAB94ED2B13E2497F0C53752"
|
||||
{
|
||||
"Sequence" = "3:300"
|
||||
"DisplayName" = "8:설치 확인"
|
||||
"UseDynamicProperties" = "11:TRUE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid"
|
||||
"Properties"
|
||||
{
|
||||
"BannerBitmap"
|
||||
{
|
||||
"Name" = "8:BannerBitmap"
|
||||
"DisplayName" = "8:#1001"
|
||||
"Description" = "8:#1101"
|
||||
"Type" = "3:8"
|
||||
"ContextData" = "8:Bitmap"
|
||||
"Attributes" = "3:4"
|
||||
"Setting" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_FF55DD1741DF4602B02C353E1B3E4437"
|
||||
{
|
||||
"Name" = "8:#1902"
|
||||
"Sequence" = "3:2"
|
||||
"Attributes" = "3:3"
|
||||
"Dialogs"
|
||||
{
|
||||
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F7D72CF5B19244449FC2D76AE33A7548"
|
||||
{
|
||||
"Sequence" = "3:100"
|
||||
"DisplayName" = "8:마침"
|
||||
"UseDynamicProperties" = "11:TRUE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid"
|
||||
"Properties"
|
||||
{
|
||||
"BannerBitmap"
|
||||
{
|
||||
"Name" = "8:BannerBitmap"
|
||||
"DisplayName" = "8:#1001"
|
||||
"Description" = "8:#1101"
|
||||
"Type" = "3:8"
|
||||
"ContextData" = "8:Bitmap"
|
||||
"Attributes" = "3:4"
|
||||
"Setting" = "3:1"
|
||||
"UsePlugInResources" = "11:TRUE"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
"MergeModule"
|
||||
{
|
||||
}
|
||||
"ProjectOutput"
|
||||
{
|
||||
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_85365A8FAE824BAD8E444AA61EF1D97A"
|
||||
{
|
||||
"SourcePath" = "8:..\\MAXIMUM_Product_Program\\obj\\Debug\\Product_Program.exe"
|
||||
"TargetName" = "8:"
|
||||
"Tag" = "8:"
|
||||
"Folder" = "8:_43ADF5A343CD471C947A9F92E2548F46"
|
||||
"Condition" = "8:"
|
||||
"Transitive" = "11:FALSE"
|
||||
"Vital" = "11:TRUE"
|
||||
"ReadOnly" = "11:FALSE"
|
||||
"Hidden" = "11:FALSE"
|
||||
"System" = "11:FALSE"
|
||||
"Permanent" = "11:FALSE"
|
||||
"SharedLegacy" = "11:FALSE"
|
||||
"PackageAs" = "3:1"
|
||||
"Register" = "3:1"
|
||||
"Exclude" = "11:FALSE"
|
||||
"IsDependency" = "11:FALSE"
|
||||
"IsolateTo" = "8:"
|
||||
"ProjectOutputGroupRegister" = "3:1"
|
||||
"OutputConfiguration" = "8:"
|
||||
"OutputGroupCanonicalName" = "8:Built"
|
||||
"OutputProjectGuid" = "8:{CA1C16A0-00FB-4EBD-AF29-5DBD46865EB7}"
|
||||
"ShowKeyOutput" = "11:TRUE"
|
||||
"ExcludeFilters"
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
3
업데이트 내역.txt
Normal file
3
업데이트 내역.txt
Normal file
@ -0,0 +1,3 @@
|
||||
바코드 인쇄 내용 변경
|
||||
변경 전 : 년.월.일
|
||||
변경 후 : 년.월
|
Loading…
x
Reference in New Issue
Block a user