Files
Client/Library/dxx8/samples/Multimedia/VBSamples/Misc/DXSetup/copy.frm
LGram16 e067522598 Initial commit: ROW Client source code
Game client codebase including:
- CharacterActionControl: Character and creature management
- GlobalScript: Network, items, skills, quests, utilities
- RYLClient: Main client application with GUI and event handlers
- Engine: 3D rendering engine (RYLGL)
- MemoryManager: Custom memory allocation
- Library: Third-party dependencies (DirectX, boost, etc.)
- Tools: Development utilities

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 16:24:34 +09:00

128 lines
3.8 KiB
Plaintext

VERSION 5.00
Begin VB.Form frmCopy
BorderStyle = 3 'Fixed Dialog
Caption = "#"
ClientHeight = 1830
ClientLeft = 870
ClientTop = 1530
ClientWidth = 5910
ClipControls = 0 'False
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
HasDC = 0 'False
Icon = "copy.frx":0000
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
NegotiateMenus = 0 'False
ScaleHeight = 1830
ScaleWidth = 5910
ShowInTaskbar = 0 'False
Begin VB.PictureBox picStatus
AutoRedraw = -1 'True
ClipControls = 0 'False
FillColor = &H00FF0000&
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 384
Left = 168
ScaleHeight = 330
ScaleWidth = 5535
TabIndex = 3
TabStop = 0 'False
Top = 708
Width = 5592
End
Begin VB.CommandButton cmdExit
Cancel = -1 'True
Caption = "#"
Default = -1 'True
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 2085
MaskColor = &H00000000&
TabIndex = 0
Top = 1275
Width = 1665
End
Begin VB.Label lblDestFile
Caption = "*"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 192
Left = 168
TabIndex = 1
Top = 300
Width = 5640
End
Begin VB.Label lblCopy
AutoSize = -1 'True
Caption = "#"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Left = 165
TabIndex = 2
Top = 0
Width = 105
End
End
Attribute VB_Name = "frmCopy"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdExit_Click()
ExitSetup Me, gintRET_EXIT
End Sub
Private Sub Form_Load()
SetFormFont Me
cmdExit.Caption = ResolveResString(resBTNCANCEL)
lblCopy.Caption = ResolveResString(resLBLDESTFILE)
lblDestFile.Caption = vbNullString
frmCopy.Caption = gstrTitle
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
HandleFormQueryUnload UnloadMode, Cancel, Me
End Sub