vb6parse 1.0.1

vb6parse is a library for parsing and analyzing VB6 code, from projects, to controls, to modules, and forms.
Documentation
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="VB6Parse Library Reference - spc - Graphics">
    <title>spc - Graphics - VB6Parse Library Reference</title>
    <link rel="stylesheet" href="../../../assets/css/style.css">
    <link rel="stylesheet" href="../../../assets/css/docs-style.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark.min.css">
    <script src="../../../assets/js/theme-switcher.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/vbnet.min.js"></script>
    <script>hljs.highlightAll();</script>
</head>
<body>
    <header class="docs-header">
        <div class="container">
            <h1><a href="../../../index.html">VB6Parse</a> / <a href="../../../library/index.html">Library</a> / <a href="../../../library/functions/graphics/index.html">Graphics</a> / spc</h1>
            <p class="tagline">VB6 Library Reference</p>
        </div>
    </header>

    <nav class="docs-nav">
        <div class="container">
            <a href="../../../index.html">Home</a>
            <a href="../../../library/index.html">Library Reference</a>
            <a href="../../../documentation.html">Documentation</a>
            <a href="https://docs.rs/vb6parse" target="_blank">API Docs</a>
            <a href="https://github.com/scriptandcompile/vb6parse" target="_blank">GitHub</a>
            <button id="theme-toggle" class="theme-toggle" aria-label="Toggle theme">
                <span class="theme-icon">🌙</span>
            </button>
        </div>
    </nav>

    <main class="container">
        
        <article class="library-item">
            <h1 id="spc-function">Spc Function</h1>
<p>Used with the Print # statement or Print method to position output.</p>
<h2 id="syntax">Syntax</h2>
<pre><code class="language-vbnet">Spc(n)</code></pre>
<h2 id="parameters">Parameters</h2>
<ul>
<li><code>n</code> - Required. Numeric expression specifying the number of spaces to insert before displaying or printing the next expression in the list.</li>
</ul>
<h2 id="return-value">Return Value</h2>
<p>Used only with Print # statement and Print method. Returns a value used to insert space characters in output.</p>
<h2 id="remarks">Remarks</h2>
<p>The Spc function is used to insert spaces in output when using the Print # statement (for files) or the Print method (for the Immediate window or printer). Unlike the Space function which returns a string of spaces, Spc is a special formatting function that only works within Print statements.
Key characteristics:
- Only valid within Print # or Print (Debug.Print) statements
- Inserts the specified number of space characters
- If current print position + n exceeds output line width, Spc skips to the next line
- If n is less than the output line width, the next print position is current position + n
- If n is greater than the output line width, the next print position is calculated as n Mod width
- Cannot be used independently or assigned to variables
- Returns a variant used internally by the Print statement
The Spc function differs from related positioning functions:
- <strong>Spc(n)</strong>: Inserts n spaces from current position
- <strong>Tab(n)</strong>: Moves to column n (absolute positioning)
- <strong>Space(n)</strong>: Returns a string of n spaces (can be used anywhere)</p>
<h2 id="typical-uses">Typical Uses</h2>
<ol>
<li><strong>File Output</strong>: Space elements in text file output</li>
<li><strong>Report Formatting</strong>: Create formatted reports with spacing</li>
<li><strong>Column Alignment</strong>: Align data in columns</li>
<li><strong>Debug Output</strong>: Format Debug.Print output</li>
<li><strong>Printer Output</strong>: Format printed output</li>
<li><strong>Data Separation</strong>: Separate data elements with spaces</li>
<li><strong>Fixed-Width Output</strong>: Create fixed-width formatted text</li>
<li><strong>Log Files</strong>: Format log file entries</li>
</ol>
<h2 id="basic-examples">Basic Examples</h2>
<pre><code class="language-vbnet">&#x27; Example 1: Print with spaces between items
Dim fileNum As Integer
fileNum = FreeFile
Open &quot;output.txt&quot; For Output As #fileNum
Print #fileNum, &quot;Name&quot;; Spc(10); &quot;Age&quot;; Spc(10); &quot;City&quot;
Close #fileNum
&#x27; Outputs: &quot;Name          Age          City&quot;</code></pre>
<pre><code class="language-vbnet">&#x27; Example 2: Debug output with spacing
Debug.Print &quot;Item:&quot;; Spc(5); &quot;Value&quot;
&#x27; Outputs: &quot;Item:     Value&quot;</code></pre>
<pre><code class="language-vbnet">&#x27; Example 3: Multiple Spc calls in one statement
Print #1, &quot;A&quot;; Spc(3); &quot;B&quot;; Spc(5); &quot;C&quot;
&#x27; Outputs: &quot;A   B     C&quot;</code></pre>
<pre><code class="language-vbnet">&#x27; Example 4: Create formatted columns
Dim i As Integer
For i = 1 To 3
    Debug.Print i; Spc(10); i * 10; Spc(10); i * 100
