This commit is contained in:
2026-01-17 00:56:25 +09:00
parent 1e6e1223c4
commit b598e0d538
20 changed files with 4683 additions and 4781 deletions

Binary file not shown.

View File

@@ -93,7 +93,7 @@ Public Class MakeList
If (Environment.Is64BitProcess) Then bit64 = "x64" If (Environment.Is64BitProcess) Then bit64 = "x64"
Me.Text = $"{My.Application.Info.ProductName} Ver. {0}.{1:00}.{2}.{3} - {bit64}" Me.Text = $"{My.Application.Info.ProductName} Ver. {Application.ProductVersion}"
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.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.view1.Font = New Font(ViewFont.FontName, ViewFont.FontSize, Me.Font.Style) '//글자정보 불러오기
' Me.ToolStrip1.Font = New Font(MenuFont.FontName, MenuFont.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("1.0.*")>
<Assembly: AssemblyVersion("23.10.01.2240")> <Assembly: AssemblyVersion("26.01.17.0000")>
<Assembly: AssemblyFileVersion("23.10.01.2240")> <Assembly: AssemblyFileVersion("26.01.17.0000")>

View File

@@ -1,4 +1,5 @@
210118 기울임글꼴 및 언더라인이 적용되도록 함 260117 2310012240 -> 2601170000
210118 기울임글꼴 및 언더라인이 적용되도록 함
190505 인증로직변경 190505 인증로직변경
170717 * 가로등입력화면 관리번호2에서 틀고정 170717 * 가로등입력화면 관리번호2에서 틀고정
* 통합번호찰 프로그램(가로등) 으로 프로그램및 폴더명 모두 수정 * 통합번호찰 프로그램(가로등) 으로 프로그램및 폴더명 모두 수정

View File

@@ -21,14 +21,17 @@ Public NotInheritable Class SplashScreen
'스타일팩확인 '스타일팩확인
Dim fistyle As New System.IO.FileInfo("StylePack.zip") Dim fistyle As New System.IO.FileInfo("StylePack.zip")
If fistyle.Exists Then If fistyle.Exists Then
Dim markerFile As String = fistyle.FullName & "." & fistyle.LastWriteTime.Ticks.ToString()
If Not System.IO.File.Exists(markerFile) Then
Dim fzip As New fExtractZip(fistyle.FullName) Dim fzip As New fExtractZip(fistyle.FullName)
fzip.ShowDialog() fzip.ShowDialog()
Try Try
System.IO.File.Delete(fistyle.FullName) System.IO.File.Create(markerFile).Close()
Catch ex As Exception Catch ex As Exception
End Try End Try
End If End If
End If
If Not LoadINI() Then End '//환경파일 불러오기실패시 종료한다. If Not LoadINI() Then End '//환경파일 불러오기실패시 종료한다.
If Command() <> "ARIN" AndAlso Not ReadAuth() Then '//에러났을떄는 카운터를 확인 If Command() <> "ARIN" AndAlso Not ReadAuth() Then '//에러났을떄는 카운터를 확인
@@ -197,18 +200,30 @@ Public NotInheritable Class SplashScreen
Private Function Connect() As Boolean Private Function Connect() As Boolean
Me.lb_msg.Text = "데이터베이스확인중..." Me.lb_msg.Text = "데이터베이스확인중..."
Dim Dbpath As String = My.Application.Info.DirectoryPath & "\database"
If Not System.IO.File.Exists(DataBaseFile) Then Dim dbfile As New System.IO.FileInfo(DataBaseFile)
If dbfile.Exists = False Then
Dim nameolny As String = System.IO.Path.GetFileNameWithoutExtension(dbfile.FullName)
Dim tempfile As String = dbfile.Directory.FullName & "\irea.mdb"
If System.IO.File.Exists(tempfile) = False Then
MsgBox("데이터베이스 파일이 없습니다", MsgBoxStyle.Critical, "오류") MsgBox("데이터베이스 파일이 없습니다", MsgBoxStyle.Critical, "오류")
Return False Return False
Else
DataBaseFile = tempfile
dbfile = New System.IO.FileInfo(DataBaseFile)
End If End If
End If
Dim Dbpath As String = dbfile.Directory.FullName ' My.Application.Info.DirectoryPath & "\database"
Dim Dbini As New MyINI(Dbpath & "\patch.ini") Dim Dbini As New MyINI(Dbpath & "\patch.ini")
' Return True ' Return True
'//데이터베이스 버젼을 확인한다. '//데이터베이스 버젼을 확인한다.
Dim Cn As New OleDbConnection(My.Settings.ireaConnectionString) Dim cs As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + dbfile.FullName
Dim Cn As New OleDbConnection(cs)
Try Try
Cn.Open() Cn.Open()
Catch ex As Exception Catch ex As Exception
@@ -220,6 +235,11 @@ Public NotInheritable Class SplashScreen
Return False Return False
End If End If
'//속성의 셋팅값중 ireaConnectionString 의 값을 cs 로 변경해준다
My.Settings("ireaConnectionString") = cs
Dim Dbversion As Short = 0 Dim Dbversion As Short = 0
Dim ErrMsg As String = "" Dim ErrMsg As String = ""

View File

