This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
frmMain.frm
79 lines (75 loc) · 2.48 KB
/
frmMain.frm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
VERSION 5.00
Begin VB.Form frmMain
BorderStyle = 3 'Fixed Dialog
Caption = "Cold Fusion LUA Decompiler"
ClientHeight = 3000
ClientLeft = 45
ClientTop = 435
ClientWidth = 5130
Icon = "frmMain.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3000
ScaleWidth = 5130
ShowInTaskbar = 0 'False
StartUpPosition = 3 'Windows Default
Begin VB.Label lblDesc
BorderStyle = 1 'Fixed Single
Caption = "..."
Height = 1935
Left = 120
TabIndex = 2
Top = 960
Width = 4935
End
Begin VB.Label lblAuthors
Alignment = 1 'Right Justify
Caption = "-By 4E534B ([email protected]) "
Height = 255
Left = 240
TabIndex = 1
Top = 570
Width = 4695
End
Begin VB.Label lblVers
Alignment = 2 'Center
BorderStyle = 1 'Fixed Single
Caption = "..."
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 120
TabIndex = 0
Top = 120
Width = 4935
End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Caption = "Cold Fusion LUA Decompiler"
lblVers.Caption = "CFLuaDC" & _
" v" & _
App.Major & _
"." & _
App.Minor & _
"." & _
App.Revision & _
IIf(App.Comments = "-", "", " " & App.Comments)
lblDesc.Caption = "To decompile a LUA, call " & vbCrLf & _
" CFLuaDC <file name>" & vbCrLf & vbCrLf & _
"For example: CFLuaDC Vgr_BattleCruiser.ship will decompile the file into Vgr_BattleCruiser_DC.ship" _
& vbCrLf & vbCrLf & "If you encounter any bugs, please let me know about it."
End Sub