Files
Client/Library/dxx8/samples/Multimedia/VBSamples/Misc/DXSetup/message.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

56 lines
1.5 KiB
Plaintext

VERSION 5.00
Begin VB.Form frmMessage
BorderStyle = 3 'Fixed Dialog
ClientHeight = 900
ClientLeft = 1065
ClientTop = 1995
ClientWidth = 5340
ClipControls = 0 'False
ControlBox = 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 = "message.frx":0000
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
NegotiateMenus = 0 'False
ScaleHeight = 900
ScaleWidth = 5340
ShowInTaskbar = 0 'False
Begin VB.Image imgMsg
Height = 480
Left = 270
Picture = "message.frx":0442
Top = 210
Width = 480
End
Begin VB.Label lblMsg
AutoSize = -1 'True
Caption = "*"
Height = 195
Left = 945
TabIndex = 0
Top = 360
Width = 4110
WordWrap = -1 'True
End
End
Attribute VB_Name = "frmMessage"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
SetFormFont Me
End Sub