Restructure repository to include all source folders
Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
94
Server/ToolProject/RCMS_Tool/LogItem.vb
Normal file
94
Server/ToolProject/RCMS_Tool/LogItem.vb
Normal file
@@ -0,0 +1,94 @@
|
||||
Public Class LogItem
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
#Region " Windows Form Designer generated code "
|
||||
|
||||
Public Sub New()
|
||||
MyBase.New()
|
||||
|
||||
'This call is required by the Windows Form Designer.
|
||||
InitializeComponent()
|
||||
|
||||
'Add any initialization after the InitializeComponent() call
|
||||
|
||||
End Sub
|
||||
|
||||
'Form overrides dispose to clean up the component list.
|
||||
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
If disposing Then
|
||||
If Not (components Is Nothing) Then
|
||||
components.Dispose()
|
||||
End If
|
||||
End If
|
||||
MyBase.Dispose(disposing)
|
||||
End Sub
|
||||
|
||||
'Required by the Windows Form Designer
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'NOTE: The following procedure is required by the Windows Form Designer
|
||||
'It can be modified using the Windows Form Designer.
|
||||
'Do not modify it using the code editor.
|
||||
Friend WithEvents lbltitle As System.Windows.Forms.Label
|
||||
Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
|
||||
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
|
||||
Friend WithEvents Label1 As System.Windows.Forms.Label
|
||||
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
|
||||
Me.lbltitle = New System.Windows.Forms.Label()
|
||||
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
|
||||
Me.TextBox1 = New System.Windows.Forms.TextBox()
|
||||
Me.Label1 = New System.Windows.Forms.Label()
|
||||
Me.GroupBox1.SuspendLayout()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'lbltitle
|
||||
'
|
||||
Me.lbltitle.AutoSize = True
|
||||
Me.lbltitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||
Me.lbltitle.Font = New System.Drawing.Font("GulimChe", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte))
|
||||
Me.lbltitle.Location = New System.Drawing.Point(296, 40)
|
||||
Me.lbltitle.Name = "lbltitle"
|
||||
Me.lbltitle.Size = New System.Drawing.Size(90, 24)
|
||||
Me.lbltitle.TabIndex = 2
|
||||
Me.lbltitle.Text = "lblTitle"
|
||||
'
|
||||
'GroupBox1
|
||||
'
|
||||
Me.GroupBox1.Controls.AddRange(New System.Windows.Forms.Control() {Me.Label1, Me.TextBox1})
|
||||
Me.GroupBox1.Location = New System.Drawing.Point(88, 72)
|
||||
Me.GroupBox1.Name = "GroupBox1"
|
||||
Me.GroupBox1.Size = New System.Drawing.Size(504, 80)
|
||||
Me.GroupBox1.TabIndex = 3
|
||||
Me.GroupBox1.TabStop = False
|
||||
'
|
||||
'TextBox1
|
||||
'
|
||||
Me.TextBox1.Location = New System.Drawing.Point(160, 32)
|
||||
Me.TextBox1.Name = "TextBox1"
|
||||
Me.TextBox1.Size = New System.Drawing.Size(128, 21)
|
||||
Me.TextBox1.TabIndex = 0
|
||||
Me.TextBox1.Text = "TextBox1"
|
||||
'
|
||||
'Label1
|
||||
'
|
||||
Me.Label1.Location = New System.Drawing.Point(32, 32)
|
||||
Me.Label1.Name = "Label1"
|
||||
Me.Label1.TabIndex = 1
|
||||
Me.Label1.Text = "°Ë»öÁ¶°Ç"
|
||||
'
|
||||
'LogItem
|
||||
'
|
||||
Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)
|
||||
Me.ClientSize = New System.Drawing.Size(640, 421)
|
||||
Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.GroupBox1, Me.lbltitle})
|
||||
Me.Name = "LogItem"
|
||||
Me.Text = " "
|
||||
Me.GroupBox1.ResumeLayout(False)
|
||||
Me.ResumeLayout(False)
|
||||
|
||||
End Sub
|
||||
|
||||
#End Region
|
||||
|
||||
|
||||
End Class
|
||||
Reference in New Issue
Block a user