Next i
&#x27; Outputs aligned columns of numbers</code></pre>
<h2 id="common-patterns">Common Patterns</h2>
<h3 id="pattern-1-formatfileoutput">Pattern 1: <code>FormatFileOutput</code></h3>
<p>Format data in file with consistent spacing</p>
<pre><code class="language-vbnet">Sub FormatFileOutput(fileNum As Integer, name As String, _
                     age As Integer, city As String)
    Print #fileNum, name; Spc(20 - Len(name)); _
                    age; Spc(10); city
End Sub</code></pre>
<h3 id="pattern-2-printaligneddata">Pattern 2: <code>PrintAlignedData</code></h3>
<p>Print data with aligned columns</p>
<pre><code class="language-vbnet">Sub PrintAlignedData(label As String, value As Variant, spacing As Integer)
    Debug.Print label; Spc(spacing); value
End Sub</code></pre>
<h3 id="pattern-3-createtablerow">Pattern 3: <code>CreateTableRow</code></h3>
<p>Create table row with Spc spacing</p>
<pre><code class="language-vbnet">Sub CreateTableRow(fileNum As Integer, col1 As String, _
                   col2 As String, col3 As String)
    Print #fileNum, col1; Spc(15 - Len(col1)); _
                    col2; Spc(15 - Len(col2)); _
                    col3
End Sub</code></pre>
<h3 id="pattern-4-formatlogentry">Pattern 4: <code>FormatLogEntry</code></h3>
<p>Format log entries with timestamps and messages</p>
<pre><code class="language-vbnet">Sub FormatLogEntry(fileNum As Integer, timestamp As String, _
                   level As String, message As String)
    Print #fileNum, timestamp; Spc(5); _
                    level; Spc(10 - Len(level)); _
                    message
End Sub</code></pre>
<h3 id="pattern-5-printwithindent">Pattern 5: <code>PrintWithIndent</code></h3>
<p>Print text with indentation using Spc</p>
<pre><code class="language-vbnet">Sub PrintWithIndent(fileNum As Integer, indentLevel As Integer, _
                    text As String)
    Print #fileNum, Spc(indentLevel * 4); text
End Sub</code></pre>
<h3 id="pattern-6-formatkeyvaluepair">Pattern 6: <code>FormatKeyValuePair</code></h3>
<p>Format key-value pairs with consistent spacing</p>
<pre><code class="language-vbnet">Sub FormatKeyValuePair(fileNum As Integer, key As String, _
                       value As String, Optional totalWidth As Integer = 40)
    Dim spacesNeeded As Integer
    spacesNeeded = totalWidth - Len(key) - Len(value)
    If spacesNeeded &lt; 1 Then spacesNeeded = 1
    Print #fileNum, key; Spc(spacesNeeded); value
End Sub</code></pre>
<h3 id="pattern-7-printheader">Pattern 7: <code>PrintHeader</code></h3>
<p>Print formatted header with separators</p>
<pre><code class="language-vbnet">Sub PrintHeader(fileNum As Integer, title1 As String, _
                title2 As String, title3 As String)
    Print #fileNum, title1; Spc(15 - Len(title1)); _
                    title2; Spc(15 - Len(title2)); _
                    title3
    Print #fileNum, String(15, &quot;-&quot;); Spc(1); _
                    String(15, &quot;-&quot;); Spc(1); _
                    String(15, &quot;-&quot;)
End Sub</code></pre>
<h3 id="pattern-8-debugprintarray">Pattern 8: <code>DebugPrintArray</code></h3>
<p>Print array elements with spacing</p>
<pre><code class="language-vbnet">Sub DebugPrintArray(arr() As Variant)
    Dim i As Integer
    For i = LBound(arr) To UBound(arr)
        Debug.Print arr(i); Spc(5);
    Next i
    Debug.Print  &#x27; New line
End Sub</code></pre>
<h3 id="pattern-9-formatnumerictable">Pattern 9: <code>FormatNumericTable</code></h3>
<p>Print numeric data in aligned columns</p>
<pre><code class="language-vbnet">Sub FormatNumericTable(fileNum As Integer, values() As Double)
    Dim i As Integer
    For i = LBound(values) To UBound(values)
        Print #fileNum, Format(values(i), &quot;0.00&quot;); Spc(10);
        If (i - LBound(values) + 1) Mod 5 = 0 Then
            Print #fileNum,  &#x27; New line every 5 values
        End If
    Next i