@@ -26,50 +26,80 @@ Partial Class fExtractZip
Me.ProgressBar1 = New System.Windows.Forms.ProgressBar() Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
Me.lbFileName = New System.Windows.Forms.Label() Me.lbFileName = New System.Windows.Forms.Label()
Me.Timer1 = New System.Windows.Forms.Timer(Me.components) Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
Me.pnlMain = New System.Windows.Forms.Panel()
Me.lblTitle = New System.Windows.Forms.Label()
Me.pnlMain.SuspendLayout()
Me.SuspendLayout() Me.SuspendLayout()
' '
'ProgressBar1 'ProgressBar1
' '
Me.ProgressBar1.Dock = System.Windows.Forms.DockStyle.Bottom Me.ProgressBar1.Dock = System.Windows.Forms.DockStyle.Bottom
Me.ProgressBar1.Location = New System.Drawing.Point(5, 71) Me.ProgressBar1.Location = New System.Drawing.Point(0, 137)
Me.ProgressBar1.Name = "ProgressBar1" Me.ProgressBar1.Name = "ProgressBar1"
Me.ProgressBar1.Size = New System.Drawing.Size(1063, 65) Me.ProgressBar1.Size = New System.Drawing.Size(598, 21)
Me.ProgressBar1.TabIndex = 0 Me.ProgressBar1.TabIndex = 0
' '
'lbFileName 'lbFileName
' '
Me.lbFileName.Dock = System.Windows.Forms.DockStyle.Fill Me.lbFileName.AutoEllipsis = True
Me.lbFileName.Font = New System.Drawing.Font("맑은 고딕", 10.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.lbFileName.Font = New System.Drawing.Font("맑은 고딕", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.lbFileName.Location = New System.Drawing.Point(5, 5) Me.lbFileName.ForeColor = System.Drawing.Color.DimGray
Me.lbFileName.Location = New System.Drawing.Point(26, 75)
Me.lbFileName.Name = "lbFileName" Me.lbFileName.Name = "lbFileName"
Me.lbFileName.Size = New System.Drawing.Size(1063, 66) Me.lbFileName.Size = New System.Drawing.Size(543, 44)
Me.lbFileName.TabIndex = 1 Me.lbFileName.TabIndex = 1
Me.lbFileName.Text = "Label1" Me.lbFileName.Text = "준비 중..."
Me.lbFileName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter Me.lbFileName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
' '
'Timer1 'Timer1
' '
Me.Timer1.Interval = 1 '
'pnlMain
'
Me.pnlMain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.pnlMain.Controls.Add(Me.ProgressBar1)
Me.pnlMain.Controls.Add(Me.lblTitle)
Me.pnlMain.Controls.Add(Me.lbFileName)
Me.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill
Me.pnlMain.Location = New System.Drawing.Point(0, 0)
Me.pnlMain.Name = "pnlMain"
Me.pnlMain.Size = New System.Drawing.Size(600, 160)
Me.pnlMain.TabIndex = 2
'
'lblTitle
'
Me.lblTitle.AutoSize = True
Me.lblTitle.Font = New System.Drawing.Font("맑은 고딕", 14.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
Me.lblTitle.ForeColor = System.Drawing.Color.FromArgb(CType(CType(64, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(64, Byte), Integer))
Me.lblTitle.Location = New System.Drawing.Point(24, 25)
Me.lblTitle.Name = "lblTitle"
Me.lblTitle.Size = New System.Drawing.Size(181, 25)
Me.lblTitle.TabIndex = 0
Me.lblTitle.Text = "스타일 팩 적용 중..."
' '
'fExtractZip 'fExtractZip
' '
Me.AutoScaleDimensions = New System.Drawing.SizeF(10.0!, 18.0!) Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(1073, 141) Me.BackColor = System.Drawing.Color.White
Me.ClientSize = New System.Drawing.Size(600, 160)
Me.ControlBox = False Me.ControlBox = False
Me.Controls.Add(Me.lbFileName) Me.Controls.Add(Me.pnlMain)
Me.Controls.Add(Me.ProgressBar1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
Me.MaximizeBox = False Me.MaximizeBox = False
Me.MinimizeBox = False Me.MinimizeBox = False
Me.Name = "fExtractZip" Me.Name = "fExtractZip"
Me.Padding = New System.Windows.Forms.Padding(5)
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "fExtractZip" Me.Text = "fExtractZip"
Me.pnlMain.ResumeLayout(False)
Me.pnlMain.PerformLayout()
Me.ResumeLayout(False) Me.ResumeLayout(False)
End Sub End Sub
Friend WithEvents ProgressBar1 As ProgressBar Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar
Friend WithEvents lbFileName As Label Friend WithEvents lbFileName As System.Windows.Forms.Label
Friend WithEvents Timer1 As Timer Friend WithEvents Timer1 As System.Windows.Forms.Timer
Friend WithEvents pnlMain As System.Windows.Forms.Panel
Friend WithEvents lblTitle As System.Windows.Forms.Label
End Class End Class

View File

@@ -1,86 +1,64 @@
Public Class fExtractZip Public Class fExtractZip
Dim zip As Ionic.Zip.ZipFile Dim zip As Ionic.Zip.ZipFile
Public Sub New(filename As String)
' 디자이너에서 이 호출이 필요합니다. Public Sub New(filename As String)
InitializeComponent() InitializeComponent()
If System.IO.File.Exists(filename) = False Then If System.IO.File.Exists(filename) = False Then
RunComplete = True Me.DialogResult = DialogResult.OK
Me.Close()
Else Else
Dim ro As New Ionic.Zip.ReadOptions() Dim ro As New Ionic.Zip.ReadOptions()
ro.Encoding = System.Text.Encoding.Default ro.Encoding = System.Text.Encoding.Default
zip = Ionic.Zip.ZipFile.Read(filename, ro) zip = Ionic.Zip.ZipFile.Read(filename, ro)
AddHandler zip.ExtractProgress, AddressOf extractevents AddHandler zip.ExtractProgress, AddressOf extractevents
End If End If
' InitializeComponent() 호출 뒤에 초기화 코드를 추가하세요.
Me.Text = "스타일 팩 적용 중 - 기다려 주세요" Me.Text = "스타일 팩 적용 중 - 기다려 주세요"
End Sub Me.DoubleBuffered = True
Delegate Sub extranhandler(sender As Object, e As Ionic.Zip.ExtractProgressEventArgs)
Sub extractevents(sender As Object, e As Ionic.Zip.ExtractProgressEventArgs)
If Me.InvokeRequired Then
Me.Invoke(New extranhandler(AddressOf extractevents), sender, e)
Else
Me.ProgressBar1.Value = e.EntriesExtracted
If e.CurrentEntry Is Nothing Then
lbFileName.Text = "----"
Else
lbFileName.Text = e.CurrentEntry.FileName
End If
lbFileName.Refresh()
End If
End Sub End Sub
Private Sub fExtractZip_Load(sender As Object, e As EventArgs) Handles MyBase.Load Private Sub fExtractZip_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.Show() If zip IsNot Nothing Then
Application.DoEvents() Me.ProgressBar1.Maximum = zip.Count
Timer1.Start() Dim t As New System.Threading.Thread(AddressOf DoExtract)
t.IsBackground = True
t.Start()
End If
End Sub End Sub
Dim mre As New System.Threading.ManualResetEvent(True) Private Sub DoExtract()
Try
Dim RunExtract As Boolean = False zip.ExtractAll(AppDomain.CurrentDomain.BaseDirectory, Ionic.Zip.ExtractExistingFileAction.OverwriteSilently)
Dim RunComplete As Boolean = False Catch ex As Exception
' Error handling can be added here
Finally
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick Me.Invoke(Sub()
If zip IsNot Nothing Then
If mre.WaitOne(10) = False Then Return
mre.Reset()
'//완료여부확인
If RunComplete Then
Timer1.Enabled = False
mre.Set()
If Not zip Is Nothing Then
zip.Dispose() zip.Dispose()
zip = Nothing zip = Nothing
End If End If
Me.DialogResult = DialogResult.OK Me.DialogResult = DialogResult.OK
Else Me.Close()
'//처음시작 End Sub)
If RunExtract = False Then End Try
Me.ProgressBar1.Value = 0
Me.ProgressBar1.Maximum = zip.Count
' Me.ProgressBar1.Style = ProgressBarStyle.Marquee
RunExtract = True
End If
If RunExtract Then
zip.ExtractAll(AppDomain.CurrentDomain.BaseDirectory, Ionic.Zip.ExtractExistingFileAction.OverwriteSilently)
RunComplete = True
End If
End If
mre.Set()
End Sub End Sub
Delegate Sub extranhandler(sender As Object, e As Ionic.Zip.ExtractProgressEventArgs)
Sub extractevents(sender As Object, e As Ionic.Zip.ExtractProgressEventArgs)
If Me.InvokeRequired Then
Me.BeginInvoke(New extranhandler(AddressOf extractevents), sender, e)
Else
' Update Filename
If e.CurrentEntry IsNot Nothing Then
lbFileName.Text = e.CurrentEntry.FileName
End If
' Update Progress
If Me.ProgressBar1.Value <> e.EntriesExtracted Then
Me.ProgressBar1.Value = e.EntriesExtracted
End If
End If
End Sub
End Class End Class

File diff suppressed because it is too large Load Diff

View File

@@ -732,169 +732,169 @@ WHERE (관리ID = ?)</CommandText>
</DataSource> </DataSource>
</xs:appinfo> </xs:appinfo>
</xs:annotation> </xs:annotation>
<xs:element name="ireaDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:Generator_DataSetName="ireaDataSet" msprop:Generator_UserDSName="ireaDataSet"> <xs:element name="ireaDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:Generator_UserDSName="ireaDataSet" msprop:Generator_DataSetName="ireaDataSet">
<xs:complexType> <xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="MainTable" msprop:Generator_UserTableName="MainTable" msprop:Generator_RowEvArgName="MainTableRowChangeEvent" msprop:Generator_TableVarName="tableMainTable" msprop:Generator_TablePropName="MainTable" msprop:Generator_RowDeletingName="MainTableRowDeleting" msprop:Generator_RowChangingName="MainTableRowChanging" msprop:Generator_RowDeletedName="MainTableRowDeleted" msprop:Generator_RowEvHandlerName="MainTableRowChangeEventHandler" msprop:Generator_TableClassName="MainTableDataTable" msprop:Generator_RowChangedName="MainTableRowChanged" msprop:Generator_RowClassName="MainTableRow"> <xs:element name="MainTable" msprop:Generator_RowClassName="MainTableRow" msprop:Generator_RowEvHandlerName="MainTableRowChangeEventHandler" msprop:Generator_RowDeletedName="MainTableRowDeleted" msprop:Generator_RowDeletingName="MainTableRowDeleting" msprop:Generator_RowEvArgName="MainTableRowChangeEvent" msprop:Generator_TablePropName="MainTable" msprop:Generator_RowChangedName="MainTableRowChanged" msprop:Generator_UserTableName="MainTable" msprop:Generator_RowChangingName="MainTableRowChanging" msprop:Generator_TableClassName="MainTableDataTable" msprop:Generator_TableVarName="tableMainTable">
<xs:complexType> <xs:complexType>
<xs:sequence> <xs:sequence>
<xs:element name="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" msprop:Generator_UserColumnName="ID" type="xs:int" /> <xs:element name="ID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_UserColumnName="ID" type="xs:int" />
<xs:element name="날짜" msprop:Generator_ColumnVarNameInTable="column날짜" msprop:Generator_ColumnPropNameInRow="날짜" msprop:Generator_ColumnPropNameInTable="날짜Column" msprop:Generator_UserColumnName="날짜" type="xs:dateTime" default="2007-01-01T00:00:00+09:00" minOccurs="0" /> <xs:element name="날짜" msprop:Generator_ColumnPropNameInRow="날짜" msprop:Generator_ColumnPropNameInTable="날짜Column" msprop:Generator_ColumnVarNameInTable="column날짜" msprop:Generator_UserColumnName="날짜" type="xs:dateTime" default="2007-01-01T00:00:00+09:00" minOccurs="0" />
<xs:element name="거래처명" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="거래처명" msprop:Generator_ColumnVarNameInTable="column거래처명" msprop:Generator_ColumnPropNameInTable="거래처명Column" msprop:Generator_UserColumnName="거래처명" default="" minOccurs="0"> <xs:element name="거래처명" msprop:Generator_ColumnPropNameInTable="거래처명Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="거래처명" msprop:Generator_UserColumnName="거래처명" msprop:Generator_ColumnVarNameInTable="column거래처명" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="비고" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="비고" msprop:Generator_ColumnVarNameInTable="column비고" msprop:Generator_ColumnPropNameInTable="비고Column" msprop:Generator_UserColumnName="비고" default="" minOccurs="0"> <xs:element name="비고" msprop:Generator_ColumnPropNameInTable="비고Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="비고" msprop:Generator_UserColumnName="비고" msprop:Generator_ColumnVarNameInTable="column비고" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="총수량" msprop:Generator_ColumnVarNameInTable="column총수량" msprop:Generator_ColumnPropNameInRow="총수량" msprop:Generator_ColumnPropNameInTable="총수량Column" msprop:Generator_UserColumnName="총수량" type="xs:int" default="0" minOccurs="0" /> <xs:element name="총수량" msprop:Generator_ColumnPropNameInRow="총수량" msprop:Generator_ColumnPropNameInTable="총수량Column" msprop:Generator_ColumnVarNameInTable="column총수량" msprop:Generator_UserColumnName="총수량" type="xs:int" default="0" minOccurs="0" />
<xs:element name="단가" msprop:Generator_ColumnVarNameInTable="column단가" msprop:Generator_ColumnPropNameInRow="단가" msprop:Generator_ColumnPropNameInTable="단가Column" msprop:Generator_UserColumnName="단가" type="xs:int" default="0" minOccurs="0" /> <xs:element name="단가" msprop:Generator_ColumnPropNameInRow="단가" msprop:Generator_ColumnPropNameInTable="단가Column" msprop:Generator_ColumnVarNameInTable="column단가" msprop:Generator_UserColumnName="단가" type="xs:int" default="0" minOccurs="0" />
<xs:element name="금액" msprop:Generator_ColumnVarNameInTable="column금액" msprop:Generator_ColumnPropNameInRow="금액" msprop:Generator_ColumnPropNameInTable="금액Column" msprop:Generator_UserColumnName="금액" type="xs:int" default="0" minOccurs="0" /> <xs:element name="금액" msprop:Generator_ColumnPropNameInRow="금액" msprop:Generator_ColumnPropNameInTable="금액Column" msprop:Generator_ColumnVarNameInTable="column금액" msprop:Generator_UserColumnName="금액" type="xs:int" default="0" minOccurs="0" />
<xs:element name="번호찰구분" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="column번호찰구분" msprop:Generator_ColumnPropNameInRow="번호찰구분" msprop:Generator_ColumnPropNameInTable="번호찰구분Column" msprop:Generator_UserColumnName="번호찰구분" type="xs:int" default="0" minOccurs="0" /> <xs:element name="번호찰구분" msdata:ReadOnly="true" msprop:Generator_ColumnPropNameInRow="번호찰구분" msprop:Generator_ColumnPropNameInTable="번호찰구분Column" msprop:Generator_ColumnVarNameInTable="column번호찰구분" msprop:Generator_UserColumnName="번호찰구분" type="xs:int" default="0" minOccurs="0" />
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="Detail_tongsin" msprop:Generator_UserTableName="Detail_tongsin" msprop:Generator_RowEvArgName="Detail_tongsinRowChangeEvent" msprop:Generator_TableVarName="tableDetail_tongsin" msprop:Generator_TablePropName="Detail_tongsin" msprop:Generator_RowDeletingName="Detail_tongsinRowDeleting" msprop:Generator_RowChangingName="Detail_tongsinRowChanging" msprop:Generator_RowDeletedName="Detail_tongsinRowDeleted" msprop:Generator_RowEvHandlerName="Detail_tongsinRowChangeEventHandler" msprop:Generator_TableClassName="Detail_tongsinDataTable" msprop:Generator_RowChangedName="Detail_tongsinRowChanged" msprop:Generator_RowClassName="Detail_tongsinRow"> <xs:element name="Detail_tongsin" msprop:Generator_RowClassName="Detail_tongsinRow" msprop:Generator_RowEvHandlerName="Detail_tongsinRowChangeEventHandler" msprop:Generator_RowDeletedName="Detail_tongsinRowDeleted" msprop:Generator_RowDeletingName="Detail_tongsinRowDeleting" msprop:Generator_RowEvArgName="Detail_tongsinRowChangeEvent" msprop:Generator_TablePropName="Detail_tongsin" msprop:Generator_RowChangedName="Detail_tongsinRowChanged" msprop:Generator_UserTableName="Detail_tongsin" msprop:Generator_RowChangingName="Detail_tongsinRowChanging" msprop:Generator_TableClassName="Detail_tongsinDataTable" msprop:Generator_TableVarName="tableDetail_tongsin">
<xs:complexType> <xs:complexType>
<xs:sequence> <xs:sequence>
<xs:element name="rowid" msdata:DataType="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" msprop:Generator_ColumnVarNameInTable="columnrowid" msprop:Generator_ColumnPropNameInRow="rowid" msprop:Generator_ColumnPropNameInTable="rowidColumn" msprop:Generator_UserColumnName="rowid" type="xs:string" /> <xs:element name="rowid" msdata:DataType="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" msprop:Generator_ColumnPropNameInRow="rowid" msprop:Generator_ColumnPropNameInTable="rowidColumn" msprop:Generator_ColumnVarNameInTable="columnrowid" msprop:Generator_UserColumnName="rowid" type="xs:string" />
<xs:element name="관리ID" msprop:Generator_ColumnVarNameInTable="column관리ID" msprop:Generator_ColumnPropNameInRow="관리ID" msprop:Generator_ColumnPropNameInTable="관리IDColumn" msprop:Generator_UserColumnName="관리ID" type="xs:int" minOccurs="0" /> <xs:element name="관리ID" msprop:Generator_ColumnPropNameInRow="관리ID" msprop:Generator_ColumnPropNameInTable="관리IDColumn" msprop:Generator_ColumnVarNameInTable="column관리ID" msprop:Generator_UserColumnName="관리ID" type="xs:int" minOccurs="0" />
<xs:element name="번호" msprop:Generator_ColumnVarNameInTable="column번호" msprop:Generator_ColumnPropNameInRow="번호" msprop:Generator_ColumnPropNameInTable="번호Column" msprop:Generator_UserColumnName="번호" type="xs:int" minOccurs="0" /> <xs:element name="번호" msprop:Generator_ColumnPropNameInRow="번호" msprop:Generator_ColumnPropNameInTable="번호Column" msprop:Generator_ColumnVarNameInTable="column번호" msprop:Generator_UserColumnName="번호" type="xs:int" minOccurs="0" />
<xs:element name="출력" msprop:Generator_ColumnVarNameInTable="column출력" msprop:Generator_ColumnPropNameInRow="출력" msprop:Generator_ColumnPropNameInTable="출력Column" msprop:Generator_UserColumnName="출력" type="xs:boolean" minOccurs="0" /> <xs:element name="출력" msprop:Generator_ColumnPropNameInRow="출력" msprop:Generator_ColumnPropNameInTable="출력Column" msprop:Generator_ColumnVarNameInTable="column출력" msprop:Generator_UserColumnName="출력" type="xs:boolean" minOccurs="0" />
<xs:element name="간선명" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="간선명" msprop:Generator_ColumnVarNameInTable="column간선명" msprop:Generator_ColumnPropNameInTable="간선명Column" msprop:Generator_UserColumnName="간선명" minOccurs="0"> <xs:element name="간선명" msprop:Generator_ColumnPropNameInTable="간선명Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="간선명" msprop:Generator_UserColumnName="간선명" msprop:Generator_ColumnVarNameInTable="column간선명" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="255" /> <xs:maxLength value="255" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="간선명2" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="간선명2" msprop:Generator_ColumnVarNameInTable="column간선명2" msprop:Generator_ColumnPropNameInTable="간선명2Column" msprop:Generator_UserColumnName="간선명2" minOccurs="0"> <xs:element name="간선명2" msprop:Generator_ColumnPropNameInTable="간선명2Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="간선명2" msprop:Generator_UserColumnName="간선명2" msprop:Generator_ColumnVarNameInTable="column간선명2" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="255" /> <xs:maxLength value="255" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="전주번호" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="전주번호" msprop:Generator_ColumnVarNameInTable="column전주번호" msprop:Generator_ColumnPropNameInTable="전주번호Column" msprop:Generator_UserColumnName="전주번호" minOccurs="0"> <xs:element name="전주번호" msprop:Generator_ColumnPropNameInTable="전주번호Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="전주번호" msprop:Generator_UserColumnName="전주번호" msprop:Generator_ColumnVarNameInTable="column전주번호" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="255" /> <xs:maxLength value="255" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="전주번호2" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="전주번호2" msprop:Generator_ColumnVarNameInTable="column전주번호2" msprop:Generator_ColumnPropNameInTable="전주번호2Column" msprop:Generator_UserColumnName="전주번호2" minOccurs="0"> <xs:element name="전주번호2" msprop:Generator_ColumnPropNameInTable="전주번호2Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="전주번호2" msprop:Generator_UserColumnName="전주번호2" msprop:Generator_ColumnVarNameInTable="column전주번호2" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="규격" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="규격" msprop:Generator_ColumnVarNameInTable="column규격" msprop:Generator_ColumnPropNameInTable="규격Column" msprop:Generator_UserColumnName="규격" minOccurs="0"> <xs:element name="규격" msprop:Generator_ColumnPropNameInTable="규격Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="규격" msprop:Generator_UserColumnName="규격" msprop:Generator_ColumnVarNameInTable="column규격" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="중계기명" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="중계기명" msprop:Generator_ColumnVarNameInTable="column중계기명" msprop:Generator_ColumnPropNameInTable="중계기명Column" msprop:Generator_UserColumnName="중계기명" minOccurs="0"> <xs:element name="중계기명" msprop:Generator_ColumnPropNameInTable="중계기명Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="중계기명" msprop:Generator_UserColumnName="중계기명" msprop:Generator_ColumnVarNameInTable="column중계기명" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="시공일" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="시공일" msprop:Generator_ColumnVarNameInTable="column시공일" msprop:Generator_ColumnPropNameInTable="시공일Column" msprop:Generator_UserColumnName="시공일" minOccurs="0"> <xs:element name="시공일" msprop:Generator_ColumnPropNameInTable="시공일Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="시공일" msprop:Generator_UserColumnName="시공일" msprop:Generator_ColumnVarNameInTable="column시공일" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="255" /> <xs:maxLength value="255" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="시공자" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="시공자" msprop:Generator_ColumnVarNameInTable="column시공자" msprop:Generator_ColumnPropNameInTable="시공자Column" msprop:Generator_UserColumnName="시공자" minOccurs="0"> <xs:element name="시공자" msprop:Generator_ColumnPropNameInTable="시공자Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="시공자" msprop:Generator_UserColumnName="시공자" msprop:Generator_ColumnVarNameInTable="column시공자" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="연락처1" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="연락처1" msprop:Generator_ColumnVarNameInTable="column연락처1" msprop:Generator_ColumnPropNameInTable="연락처1Column" msprop:Generator_UserColumnName="연락처1" minOccurs="0"> <xs:element name="연락처1" msprop:Generator_ColumnPropNameInTable="연락처1Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="연락처1" msprop:Generator_UserColumnName="연락처1" msprop:Generator_ColumnVarNameInTable="column연락처1" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="연락처2" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="연락처2" msprop:Generator_ColumnVarNameInTable="column연락처2" msprop:Generator_ColumnPropNameInTable="연락처2Column" msprop:Generator_UserColumnName="연락처2" minOccurs="0"> <xs:element name="연락처2" msprop:Generator_ColumnPropNameInTable="연락처2Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="연락처2" msprop:Generator_UserColumnName="연락처2" msprop:Generator_ColumnVarNameInTable="column연락처2" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="운용기관" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="운용기관" msprop:Generator_ColumnVarNameInTable="column운용기관" msprop:Generator_ColumnPropNameInTable="운용기관Column" msprop:Generator_UserColumnName="운용기관" minOccurs="0"> <xs:element name="운용기관" msprop:Generator_ColumnPropNameInTable="운용기관Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="운용기관" msprop:Generator_UserColumnName="운용기관" msprop:Generator_ColumnVarNameInTable="column운용기관" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="단자함1" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="단자함1" msprop:Generator_ColumnVarNameInTable="column단자함1" msprop:Generator_ColumnPropNameInTable="단자함1Column" msprop:Generator_UserColumnName="단자함1" minOccurs="0"> <xs:element name="단자함1" msprop:Generator_ColumnPropNameInTable="단자함1Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="단자함1" msprop:Generator_UserColumnName="단자함1" msprop:Generator_ColumnVarNameInTable="column단자함1" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="단자함2" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="단자함2" msprop:Generator_ColumnVarNameInTable="column단자함2" msprop:Generator_ColumnPropNameInTable="단자함2Column" msprop:Generator_UserColumnName="단자함2" minOccurs="0"> <xs:element name="단자함2" msprop:Generator_ColumnPropNameInTable="단자함2Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="단자함2" msprop:Generator_UserColumnName="단자함2" msprop:Generator_ColumnVarNameInTable="column단자함2" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="단자함3" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="단자함3" msprop:Generator_ColumnVarNameInTable="column단자함3" msprop:Generator_ColumnPropNameInTable="단자함3Column" msprop:Generator_UserColumnName="단자함3" minOccurs="0"> <xs:element name="단자함3" msprop:Generator_ColumnPropNameInTable="단자함3Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="단자함3" msprop:Generator_UserColumnName="단자함3" msprop:Generator_ColumnVarNameInTable="column단자함3" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="광단자함1" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="광단자함1" msprop:Generator_ColumnVarNameInTable="column광단자함1" msprop:Generator_ColumnPropNameInTable="광단자함1Column" msprop:Generator_UserColumnName="광단자함1" minOccurs="0"> <xs:element name="광단자함1" msprop:Generator_ColumnPropNameInTable="광단자함1Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="광단자함1" msprop:Generator_UserColumnName="광단자함1" msprop:Generator_ColumnVarNameInTable="column광단자함1" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="광단자함2" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="광단자함2" msprop:Generator_ColumnVarNameInTable="column광단자함2" msprop:Generator_ColumnPropNameInTable="광단자함2Column" msprop:Generator_UserColumnName="광단자함2" minOccurs="0"> <xs:element name="광단자함2" msprop:Generator_ColumnPropNameInTable="광단자함2Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="광단자함2" msprop:Generator_UserColumnName="광단자함2" msprop:Generator_ColumnVarNameInTable="column광단자함2" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="광단자함3" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="광단자함3" msprop:Generator_ColumnVarNameInTable="column광단자함3" msprop:Generator_ColumnPropNameInTable="광단자함3Column" msprop:Generator_UserColumnName="광단자함3" minOccurs="0"> <xs:element name="광단자함3" msprop:Generator_ColumnPropNameInTable="광단자함3Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="광단자함3" msprop:Generator_UserColumnName="광단자함3" msprop:Generator_ColumnVarNameInTable="column광단자함3" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="정렬번호" msprop:Generator_ColumnVarNameInTable="column정렬번호" msprop:Generator_ColumnPropNameInRow="정렬번호" msprop:Generator_ColumnPropNameInTable="정렬번호Column" msprop:Generator_UserColumnName="정렬번호" minOccurs="0"> <xs:element name="정렬번호" msprop:Generator_ColumnPropNameInRow="정렬번호" msprop:Generator_ColumnPropNameInTable="정렬번호Column" msprop:Generator_ColumnVarNameInTable="column정렬번호" msprop:Generator_UserColumnName="정렬번호" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="광단자함4" msprop:Generator_ColumnVarNameInTable="column광단자함4" msprop:Generator_ColumnPropNameInRow="광단자함4" msprop:Generator_ColumnPropNameInTable="광단자함4Column" msprop:Generator_UserColumnName="광단자함4" minOccurs="0"> <xs:element name="광단자함4" msprop:Generator_ColumnPropNameInRow="광단자함4" msprop:Generator_ColumnPropNameInTable="광단자함4Column" msprop:Generator_ColumnVarNameInTable="column광단자함4" msprop:Generator_UserColumnName="광단자함4" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
@@ -904,105 +904,105 @@ WHERE (관리ID = ?)</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="Detail_Sknetworks" msprop:Generator_UserTableName="Detail_Sknetworks" msprop:Generator_RowEvArgName="Detail_SknetworksRowChangeEvent" msprop:Generator_TableVarName="tableDetail_Sknetworks" msprop:Generator_TablePropName="Detail_Sknetworks" msprop:Generator_RowDeletingName="Detail_SknetworksRowDeleting" msprop:Generator_RowChangingName="Detail_SknetworksRowChanging" msprop:Generator_RowDeletedName="Detail_SknetworksRowDeleted" msprop:Generator_RowEvHandlerName="Detail_SknetworksRowChangeEventHandler" msprop:Generator_TableClassName="Detail_SknetworksDataTable" msprop:Generator_RowChangedName="Detail_SknetworksRowChanged" msprop:Generator_RowClassName="Detail_SknetworksRow"> <xs:element name="Detail_Sknetworks" msprop:Generator_RowClassName="Detail_SknetworksRow" msprop:Generator_RowEvHandlerName="Detail_SknetworksRowChangeEventHandler" msprop:Generator_RowDeletedName="Detail_SknetworksRowDeleted" msprop:Generator_RowDeletingName="Detail_SknetworksRowDeleting" msprop:Generator_RowEvArgName="Detail_SknetworksRowChangeEvent" msprop:Generator_TablePropName="Detail_Sknetworks" msprop:Generator_RowChangedName="Detail_SknetworksRowChanged" msprop:Generator_UserTableName="Detail_Sknetworks" msprop:Generator_RowChangingName="Detail_SknetworksRowChanging" msprop:Generator_TableClassName="Detail_SknetworksDataTable" msprop:Generator_TableVarName="tableDetail_Sknetworks">
<xs:complexType> <xs:complexType>
<xs:sequence> <xs:sequence>
<xs:element name="출력" msprop:Generator_ColumnVarNameInTable="column출력" msprop:Generator_ColumnPropNameInRow="출력" msprop:Generator_ColumnPropNameInTable="출력Column" msprop:Generator_UserColumnName="출력" type="xs:boolean" default="true" minOccurs="0" /> <xs:element name="출력" msprop:Generator_ColumnPropNameInRow="출력" msprop:Generator_ColumnPropNameInTable="출력Column" msprop:Generator_ColumnVarNameInTable="column출력" msprop:Generator_UserColumnName="출력" type="xs:boolean" default="true" minOccurs="0" />
<xs:element name="관리ID" msprop:Generator_ColumnVarNameInTable="column관리ID" msprop:Generator_ColumnPropNameInRow="관리ID" msprop:Generator_ColumnPropNameInTable="관리IDColumn" msprop:Generator_UserColumnName="관리ID" type="xs:int" minOccurs="0" /> <xs:element name="관리ID" msprop:Generator_ColumnPropNameInRow="관리ID" msprop:Generator_ColumnPropNameInTable="관리IDColumn" msprop:Generator_ColumnVarNameInTable="column관리ID" msprop:Generator_UserColumnName="관리ID" type="xs:int" minOccurs="0" />
<xs:element name="번호" msprop:Generator_ColumnVarNameInTable="column번호" msprop:Generator_ColumnPropNameInRow="번호" msprop:Generator_ColumnPropNameInTable="번호Column" msprop:Generator_UserColumnName="번호" type="xs:int" minOccurs="0" /> <xs:element name="번호" msprop:Generator_ColumnPropNameInRow="번호" msprop:Generator_ColumnPropNameInTable="번호Column" msprop:Generator_ColumnVarNameInTable="column번호" msprop:Generator_UserColumnName="번호" type="xs:int" minOccurs="0" />
<xs:element name="구간명1" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="구간명1" msprop:Generator_ColumnVarNameInTable="column구간명1" msprop:Generator_ColumnPropNameInTable="구간명1Column" msprop:Generator_UserColumnName="구간명1" minOccurs="0"> <xs:element name="구간명1" msprop:Generator_ColumnPropNameInTable="구간명1Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="구간명1" msprop:Generator_UserColumnName="구간명1" msprop:Generator_ColumnVarNameInTable="column구간명1" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="255" /> <xs:maxLength value="255" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="구간명2" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="구간명2" msprop:Generator_ColumnVarNameInTable="column구간명2" msprop:Generator_ColumnPropNameInTable="구간명2Column" msprop:Generator_UserColumnName="구간명2" minOccurs="0"> <xs:element name="구간명2" msprop:Generator_ColumnPropNameInTable="구간명2Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="구간명2" msprop:Generator_UserColumnName="구간명2" msprop:Generator_ColumnVarNameInTable="column구간명2" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="255" /> <xs:maxLength value="255" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="구간명3" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="구간명3" msprop:Generator_ColumnVarNameInTable="column구간명3" msprop:Generator_ColumnPropNameInTable="구간명3Column" msprop:Generator_UserColumnName="구간명3" minOccurs="0"> <xs:element name="구간명3" msprop:Generator_ColumnPropNameInTable="구간명3Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="구간명3" msprop:Generator_UserColumnName="구간명3" msprop:Generator_ColumnVarNameInTable="column구간명3" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="255" /> <xs:maxLength value="255" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="전주번호1" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="전주번호1" msprop:Generator_ColumnVarNameInTable="column전주번호1" msprop:Generator_ColumnPropNameInTable="전주번호1Column" msprop:Generator_UserColumnName="전주번호1" minOccurs="0"> <xs:element name="전주번호1" msprop:Generator_ColumnPropNameInTable="전주번호1Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="전주번호1" msprop:Generator_UserColumnName="전주번호1" msprop:Generator_ColumnVarNameInTable="column전주번호1" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="전주번호2" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="전주번호2" msprop:Generator_ColumnVarNameInTable="column전주번호2" msprop:Generator_ColumnPropNameInTable="전주번호2Column" msprop:Generator_UserColumnName="전주번호2" minOccurs="0"> <xs:element name="전주번호2" msprop:Generator_ColumnPropNameInTable="전주번호2Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="전주번호2" msprop:Generator_UserColumnName="전주번호2" msprop:Generator_ColumnVarNameInTable="column전주번호2" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="전주번호3" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="전주번호3" msprop:Generator_ColumnVarNameInTable="column전주번호3" msprop:Generator_ColumnPropNameInTable="전주번호3Column" msprop:Generator_UserColumnName="전주번호3" minOccurs="0"> <xs:element name="전주번호3" msprop:Generator_ColumnPropNameInTable="전주번호3Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="전주번호3" msprop:Generator_UserColumnName="전주번호3" msprop:Generator_ColumnVarNameInTable="column전주번호3" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="규격" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="규격" msprop:Generator_ColumnVarNameInTable="column규격" msprop:Generator_ColumnPropNameInTable="규격Column" msprop:Generator_UserColumnName="규격" minOccurs="0"> <xs:element name="규격" msprop:Generator_ColumnPropNameInTable="규격Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="규격" msprop:Generator_UserColumnName="규격" msprop:Generator_ColumnVarNameInTable="column규격" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="중계기명" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="중계기명" msprop:Generator_ColumnVarNameInTable="column중계기명" msprop:Generator_ColumnPropNameInTable="중계기명Column" msprop:Generator_UserColumnName="중계기명" minOccurs="0"> <xs:element name="중계기명" msprop:Generator_ColumnPropNameInTable="중계기명Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="중계기명" msprop:Generator_UserColumnName="중계기명" msprop:Generator_ColumnVarNameInTable="column중계기명" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="시공일" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="시공일" msprop:Generator_ColumnVarNameInTable="column시공일" msprop:Generator_ColumnPropNameInTable="시공일Column" msprop:Generator_UserColumnName="시공일" minOccurs="0"> <xs:element name="시공일" msprop:Generator_ColumnPropNameInTable="시공일Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="시공일" msprop:Generator_UserColumnName="시공일" msprop:Generator_ColumnVarNameInTable="column시공일" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="255" /> <xs:maxLength value="255" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="시공자" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="시공자" msprop:Generator_ColumnVarNameInTable="column시공자" msprop:Generator_ColumnPropNameInTable="시공자Column" msprop:Generator_UserColumnName="시공자" minOccurs="0"> <xs:element name="시공자" msprop:Generator_ColumnPropNameInTable="시공자Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="시공자" msprop:Generator_UserColumnName="시공자" msprop:Generator_ColumnVarNameInTable="column시공자" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="연락처1" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="연락처1" msprop:Generator_ColumnVarNameInTable="column연락처1" msprop:Generator_ColumnPropNameInTable="연락처1Column" msprop:Generator_UserColumnName="연락처1" minOccurs="0"> <xs:element name="연락처1" msprop:Generator_ColumnPropNameInTable="연락처1Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="연락처1" msprop:Generator_UserColumnName="연락처1" msprop:Generator_ColumnVarNameInTable="column연락처1" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="연락처2" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="연락처2" msprop:Generator_ColumnVarNameInTable="column연락처2" msprop:Generator_ColumnPropNameInTable="연락처2Column" msprop:Generator_UserColumnName="연락처2" minOccurs="0"> <xs:element name="연락처2" msprop:Generator_ColumnPropNameInTable="연락처2Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="연락처2" msprop:Generator_UserColumnName="연락처2" msprop:Generator_ColumnVarNameInTable="column연락처2" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="운용기관" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="운용기관" msprop:Generator_ColumnVarNameInTable="column운용기관" msprop:Generator_ColumnPropNameInTable="운용기관Column" msprop:Generator_UserColumnName="운용기관" minOccurs="0"> <xs:element name="운용기관" msprop:Generator_ColumnPropNameInTable="운용기관Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="운용기관" msprop:Generator_UserColumnName="운용기관" msprop:Generator_ColumnVarNameInTable="column운용기관" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="rowid" msdata:DataType="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" msprop:Generator_ColumnVarNameInTable="columnrowid" msprop:Generator_ColumnPropNameInRow="rowid" msprop:Generator_ColumnPropNameInTable="rowidColumn" msprop:Generator_UserColumnName="rowid" type="xs:string" /> <xs:element name="rowid" msdata:DataType="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" msprop:Generator_ColumnPropNameInRow="rowid" msprop:Generator_ColumnPropNameInTable="rowidColumn" msprop:Generator_ColumnVarNameInTable="columnrowid" msprop:Generator_UserColumnName="rowid" type="xs:string" />
<xs:element name="정렬번호" msprop:Generator_ColumnVarNameInTable="column정렬번호" msprop:Generator_ColumnPropNameInRow="정렬번호" msprop:Generator_ColumnPropNameInTable="정렬번호Column" msprop:Generator_UserColumnName="정렬번호" minOccurs="0"> <xs:element name="정렬번호" msprop:Generator_ColumnPropNameInRow="정렬번호" msprop:Generator_ColumnPropNameInTable="정렬번호Column" msprop:Generator_ColumnVarNameInTable="column정렬번호" msprop:Generator_UserColumnName="정렬번호" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
@@ -1012,157 +1012,157 @@ WHERE (관리ID = ?)</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="Detail_Karo" msprop:Generator_UserTableName="Detail_Karo" msprop:Generator_RowEvArgName="Detail_KaroRowChangeEvent" msprop:Generator_TableVarName="tableDetail_Karo" msprop:Generator_TablePropName="Detail_Karo" msprop:Generator_RowDeletingName="Detail_KaroRowDeleting" msprop:Generator_RowChangingName="Detail_KaroRowChanging" msprop:Generator_RowDeletedName="Detail_KaroRowDeleted" msprop:Generator_RowEvHandlerName="Detail_KaroRowChangeEventHandler" msprop:Generator_TableClassName="Detail_KaroDataTable" msprop:Generator_RowChangedName="Detail_KaroRowChanged" msprop:Generator_RowClassName="Detail_KaroRow"> <xs:element name="Detail_Karo" msprop:Generator_RowClassName="Detail_KaroRow" msprop:Generator_RowEvHandlerName="Detail_KaroRowChangeEventHandler" msprop:Generator_RowDeletedName="Detail_KaroRowDeleted" msprop:Generator_RowDeletingName="Detail_KaroRowDeleting" msprop:Generator_RowEvArgName="Detail_KaroRowChangeEvent" msprop:Generator_TablePropName="Detail_Karo" msprop:Generator_RowChangedName="Detail_KaroRowChanged" msprop:Generator_UserTableName="Detail_Karo" msprop:Generator_RowChangingName="Detail_KaroRowChanging" msprop:Generator_TableClassName="Detail_KaroDataTable" msprop:Generator_TableVarName="tableDetail_Karo">
<xs:complexType> <xs:complexType>
<xs:sequence> <xs:sequence>
<xs:element name="rowid" msdata:DataType="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" msprop:Generator_ColumnVarNameInTable="columnrowid" msprop:Generator_ColumnPropNameInRow="rowid" msprop:Generator_ColumnPropNameInTable="rowidColumn" msprop:Generator_UserColumnName="rowid" type="xs:string" /> <xs:element name="rowid" msdata:DataType="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" msprop:Generator_ColumnPropNameInRow="rowid" msprop:Generator_ColumnPropNameInTable="rowidColumn" msprop:Generator_ColumnVarNameInTable="columnrowid" msprop:Generator_UserColumnName="rowid" type="xs:string" />
<xs:element name="관리ID" msprop:Generator_ColumnVarNameInTable="column관리ID" msprop:Generator_ColumnPropNameInRow="관리ID" msprop:Generator_ColumnPropNameInTable="관리IDColumn" msprop:Generator_UserColumnName="관리ID" type="xs:int" minOccurs="0" /> <xs:element name="관리ID" msprop:Generator_ColumnPropNameInRow="관리ID" msprop:Generator_ColumnPropNameInTable="관리IDColumn" msprop:Generator_ColumnVarNameInTable="column관리ID" msprop:Generator_UserColumnName="관리ID" type="xs:int" minOccurs="0" />
<xs:element name="출력" msprop:Generator_ColumnVarNameInTable="column출력" msprop:Generator_ColumnPropNameInRow="출력" msprop:Generator_ColumnPropNameInTable="출력Column" msprop:Generator_UserColumnName="출력" type="xs:boolean" default="true" minOccurs="0" /> <xs:element name="출력" msprop:Generator_ColumnPropNameInRow="출력" msprop:Generator_ColumnPropNameInTable="출력Column" msprop:Generator_ColumnVarNameInTable="column출력" msprop:Generator_UserColumnName="출력" type="xs:boolean" default="true" minOccurs="0" />
<xs:element name="번호" msprop:Generator_ColumnVarNameInTable="column번호" msprop:Generator_ColumnPropNameInRow="번호" msprop:Generator_ColumnPropNameInTable="번호Column" msprop:Generator_UserColumnName="번호" type="xs:int" minOccurs="0" /> <xs:element name="번호" msprop:Generator_ColumnPropNameInRow="번호" msprop:Generator_ColumnPropNameInTable="번호Column" msprop:Generator_ColumnVarNameInTable="column번호" msprop:Generator_UserColumnName="번호" type="xs:int" minOccurs="0" />
<xs:element name="area2" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="area2" msprop:Generator_ColumnVarNameInTable="columnarea2" msprop:Generator_ColumnPropNameInTable="area2Column" msprop:Generator_UserColumnName="area2" default="" minOccurs="0"> <xs:element name="area2" msprop:Generator_ColumnPropNameInTable="area2Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="area2" msprop:Generator_UserColumnName="area2" msprop:Generator_ColumnVarNameInTable="columnarea2" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="area1" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="area1" msprop:Generator_ColumnVarNameInTable="columnarea1" msprop:Generator_ColumnPropNameInTable="area1Column" msprop:Generator_UserColumnName="area1" default="" minOccurs="0"> <xs:element name="area1" msprop:Generator_ColumnPropNameInTable="area1Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="area1" msprop:Generator_UserColumnName="area1" msprop:Generator_ColumnVarNameInTable="columnarea1" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="f1" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="f1" msprop:Generator_ColumnVarNameInTable="columnf1" msprop:Generator_ColumnPropNameInTable="f1Column" msprop:Generator_UserColumnName="f1" default="" minOccurs="0"> <xs:element name="f1" msprop:Generator_ColumnPropNameInTable="f1Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="f1" msprop:Generator_UserColumnName="f1" msprop:Generator_ColumnVarNameInTable="columnf1" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="m1" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="m1" msprop:Generator_ColumnVarNameInTable="columnm1" msprop:Generator_ColumnPropNameInTable="m1Column" msprop:Generator_UserColumnName="m1" default="" minOccurs="0"> <xs:element name="m1" msprop:Generator_ColumnPropNameInTable="m1Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="m1" msprop:Generator_UserColumnName="m1" msprop:Generator_ColumnVarNameInTable="columnm1" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="m2" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="m2" msprop:Generator_ColumnVarNameInTable="columnm2" msprop:Generator_ColumnPropNameInTable="m2Column" msprop:Generator_UserColumnName="m2" default="" minOccurs="0"> <xs:element name="m2" msprop:Generator_ColumnPropNameInTable="m2Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="m2" msprop:Generator_UserColumnName="m2" msprop:Generator_ColumnVarNameInTable="columnm2" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="tel1" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="tel1" msprop:Generator_ColumnVarNameInTable="columntel1" msprop:Generator_ColumnPropNameInTable="tel1Column" msprop:Generator_UserColumnName="tel1" default="" minOccurs="0"> <xs:element name="tel1" msprop:Generator_ColumnPropNameInTable="tel1Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="tel1" msprop:Generator_UserColumnName="tel1" msprop:Generator_ColumnVarNameInTable="columntel1" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="tel2" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="tel2" msprop:Generator_ColumnVarNameInTable="columntel2" msprop:Generator_ColumnPropNameInTable="tel2Column" msprop:Generator_UserColumnName="tel2" default="" minOccurs="0"> <xs:element name="tel2" msprop:Generator_ColumnPropNameInTable="tel2Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="tel2" msprop:Generator_UserColumnName="tel2" msprop:Generator_ColumnVarNameInTable="columntel2" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="bigo1" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="bigo1" msprop:Generator_ColumnVarNameInTable="columnbigo1" msprop:Generator_ColumnPropNameInTable="bigo1Column" msprop:Generator_UserColumnName="bigo1" default="" minOccurs="0"> <xs:element name="bigo1" msprop:Generator_ColumnPropNameInTable="bigo1Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="bigo1" msprop:Generator_UserColumnName="bigo1" msprop:Generator_ColumnVarNameInTable="columnbigo1" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="bigo2" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="bigo2" msprop:Generator_ColumnVarNameInTable="columnbigo2" msprop:Generator_ColumnPropNameInTable="bigo2Column" msprop:Generator_UserColumnName="bigo2" default="" minOccurs="0"> <xs:element name="bigo2" msprop:Generator_ColumnPropNameInTable="bigo2Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="bigo2" msprop:Generator_UserColumnName="bigo2" msprop:Generator_ColumnVarNameInTable="columnbigo2" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="bigo3" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="bigo3" msprop:Generator_ColumnVarNameInTable="columnbigo3" msprop:Generator_ColumnPropNameInTable="bigo3Column" msprop:Generator_UserColumnName="bigo3" default="" minOccurs="0"> <xs:element name="bigo3" msprop:Generator_ColumnPropNameInTable="bigo3Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="bigo3" msprop:Generator_UserColumnName="bigo3" msprop:Generator_ColumnVarNameInTable="columnbigo3" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="정렬번호" msdata:Caption="sortkey" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="정렬번호" msprop:Generator_ColumnVarNameInTable="column정렬번호" msprop:Generator_ColumnPropNameInTable="정렬번호Column" msprop:Generator_UserColumnName="정렬번호" default="" minOccurs="0"> <xs:element name="정렬번호" msdata:Caption="sortkey" msprop:Generator_ColumnPropNameInTable="정렬번호Column" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="정렬번호" msprop:Generator_UserColumnName="정렬번호" msprop:Generator_ColumnVarNameInTable="column정렬번호" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="QRCODE" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="QRCODE" msprop:Generator_ColumnVarNameInTable="columnQRCODE" msprop:Generator_ColumnPropNameInTable="QRCODEColumn" msprop:Generator_UserColumnName="QRCODE" default="" minOccurs="0"> <xs:element name="QRCODE" msprop:Generator_ColumnPropNameInTable="QRCODEColumn" msprop:nullValue="" msprop:Generator_ColumnPropNameInRow="QRCODE" msprop:Generator_UserColumnName="QRCODE" msprop:Generator_ColumnVarNameInTable="columnQRCODE" default="" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="200" /> <xs:maxLength value="1000" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="Detail_Deung" msprop:Generator_UserTableName="Detail_Deung" msprop:Generator_RowEvArgName="Detail_DeungRowChangeEvent" msprop:Generator_TableVarName="tableDetail_Deung" msprop:Generator_TablePropName="Detail_Deung" msprop:Generator_RowDeletingName="Detail_DeungRowDeleting" msprop:Generator_RowChangingName="Detail_DeungRowChanging" msprop:Generator_RowDeletedName="Detail_DeungRowDeleted" msprop:Generator_RowEvHandlerName="Detail_DeungRowChangeEventHandler" msprop:Generator_TableClassName="Detail_DeungDataTable" msprop:Generator_RowChangedName="Detail_DeungRowChanged" msprop:Generator_RowClassName="Detail_DeungRow"> <xs:element name="Detail_Deung" msprop:Generator_RowClassName="Detail_DeungRow" msprop:Generator_RowEvHandlerName="Detail_DeungRowChangeEventHandler" msprop:Generator_RowDeletedName="Detail_DeungRowDeleted" msprop:Generator_RowDeletingName="Detail_DeungRowDeleting" msprop:Generator_RowEvArgName="Detail_DeungRowChangeEvent" msprop:Generator_TablePropName="Detail_Deung" msprop:Generator_RowChangedName="Detail_DeungRowChanged" msprop:Generator_UserTableName="Detail_Deung" msprop:Generator_RowChangingName="Detail_DeungRowChanging" msprop:Generator_TableClassName="Detail_DeungDataTable" msprop:Generator_TableVarName="tableDetail_Deung">
<xs:complexType> <xs:complexType>
<xs:sequence> <xs:sequence>
<xs:element name="rowid" msdata:DataType="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" msprop:Generator_ColumnVarNameInTable="columnrowid" msprop:Generator_ColumnPropNameInRow="rowid" msprop:Generator_ColumnPropNameInTable="rowidColumn" msprop:Generator_UserColumnName="rowid" type="xs:string" /> <xs:element name="rowid" msdata:DataType="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" msprop:Generator_ColumnPropNameInRow="rowid" msprop:Generator_ColumnPropNameInTable="rowidColumn" msprop:Generator_ColumnVarNameInTable="columnrowid" msprop:Generator_UserColumnName="rowid" type="xs:string" />
<xs:element name="관리ID" msprop:Generator_ColumnVarNameInTable="column관리ID" msprop:Generator_ColumnPropNameInRow="관리ID" msprop:Generator_ColumnPropNameInTable="관리IDColumn" msprop:Generator_UserColumnName="관리ID" type="xs:int" minOccurs="0" /> <xs:element name="관리ID" msprop:Generator_ColumnPropNameInRow="관리ID" msprop:Generator_ColumnPropNameInTable="관리IDColumn" msprop:Generator_ColumnVarNameInTable="column관리ID" msprop:Generator_UserColumnName="관리ID" type="xs:int" minOccurs="0" />
<xs:element name="번호" msprop:Generator_ColumnVarNameInTable="column번호" msprop:Generator_ColumnPropNameInRow="번호" msprop:Generator_ColumnPropNameInTable="번호Column" msprop:Generator_UserColumnName="번호" type="xs:int" minOccurs="0" /> <xs:element name="번호" msprop:Generator_ColumnPropNameInRow="번호" msprop:Generator_ColumnPropNameInTable="번호Column" msprop:Generator_ColumnVarNameInTable="column번호" msprop:Generator_UserColumnName="번호" type="xs:int" minOccurs="0" />
<xs:element name="출력" msprop:Generator_ColumnVarNameInTable="column출력" msprop:Generator_ColumnPropNameInRow="출력" msprop:Generator_ColumnPropNameInTable="출력Column" msprop:Generator_UserColumnName="출력" type="xs:boolean" default="true" minOccurs="0" /> <xs:element name="출력" msprop:Generator_ColumnPropNameInRow="출력" msprop:Generator_ColumnPropNameInTable="출력Column" msprop:Generator_ColumnVarNameInTable="column출력" msprop:Generator_UserColumnName="출력" type="xs:boolean" default="true" minOccurs="0" />
<xs:element name="고객번호1" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="고객번호1" msprop:Generator_ColumnVarNameInTable="column고객번호1" msprop:Generator_ColumnPropNameInTable="고객번호1Column" msprop:Generator_UserColumnName="고객번호1" minOccurs="0"> <xs:element name="고객번호1" msprop:Generator_ColumnPropNameInTable="고객번호1Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="고객번호1" msprop:Generator_UserColumnName="고객번호1" msprop:Generator_ColumnVarNameInTable="column고객번호1" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="고객번호2" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="고객번호2" msprop:Generator_ColumnVarNameInTable="column고객번호2" msprop:Generator_ColumnPropNameInTable="고객번호2Column" msprop:Generator_UserColumnName="고객번호2" minOccurs="0"> <xs:element name="고객번호2" msprop:Generator_ColumnPropNameInTable="고객번호2Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="고객번호2" msprop:Generator_UserColumnName="고객번호2" msprop:Generator_ColumnVarNameInTable="column고객번호2" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="고객번호3" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="고객번호3" msprop:Generator_ColumnVarNameInTable="column고객번호3" msprop:Generator_ColumnPropNameInTable="고객번호3Column" msprop:Generator_UserColumnName="고객번호3" minOccurs="0"> <xs:element name="고객번호3" msprop:Generator_ColumnPropNameInTable="고객번호3Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="고객번호3" msprop:Generator_UserColumnName="고객번호3" msprop:Generator_ColumnVarNameInTable="column고객번호3" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="관리번호1" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="관리번호1" msprop:Generator_ColumnVarNameInTable="column관리번호1" msprop:Generator_ColumnPropNameInTable="관리번호1Column" msprop:Generator_UserColumnName="관리번호1" minOccurs="0"> <xs:element name="관리번호1" msprop:Generator_ColumnPropNameInTable="관리번호1Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="관리번호1" msprop:Generator_UserColumnName="관리번호1" msprop:Generator_ColumnVarNameInTable="column관리번호1" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="관리번호2" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="관리번호2" msprop:Generator_ColumnVarNameInTable="column관리번호2" msprop:Generator_ColumnPropNameInTable="관리번호2Column" msprop:Generator_UserColumnName="관리번호2" minOccurs="0"> <xs:element name="관리번호2" msprop:Generator_ColumnPropNameInTable="관리번호2Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="관리번호2" msprop:Generator_UserColumnName="관리번호2" msprop:Generator_ColumnVarNameInTable="column관리번호2" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="관리번호3" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="관리번호3" msprop:Generator_ColumnVarNameInTable="column관리번호3" msprop:Generator_ColumnPropNameInTable="관리번호3Column" msprop:Generator_UserColumnName="관리번호3" minOccurs="0"> <xs:element name="관리번호3" msprop:Generator_ColumnPropNameInTable="관리번호3Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="관리번호3" msprop:Generator_UserColumnName="관리번호3" msprop:Generator_ColumnVarNameInTable="column관리번호3" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="지점명" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="지점명" msprop:Generator_ColumnVarNameInTable="column지점명" msprop:Generator_ColumnPropNameInTable="지점명Column" msprop:Generator_UserColumnName="지점명" minOccurs="0"> <xs:element name="지점명" msprop:Generator_ColumnPropNameInTable="지점명Column" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="지점명" msprop:Generator_UserColumnName="지점명" msprop:Generator_ColumnVarNameInTable="column지점명" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:element> </xs:element>
<xs:element name="정렬번호" msprop:Generator_ColumnVarNameInTable="column정렬번호" msprop:Generator_ColumnPropNameInRow="정렬번호" msprop:Generator_ColumnPropNameInTable="정렬번호Column" msprop:Generator_UserColumnName="정렬번호" minOccurs="0"> <xs:element name="정렬번호" msprop:Generator_ColumnPropNameInRow="정렬번호" msprop:Generator_ColumnPropNameInTable="정렬번호Column" msprop:Generator_ColumnVarNameInTable="column정렬번호" msprop:Generator_UserColumnName="정렬번호" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="50" /> <xs:maxLength value="50" />

View File

@@ -4,7 +4,7 @@
Changes to this file may cause incorrect behavior and will be lost if Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated. the code is regenerated.
</autogenerated>--> </autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-20" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout"> <DiagramLayout xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-20" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes> <Shapes>
<Shape ID="DesignTable:MainTable" ZOrder="5" X="2" Y="2" Height="617" Width="102" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="22" SplitterPosition="366" /> <Shape ID="DesignTable:MainTable" ZOrder="5" X="2" Y="2" Height="617" Width="102" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="22" SplitterPosition="366" />
<Shape ID="DesignTable:Detail_tongsin" ZOrder="3" X="124" Y="4" Height="564" Width="146" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="502" /> <Shape ID="DesignTable:Detail_tongsin" ZOrder="3" X="124" Y="4" Height="564" Width="146" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="502" />

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -196,6 +196,7 @@ Public Class XLSImport
' Me.tb_ecnt.Text = Me.tb_scnt.Text + 100 ' Me.tb_ecnt.Text = Me.tb_scnt.Text + 100
'End If 'End If
Me.DT_Karo.Rows.Clear() : Me.DT_Karo.AcceptChanges() Me.DT_Karo.Rows.Clear() : Me.DT_Karo.AcceptChanges()
Dim sb As New System.Text.StringBuilder()
For Each Dr As FarPoint.Win.Spread.Row In Me.CustFP1.ActiveSheet.Rows '//모든로우에해당하는데 시작줄부터한다 For Each Dr As FarPoint.Win.Spread.Row In Me.CustFP1.ActiveSheet.Rows '//모든로우에해당하는데 시작줄부터한다
If Dr.Index + 1 >= StartCnt AndAlso Dr.Index + 1 <= EndCnt Then '//시작인덱스 이상일경우에만 한다. If Dr.Index + 1 >= StartCnt AndAlso Dr.Index + 1 <= EndCnt Then '//시작인덱스 이상일경우에만 한다.
@@ -257,6 +258,7 @@ Public Class XLSImport
' AddLog("번호중복", "중복된 번호:" & 번호) ' AddLog("번호중복", "중복된 번호:" & 번호)
Catch ex As Exception Catch ex As Exception
Dim ermsg As String = ex.Message.ToString Dim ermsg As String = ex.Message.ToString
If sb.Length < 100 Then sb.AppendLine(ex.Message)
' AddLog(ex.InnerException.ToString, ex.Message.ToString) ' AddLog(ex.InnerException.ToString, ex.Message.ToString)
End Try End Try
End If End If
@@ -282,7 +284,9 @@ Public Class XLSImport
Me.CustFP2.ActiveSheet.Columns(12).Label = "비고2" Me.CustFP2.ActiveSheet.Columns(12).Label = "비고2"
Me.CustFP2.ActiveSheet.Columns(13).Label = "비고3" Me.CustFP2.ActiveSheet.Columns(13).Label = "비고3"
If sb.Length > 0 Then
MsgBox(sb.ToString())
End If
End Sub End Sub
Private Sub Apply_jdung() '//가로등 미리보기 Private Sub Apply_jdung() '//가로등 미리보기

Binary file not shown.

View File

@@ -4,9 +4,9 @@
## 따로 수정할 필요가 없습니다 ## 따로 수정할 필요가 없습니다
########################################## ##########################################
[normal] [normal]
file=D:\20180725신안.xls file=S:\Source\HaeGwang\Temp\20260116\서울 동작구 공원등 분전함.xls
StartPos=2 StartPos=3
EndPos=1000 EndPos=200
[CURSET0] [CURSET0]
TextBox24= TextBox24=
@@ -459,17 +459,17 @@ ImpCtl17=False
ImpCtl18=False ImpCtl18=False
ImpCtl19=False ImpCtl19=False
[CURSETNUM4] [CURSETNUM4]
ImpCtl2= ImpCtl2=4
ImpCtl3=1 ImpCtl3=5
ImpCtl4= ImpCtl4=
ImpCtl5=2 ImpCtl5=6
ImpCtl6= ImpCtl6=
ImpCtl7=3 ImpCtl7=8
ImpCtl8= ImpCtl8=
ImpCtl9= ImpCtl9=
ImpCtl10= ImpCtl10=
ImpCtl11= ImpCtl11=
ImpCtl12= ImpCtl12=15
ImpCtl13= ImpCtl13=
ImpCtl14= ImpCtl14=
ImpCtl15= ImpCtl15=
@@ -500,7 +500,7 @@ ImpCtl19=
ImpCtl20= ImpCtl20=
[CURSETNUL4] [CURSETNUL4]
ImpCtl2=False ImpCtl2=False
ImpCtl3=True ImpCtl3=False
ImpCtl4=False ImpCtl4=False
ImpCtl5=True ImpCtl5=True
ImpCtl6=False ImpCtl6=False
@@ -509,7 +509,7 @@ ImpCtl8=False
ImpCtl9=False ImpCtl9=False
ImpCtl10=False ImpCtl10=False
ImpCtl11=False ImpCtl11=False
ImpCtl12=False ImpCtl12=True
ImpCtl13=False ImpCtl13=False
ImpCtl14=False ImpCtl14=False
ImpCtl15=False ImpCtl15=False

File diff suppressed because it is too large Load Diff

1
_Import/ArinClassV2 Submodule

Submodule _Import/ArinClassV2 added at 474f8b2afe

1
_Import/ArinNewFp Submodule

Submodule _Import/ArinNewFp added at a083a22a2a

1
_Import/QRCodeLib Submodule

Submodule _Import/QRCodeLib added at 5f306c3474

1
_Import/Z_Epole_Class Submodule

Submodule _Import/Z_Epole_Class added at 4123064532