End Sub</code></pre>
<h3 id="pattern-10-printreportline">Pattern 10: <code>PrintReportLine</code></h3>
<p>Print formatted report line</p>
<pre><code class="language-vbnet">Sub PrintReportLine(fileNum As Integer, lineNum As Integer, _
                    description As String, amount As Double)
    Print #fileNum, Format(lineNum, &quot;000&quot;); Spc(5); _
                    description; Spc(30 - Len(description)); _
                    Format(amount, &quot;$#,##0.00&quot;)
End Sub</code></pre>
<h2 id="advanced-usage">Advanced Usage</h2>
<h3 id="example-1-reportwriter-class">Example 1: <code>ReportWriter</code> Class</h3>
<p>Generate formatted text reports with Spc</p>
<pre><code class="language-vbnet">&#x27; Class: ReportWriter
Private m_fileNum As Integer
Private m_isOpen As Boolean
Public Sub OpenReport(fileName As String)
    m_fileNum = FreeFile
    Open fileName For Output As #m_fileNum
    m_isOpen = True
End Sub
Public Sub WriteHeader(title As String, col1 As String, _
                       col2 As String, col3 As String)
    If Not m_isOpen Then Exit Sub
    &#x27; Center title
    Dim totalWidth As Integer
    totalWidth = 60
    Dim leftPad As Integer
    leftPad = (totalWidth - Len(title)) \ 2
    Print #m_fileNum, Spc(leftPad); title
    Print #m_fileNum, String(totalWidth, &quot;=&quot;)
    Print #m_fileNum,
    &#x27; Column headers
    Print #m_fileNum, col1; Spc(20 - Len(col1)); _
                      col2; Spc(20 - Len(col2)); _
                      col3
    Print #m_fileNum, String(20, &quot;-&quot;); Spc(1); _
                      String(20, &quot;-&quot;); Spc(1); _
                      String(20, &quot;-&quot;)
End Sub
Public Sub WriteDataRow(val1 As String, val2 As String, val3 As String)
    If Not m_isOpen Then Exit Sub
    Print #m_fileNum, val1; Spc(20 - Len(val1)); _
                      val2; Spc(20 - Len(val2)); _
                      val3
End Sub
Public Sub WriteSummary(label As String, value As String)
    If Not m_isOpen Then Exit Sub
    Print #m_fileNum,
    Print #m_fileNum, String(60, &quot;-&quot;)
    Print #m_fileNum, label; Spc(60 - Len(label) - Len(value)); value
End Sub
Public Sub CloseReport()
    If m_isOpen Then
        Close #m_fileNum
        m_isOpen = False
    End If
End Sub
Private Sub Class_Terminate()
    CloseReport
End Sub</code></pre>
<h3 id="example-2-logfileformatter-module">Example 2: <code>LogFileFormatter</code> Module</h3>
<p>Format log file entries with timestamps</p>
<pre><code class="language-vbnet">&#x27; Module: LogFileFormatter
Private m_logFile As Integer
Private m_logOpen As Boolean
Public Sub OpenLog(fileName As String)
    m_logFile = FreeFile
    Open fileName For Append As #m_logFile
    m_logOpen = True
End Sub
Public Sub LogInfo(message As String)
    If Not m_logOpen Then Exit Sub
    Dim timestamp As String
    timestamp = Format(Now, &quot;yyyy-mm-dd hh:nn:ss&quot;)
    Print #m_logFile, timestamp; Spc(5); &quot;INFO&quot;; Spc(10); message
End Sub
Public Sub LogWarning(message As String)
    If Not m_logOpen Then Exit Sub
    Dim timestamp As String
    timestamp = Format(Now, &quot;yyyy-mm-dd hh:nn:ss&quot;)
    Print #m_logFile, timestamp; Spc(5); &quot;WARNING&quot;; Spc(6); message
End Sub
Public Sub LogError(message As String, Optional errorNum As Long = 0)
    If Not m_logOpen Then Exit Sub
    Dim timestamp As String
    timestamp = Format(Now, &quot;yyyy-mm-dd hh:nn:ss&quot;)
    Print #m_logFile, timestamp; Spc(5); &quot;ERROR&quot;; Spc(8); message
    If errorNum &lt;&gt; 0 Then
        Print #m_logFile, Spc(30); &quot;Error #&quot;; errorNum
    End If
End Sub
Public Sub LogDebug(category As String, message As String)
    If Not m_logOpen Then Exit Sub
    Dim timestamp As String
    timestamp = Format(Now, &quot;yyyy-mm-dd hh:nn:ss&quot;)
    Print #m_logFile, timestamp; Spc(5); &quot;DEBUG&quot;; Spc(8); _
                       &quot;[&quot;; category; &quot;]&quot;; Spc(3); message
End Sub
Public Sub LogSeparator()
    If Not m_logOpen Then Exit Sub
    Print #m_logFile, String(80, &quot;-&quot;)
End Sub
Public Sub CloseLog()
    If m_logOpen Then
        Close #m_logFile
        m_logOpen = False
    End If
End Sub</code></pre>
<h3 id="example-3-datatableprinter-class">Example 3: <code>DataTablePrinter</code> Class</h3>
<p>Print data in formatted tables</p>
<pre><code class="language-vbnet">&#x27; Class: DataTablePrinter
Private m_columnWidths() As Integer
Private m_fileNum As Integer
Public Sub Initialize(fileNum As Integer, columnWidths() As Integer)
    Dim i As Integer
    m_fileNum = fileNum
    ReDim m_columnWidths(LBound(columnWidths) To UBound(columnWidths))
    For i = LBound(columnWidths) To UBound(columnWidths)
        m_columnWidths(i) = columnWidths(i)
    Next i
End Sub
Public Sub PrintRow(values() As String)
    Dim i As Integer
    Dim spaces As Integer
    For i = LBound(values) To UBound(values)
        Print #m_fileNum, values(i);
        If i &lt; UBound(values) Then
            spaces = m_columnWidths(i) - Len(values(i))
            If spaces &lt; 1 Then spaces = 1
            Print #m_fileNum, Spc(spaces);
        End If
    Next i
    Print #m_fileNum,  &#x27; New line
End Sub
Public Sub PrintHeaderRow(headers() As String)
    Dim i As Integer
    PrintRow headers
    &#x27; Print separator
    For i = LBound(m_columnWidths) To UBound(m_columnWidths)
        Print #m_fileNum, String(m_columnWidths(i), &quot;-&quot;);
        If i &lt; UBound(m_columnWidths) Then
            Print #m_fileNum, Spc(1);
        End If
    Next i
    Print #m_fileNum,  &#x27; New line
End Sub
Public Sub PrintRightAligned(values() As String)
    Dim i As Integer
    Dim spaces As Integer
    For i = LBound(values) To UBound(values)
        spaces = m_columnWidths(i) - Len(values(i))
        If spaces &gt; 0 Then Print #m_fileNum, Spc(spaces);
        Print #m_fileNum, values(i);
        If i &lt; UBound(values) Then
            Print #m_fileNum, Spc(1);
        End If
    Next i
    Print #m_fileNum,  &#x27; New line
End Sub</code></pre>
<h3 id="example-4-debugoutputhelper-module">Example 4: <code>DebugOutputHelper</code> Module</h3>
<p>Format debug output with Spc</p>
<pre><code class="language-vbnet">&#x27; Module: DebugOutputHelper
Public Sub PrintVariable(varName As String, varValue As Variant)
    Debug.Print varName; Spc(20 - Len(varName)); &quot;=&quot;; Spc(2); varValue
End Sub
Public Sub PrintVariables(ParamArray vars() As Variant)
    Dim i As Integer
    For i = LBound(vars) To UBound(vars) Step 2
        If i + 1 &lt;= UBound(vars) Then
            PrintVariable CStr(vars(i)), vars(i + 1)
        End If
    Next i
End Sub
Public Sub PrintSection(title As String)
    Debug.Print
    Debug.Print String(50, &quot;=&quot;)
    Dim leftPad As Integer
    leftPad = (50 - Len(title)) \ 2
    Debug.Print Spc(leftPad); title
    Debug.Print String(50, &quot;=&quot;)
    Debug.Print
End Sub
Public Sub PrintKeyValue(key As String, value As Variant, _
                         Optional totalWidth As Integer = 40)
    Dim spacesNeeded As Integer
    spacesNeeded = totalWidth - Len(key) - Len(CStr(value))
    If spacesNeeded &lt; 1 Then spacesNeeded = 1
    Debug.Print key; Spc(spacesNeeded); value
End Sub
Public Sub PrintIndented(level As Integer, text As String)
    Debug.Print Spc(level * 4); text
End Sub
Public Sub PrintArray(arr() As Variant, Optional itemsPerLine As Integer = 5)
    Dim i As Integer
    Dim count As Integer
    count = 0
    For i = LBound(arr) To UBound(arr)
        Debug.Print arr(i); Spc(10);
        count = count + 1
        If count &gt;= itemsPerLine Then
            Debug.Print  &#x27; New line
            count = 0
        End If
    Next i
    If count &gt; 0 Then Debug.Print  &#x27; Final new line if needed
End Sub</code></pre>
<h2 id="error-handling">Error Handling</h2>
<p>The Spc function itself doesn't typically generate errors, but the Print statement it's used with can:
- <strong>Error 52</strong> (Bad file name or number): If file number is invalid
- <strong>Error 54</strong> (Bad file mode): If file not opened for output
- <strong>Error 13</strong> (Type mismatch): If n is not numeric
Always ensure file is properly opened:</p>
<pre><code class="language-vbnet">On Error Resume Next
Print #fileNum, &quot;Data&quot;; Spc(10); &quot;Value&quot;
If Err.Number &lt;&gt; 0 Then
    MsgBox &quot;Error writing to file: &quot; &amp; Err.Description
End If</code></pre>
<h2 id="performance-considerations">Performance Considerations</h2>
<ul>
<li>Spc is very efficient for positioning output</li>
<li>More efficient than concatenating <code>Space()</code> strings in Print statements</li>
<li>No performance difference between Spc and Space within Print statements</li>
<li>File I/O is the bottleneck, not Spc itself</li>
</ul>
<h2 id="best-practices">Best Practices</h2>
<ol>
<li><strong>Only in Print</strong>: Use Spc only within Print # or Debug.Print statements</li>
<li><strong>Validate Arguments</strong>: Ensure n is positive and reasonable</li>
<li><strong>Consistent Spacing</strong>: Use constants for column widths</li>
<li><strong>Calculate Dynamically</strong>: Adjust spacing based on content length</li>
<li><strong>Use Space Alternative</strong>: Use <code>Space()</code> function if need string result</li>
<li><strong>Combine with Tab</strong>: Use Tab for absolute positioning, Spc for relative</li>
<li><strong>Test Output</strong>: Verify alignment with actual data</li>
<li><strong>Monospace Fonts</strong>: Ensure output viewed in monospace font</li>
<li><strong>Handle Long Data</strong>: Account for data that exceeds expected width</li>
<li><strong>Document Format</strong>: Comment expected column layout</li>
</ol>
<h2 id="comparison-with-related-functions">Comparison with Related Functions</h2>
<table>
<thead>
<tr>
<th>Function</th>
<th>Usage Context</th>
<th>Positioning</th>
<th>Returns</th>
</tr>
</thead>
<tbody>
<tr>
<td>Spc(n)</td>
<td>Print statements only</td>
<td>Relative (+n spaces)</td>
<td>Variant (internal)</td>
</tr>
<tr>
<td>Tab(n)</td>
<td>Print statements only</td>
<td>Absolute (column n)</td>
<td>Variant (internal)</td>
</tr>
<tr>
<td>Space(n)</td>
<td>Anywhere</td>
<td>N/A</td>
<td>String of n spaces</td>
</tr>
<tr>
<td>String(n, " ")</td>
<td>Anywhere</td>
<td>N/A</td>
<td>String of n spaces</td>
</tr>
</tbody>
</table>
<h2 id="platform-considerations">Platform Considerations</h2>
<ul>
<li>Available in VB6, VBA (all versions)</li>
<li>Part of Print statement syntax</li>
<li>Behavior consistent across platforms</li>
<li>Works with Debug.Print, Print # (files), and Printer.Print</li>
<li>Output width depends on file width setting (default 80 characters)</li>
</ul>
<h2 id="limitations">Limitations</h2>
<ul>
<li>Cannot be used outside Print statements</li>
<li>Cannot assign Spc result to variable</li>
<li>Cannot use in string concatenation</li>
<li>Wrapping behavior depends on output width setting</li>
<li>Not suitable for proportional fonts (use with monospace)</li>
<li>Limited to text output scenarios</li>
</ul>
<h2 id="related-functions">Related Functions</h2>
<ul>
<li><code>Tab</code>: Positions output at absolute column position</li>
<li><code>Space</code>: Returns string of spaces (can be used anywhere)</li>
<li><code>Print</code>: Statement that outputs data</li>
<li><code>Width</code>: Statement that sets output line width</li>
</ul>
        </article>
        
        <div style="margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-color);">
            <p>
                <a href="index.html">← Back to Graphics</a> |
                <a href="../index.html">View all functions</a>
            </p>
        </div>

    </main>

    <footer>
        <div class="container">
            <p>&copy; 2024-2026 VB6Parse Contributors. Licensed under the MIT License.</p>
        </div>
    </footer>
</body>
</html>