diff --git a/WIP.md b/WIP.md index 57bf34d4..36daa543 100644 --- a/WIP.md +++ b/WIP.md @@ -22,7 +22,7 @@ Status: - `docs/Reference/VB/todo.md` — backlog tracker for the VB package; see [Backlog discovery](#backlog-discovery). - `docs/Reference/Statements.md` — alphabetical index of language statements. - `docs/Reference/Procedures and Functions.md` — alphabetical index of procedures/functions. -- `docs/_includes/VBA-Attribution.md` — the attribution boilerplate include. +- `docs/_includes/footer_custom.html` — overrides the theme's footer slot; renders the copyright line and, when `vba_attribution: true` is set in a page's frontmatter, an additional CC-BY-4.0 attribution line beneath it. ## VBA-Docs source (read-only) @@ -48,7 +48,7 @@ The standard control classes have no VBA-Docs equivalent — they're documented The `STANDARD/` folder is the primary backlog. The `BASE/` folder defines the inheritance chain (e.g. `BaseControlWindowlessNoFocus` → `BaseControlRectDockable` → `BaseControlRect` → `BaseControl`); read those alongside the leaf class to know which `Public` members are actually visible. Members marked `Protected` or hidden behind `[Unimplemented]` should be flagged with a `> [!NOTE]` callout. -Used for: the VB package only. These pages are fully original content — **omit** the `{% include VBA-Attribution.md %}` line. +Used for: the VB package only. These pages are fully original content — **omit** the `vba_attribution: true` frontmatter flag. ## Page template @@ -75,6 +75,7 @@ parent: Module | VB Package> permalink: /tB/Core/ redirect_from: # only if relocated; e.g. moved from Core/ to a Module/ - /tB/Core/ +vba_attribution: true # omit for VB package pages (fully original content) --- # {: .no_toc } @@ -99,8 +100,6 @@ This example... ### See Also - [Other](OtherSymbol) - -{% include VBA-Attribution.md %} ```` Formatting conventions: @@ -108,7 +107,7 @@ Formatting conventions: - `**...**` for keywords/literal tokens; `*...*` for placeholders/arguments. - Code blocks use ` ```tb ` (the twinBASIC lexer registered in `docs/_plugins/twinbasic.rb`). - Parameter lists use the kramdown `term` + `: definition` indentation pattern (NOT the MS-style markdown table). -- Don't drop the `{% include VBA-Attribution.md %}` line unless the page is fully original content. +- Set `vba_attribution: true` in the frontmatter on any page derived from VBA-Docs; omit it on fully original content (e.g. VB package pages). The flag drives an extra line in the site footer. ### Cross-section linking @@ -166,7 +165,7 @@ Always link to the **canonical** location (the page's `permalink:`), not to a `r - Walk the `Inherits` chain to enumerate the actually-public surface; private/protected helpers don't belong in user-facing docs. - List members alphabetically within Properties / Methods / Events sections (see `CheckBox.md`). - Members marked `[Unimplemented]` get a `> [!NOTE]` callout saying so. - - Omit `{% include VBA-Attribution.md %}` — these pages are fully original. + - Omit the `vba_attribution: true` frontmatter flag — these pages are fully original. 5. **Flag tB deviations** with a `> [!NOTE]` callout (see next section). 6. **Update the parent index** (`//index.md`, `docs/Reference/VB/index.md`, `Reference/Statements.md`, or `Reference/Procedures and Functions.md`) — turn an unlinked bullet into a link with a short blurb. Match the existing style of the page. 7. **Remove the symbol's path from `docs/Reference/VB/todo.md`** `redirect_from:` array (VB controls only — VBA/VBRUN backlogs are closed). diff --git a/docs/Reference/Core/AddressOf.md b/docs/Reference/Core/AddressOf.md index 742eefda..f9bd06e5 100644 --- a/docs/Reference/Core/AddressOf.md +++ b/docs/Reference/Core/AddressOf.md @@ -3,6 +3,7 @@ title: AddressOf parent: Operators grand_parent: Reference Section permalink: /tB/Core/AddressOf +vba_attribution: true --- # AddressOf operator {: .no_toc } @@ -92,5 +93,3 @@ End Sub - [Enhanced Pointer Functionality](../../Features/Language/Pointers) - [API Declarations](../../Features/Advanced/API-Declarations) - [Operators](../../Reference/Operators) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/And.md b/docs/Reference/Core/And.md index 75fe0a83..730bd799 100644 --- a/docs/Reference/Core/And.md +++ b/docs/Reference/Core/And.md @@ -3,6 +3,7 @@ title: And parent: Operators grand_parent: Reference Section permalink: /tB/Core/And +vba_attribution: true --- # And operator {: .no_toc } @@ -63,5 +64,3 @@ MyCheck = A And B ' Returns 8 (bitwise comparison). - [**Or** operator](Or) - [**Not** operator](Not) - [Operators](../../Reference/Operators) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Call.md b/docs/Reference/Core/Call.md index 27585e08..124ee9b6 100644 --- a/docs/Reference/Core/Call.md +++ b/docs/Reference/Core/Call.md @@ -2,6 +2,7 @@ title: Call parent: Statements permalink: /tB/Core/Call +vba_attribution: true --- # Call @@ -63,6 +64,3 @@ End Sub - [**Function** statement](Function) - [**Sub** statement](Sub) - - -{% include VBA-Attribution.md %} \ No newline at end of file diff --git a/docs/Reference/Core/Close.md b/docs/Reference/Core/Close.md index 41277413..ca8ac848 100644 --- a/docs/Reference/Core/Close.md +++ b/docs/Reference/Core/Close.md @@ -2,6 +2,7 @@ title: Close parent: Statements permalink: /tB/Core/Close +vba_attribution: true --- # Close @@ -44,5 +45,3 @@ Close #FileNumber(1), #FileNumber(2), #FileNumber(3) ' Close the 3 open files. - [Open](Open) statement - [FreeFile](../Modules/FileSystem) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Const.md b/docs/Reference/Core/Const.md index 1e395ce8..4a40d127 100644 --- a/docs/Reference/Core/Const.md +++ b/docs/Reference/Core/Const.md @@ -2,6 +2,7 @@ title: Const parent: Statements permalink: /tB/Core/Const +vba_attribution: true --- # Const @@ -68,5 +69,3 @@ Private Const MyInt As Integer = 5 ' Declare multiple constants on same line. Const MyStr = "Hello", MyDouble As Double = 3.4567 ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Declare.md b/docs/Reference/Core/Declare.md index fbaaf7c2..4d523547 100644 --- a/docs/Reference/Core/Declare.md +++ b/docs/Reference/Core/Declare.md @@ -2,6 +2,7 @@ title: Declare parent: Statements permalink: /tB/Core/Declare +vba_attribution: true --- # Declare @@ -132,5 +133,3 @@ Declare PtrSafe Function GetActiveWindow Lib "User32" () As LongPtr ' Code is NOT running in 32-bit or 64-bit twinBASIC or VBA7. #End If ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Deftype.md b/docs/Reference/Core/Deftype.md index 12e1622e..2b177c06 100644 --- a/docs/Reference/Core/Deftype.md +++ b/docs/Reference/Core/Deftype.md @@ -2,6 +2,7 @@ title: Deftype parent: Statements permalink: /tB/Core/Deftype +vba_attribution: true --- # DefBool, DefByte, DefInt, DefLng, DefLngLng, DefLngPtr, DefCur, DefSng, DefDbl, DefDec, DefDate, DefStr, DefObj, DefVar {: .no_toc } @@ -76,5 +77,3 @@ Dim TaxRate As Double ' explicit declaration overrides the default - [**Dim** statement](Dim) - [**Option** statement](Option) (for **Option Explicit**) - [**Type** statement](Type) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Dim.md b/docs/Reference/Core/Dim.md index 44c74eea..e49cbce3 100644 --- a/docs/Reference/Core/Dim.md +++ b/docs/Reference/Core/Dim.md @@ -2,6 +2,7 @@ title: Dim parent: Statements permalink: /tB/Core/Dim +vba_attribution: true --- # Dim @@ -92,6 +93,4 @@ Dim BirthDay(1 To 10)As Date ' MyArray is a dynamic array of variants. Dim MyArray() -``` - -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/Core/Do-Loop.md b/docs/Reference/Core/Do-Loop.md index 6f2ebca4..278b4c99 100644 --- a/docs/Reference/Core/Do-Loop.md +++ b/docs/Reference/Core/Do-Loop.md @@ -2,6 +2,7 @@ title: Do...Loop parent: Statements permalink: /tB/Core/Do-Loop +vba_attribution: true --- # Do...Loop @@ -135,6 +136,4 @@ End Sub > [!NOTE] > -> To stop an endless loop, press ESC or CTRL+BREAK. - -{% include VBA-Attribution.md %} \ No newline at end of file +> To stop an endless loop, press ESC or CTRL+BREAK. \ No newline at end of file diff --git a/docs/Reference/Core/End.md b/docs/Reference/Core/End.md index bab10839..5aeae3f3 100644 --- a/docs/Reference/Core/End.md +++ b/docs/Reference/Core/End.md @@ -2,6 +2,7 @@ title: End parent: Statements permalink: /tB/Core/End +vba_attribution: true --- # End @@ -57,6 +58,4 @@ Sub Form_Load End End If End Sub -``` - -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/Core/Enum.md b/docs/Reference/Core/Enum.md index 890b556f..202269e8 100644 --- a/docs/Reference/Core/Enum.md +++ b/docs/Reference/Core/Enum.md @@ -2,6 +2,7 @@ title: Enum parent: Statements permalink: /tB/Core/Enum +vba_attribution: true --- # Enum @@ -67,6 +68,4 @@ Public Enum InterfaceColors icGoldenrod = &H20A5DA& icFirebrick = &H2222B2& End Enum -``` - -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/Core/Erase.md b/docs/Reference/Core/Erase.md index 41e93efa..2c21a03b 100644 --- a/docs/Reference/Core/Erase.md +++ b/docs/Reference/Core/Erase.md @@ -2,6 +2,7 @@ title: Erase parent: Statements permalink: /tB/Core/Erase +vba_attribution: true --- # Erase @@ -44,6 +45,4 @@ Erase StrVarArray ' Each element set to zero-length Erase StrFixArray ' Each element set to 0. Erase VarArray ' Each element set to Empty. Erase DynamicArray ' Free memory used by array. -``` - -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/Core/Error.md b/docs/Reference/Core/Error.md index c5057d7f..f833f459 100644 --- a/docs/Reference/Core/Error.md +++ b/docs/Reference/Core/Error.md @@ -2,6 +2,7 @@ title: Error parent: Statements permalink: /tB/Core/Error +vba_attribution: true --- # Error @@ -36,6 +37,4 @@ This example uses the **Error** statement to simulate error number 11. ```tb On Error Resume Next ' Defer error handling. Error 11 ' Simulate the "Division by zero" error. -``` - -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/Core/Exit.md b/docs/Reference/Core/Exit.md index 615c4cf4..f010fe4b 100644 --- a/docs/Reference/Core/Exit.md +++ b/docs/Reference/Core/Exit.md @@ -2,6 +2,7 @@ title: Exit parent: Statements permalink: /tB/Core/Exit +vba_attribution: true --- # Exit {: .no_toc } @@ -48,5 +49,4 @@ Sub ExitStatementDemo() Next I Loop End Sub -``` -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/Core/For-Each-Next.md b/docs/Reference/Core/For-Each-Next.md index ec6cb2b9..29897f43 100644 --- a/docs/Reference/Core/For-Each-Next.md +++ b/docs/Reference/Core/For-Each-Next.md @@ -2,6 +2,7 @@ title: For Each...Next parent: Statements permalink: /tB/Core/For-Each-Next +vba_attribution: true --- # For Each...Next @@ -60,5 +61,4 @@ For Each MyObject In MyCollection ' Iterate through each element. Exit For ' Exit loop. End If Next -``` -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/Core/For-Next.md b/docs/Reference/Core/For-Next.md index feddf1f0..1d63350e 100644 --- a/docs/Reference/Core/For-Next.md +++ b/docs/Reference/Core/For-Next.md @@ -2,6 +2,7 @@ title: For...Next parent: Statements permalink: /tB/Core/For-Next +vba_attribution: true --- # For...Next @@ -85,6 +86,4 @@ For Words = 10 To 1 Step -1 ' Set up 10 repetitions. Next Chars ' Increment counter MyString = MyString & " " ' Append a space. Next Words -``` - -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/Core/Function.md b/docs/Reference/Core/Function.md index fa36a04f..897e07ac 100644 --- a/docs/Reference/Core/Function.md +++ b/docs/Reference/Core/Function.md @@ -2,6 +2,7 @@ title: Function parent: Statements permalink: /tB/Core/Function +vba_attribution: true --- # Function {: .no_toc } @@ -187,5 +188,4 @@ Function MyFunc(MyStr As String,Optional MyArg1 As _ ' Arguments one and three using named-arguments. RetVal = MyFunc(MyStr:="Hello ", MyArg1:=7) End Function -``` -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/Core/Get.md b/docs/Reference/Core/Get.md index d82569b0..e9ea92fe 100644 --- a/docs/Reference/Core/Get.md +++ b/docs/Reference/Core/Get.md @@ -2,6 +2,7 @@ title: Get parent: Statements permalink: /tB/Core/Get +vba_attribution: true --- # Get {: .no_toc } @@ -94,5 +95,3 @@ Close #1 ' Close file. - [**Close** statement](Close) - [**Put** statement](Put) - [**Seek** function](../Modules/FileSystem/Seek) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/GoSub-Return.md b/docs/Reference/Core/GoSub-Return.md index 2a038300..3ca1d14f 100644 --- a/docs/Reference/Core/GoSub-Return.md +++ b/docs/Reference/Core/GoSub-Return.md @@ -2,6 +2,7 @@ title: GoSub ... Return parent: Statements permalink: /tB/Core/GoSub-Return +vba_attribution: true --- # GoSub ... Return {: .no_toc } @@ -51,5 +52,3 @@ End Sub - [**GoTo** statement](GoTo) - [**On...GoSub** statement](On-GoSub) - [**Sub** statement](Sub) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/GoTo.md b/docs/Reference/Core/GoTo.md index 66b78805..ecb6acc1 100644 --- a/docs/Reference/Core/GoTo.md +++ b/docs/Reference/Core/GoTo.md @@ -2,6 +2,7 @@ title: GoTo parent: Statements permalink: /tB/Core/GoTo +vba_attribution: true --- # GoTo {: .no_toc } @@ -47,5 +48,3 @@ End Sub - [**GoSub...Return** statement](GoSub-Return) - [**On Error** statement](On-Error) - [**Select Case** statement](Select-Case) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/If-Then-Else.md b/docs/Reference/Core/If-Then-Else.md index bd9d18ab..98bd9f86 100644 --- a/docs/Reference/Core/If-Then-Else.md +++ b/docs/Reference/Core/If-Then-Else.md @@ -2,6 +2,7 @@ title: If...Then...Else parent: Statements permalink: /tB/Core/If-Then-Else +vba_attribution: true --- # If...Then...Else @@ -98,5 +99,3 @@ End Sub - [**Select Case** statement](Select-Case) - [**#If...Then...Else** directive](Topic-Preprocessor) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Implements.md b/docs/Reference/Core/Implements.md index 26d048f9..d6f4543f 100644 --- a/docs/Reference/Core/Implements.md +++ b/docs/Reference/Core/Implements.md @@ -2,6 +2,7 @@ title: Implements parent: Statements permalink: /tB/Core/Implements +vba_attribution: true --- # Implements {: .no_toc } @@ -105,5 +106,3 @@ End Property - [**Class** statement](Class) - [Inheritance](../../Features/Language/Inheritance) - [Interfaces and CoClasses](../../Features/Language/Interfaces-CoClasses) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Input.md b/docs/Reference/Core/Input.md index 7589d3ef..0f4b1375 100644 --- a/docs/Reference/Core/Input.md +++ b/docs/Reference/Core/Input.md @@ -2,6 +2,7 @@ title: Input # parent: Statements permalink: /tB/Core/Input +vba_attribution: true --- # Input # statement {: .no_toc } @@ -67,5 +68,3 @@ Close #1 ' Close file. - [**Print #** statement](Print) - [**Input** function](../Modules/HiddenModule/Input) - [**EOF** function](../Modules/FileSystem/EOF) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Is.md b/docs/Reference/Core/Is.md index 84a26418..f46bf1dd 100644 --- a/docs/Reference/Core/Is.md +++ b/docs/Reference/Core/Is.md @@ -3,6 +3,7 @@ title: Is parent: Operators grand_parent: Reference Section permalink: /tB/Core/Is +vba_attribution: true --- # Is {: .no_toc } @@ -72,5 +73,3 @@ MyCheck = MyObject Is ThatObject ' Returns False. - [**Set** statement](Set) - [**If...Then...Else** statement](If-Then-Else) - [**Select Case** statement](Select-Case) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/LSet.md b/docs/Reference/Core/LSet.md index 47b5a00d..dd71bd0d 100644 --- a/docs/Reference/Core/LSet.md +++ b/docs/Reference/Core/LSet.md @@ -2,6 +2,7 @@ title: LSet parent: Statements permalink: /tB/Core/LSet +vba_attribution: true --- # LSet {: .no_toc } @@ -46,5 +47,3 @@ LSet MyString = "<-Left" ' MyString contains "<-Left ". - [**RSet** statement](RSet) - [**Mid =** statement](Mid-equals) - [**Let** statement](Let) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Let.md b/docs/Reference/Core/Let.md index d796df68..7dd332c2 100644 --- a/docs/Reference/Core/Let.md +++ b/docs/Reference/Core/Let.md @@ -2,6 +2,7 @@ title: Let parent: Statements permalink: /tB/Core/Let +vba_attribution: true --- # Let {: .no_toc } @@ -52,5 +53,3 @@ MyInt = 5 - [**Set** statement](Set) - [**LSet** statement](LSet) - [**Property** statement](Property) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Line-Input.md b/docs/Reference/Core/Line-Input.md index d930e088..2ff5fde5 100644 --- a/docs/Reference/Core/Line-Input.md +++ b/docs/Reference/Core/Line-Input.md @@ -2,6 +2,7 @@ title: Line Input # parent: Statements permalink: /tB/Core/Line-Input +vba_attribution: true --- # Line Input # statement {: .no_toc } @@ -43,5 +44,3 @@ Close #1 ' Close file. - [**Print #** statement](Print) - [**Write #** statement](Write) - [**EOF** function](../Modules/FileSystem/EOF) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Load.md b/docs/Reference/Core/Load.md index 7891f68f..21c9b6c7 100644 --- a/docs/Reference/Core/Load.md +++ b/docs/Reference/Core/Load.md @@ -2,6 +2,7 @@ title: Load parent: Statements permalink: /tB/Core/Load +vba_attribution: true --- # Load {: .no_toc } @@ -43,5 +44,3 @@ End Sub ### See Also - [**Unload** statement](Unload) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Lock.md b/docs/Reference/Core/Lock.md index 004251c9..16c68be8 100644 --- a/docs/Reference/Core/Lock.md +++ b/docs/Reference/Core/Lock.md @@ -2,6 +2,7 @@ title: Lock, Unlock parent: Statements permalink: /tB/Core/Lock +vba_attribution: true --- # Lock, Unlock {: .no_toc } @@ -69,5 +70,3 @@ Close #1 ' Close file. - [**Close** statement](Close) - [**Get** statement](Get) - [**Put** statement](Put) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Mid-equals.md b/docs/Reference/Core/Mid-equals.md index 41d6b9bf..6020cc68 100644 --- a/docs/Reference/Core/Mid-equals.md +++ b/docs/Reference/Core/Mid-equals.md @@ -2,6 +2,7 @@ title: Mid = parent: Statements permalink: /tB/Core/Mid-equals +vba_attribution: true --- # Mid = statement {: .no_toc } @@ -50,5 +51,3 @@ Mid(MyString, 5, 3) = "duck" ' MyString = "The duc jumpe". - [**Mid** function](../Modules/Strings/Mid) - [**LSet** statement](LSet) - [**RSet** statement](RSet) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/MidB-equals.md b/docs/Reference/Core/MidB-equals.md index 53ca780d..218ac357 100644 --- a/docs/Reference/Core/MidB-equals.md +++ b/docs/Reference/Core/MidB-equals.md @@ -2,6 +2,7 @@ title: MidB = parent: Statements permalink: /tB/Core/MidB-equals +vba_attribution: true --- # MidB = statement {: .no_toc } @@ -33,5 +34,3 @@ The number of bytes replaced is always less than or equal to the number of bytes - [**MidB** function](../Modules/Strings/Mid) - [**LSet** statement](LSet) - [**RSet** statement](RSet) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Mod.md b/docs/Reference/Core/Mod.md index 8c5c1967..94bb82d5 100644 --- a/docs/Reference/Core/Mod.md +++ b/docs/Reference/Core/Mod.md @@ -3,6 +3,7 @@ title: Mod parent: Operators grand_parent: Reference Section permalink: /tB/Core/Mod +vba_attribution: true --- # Mod operator {: .no_toc } @@ -43,5 +44,3 @@ MyResult = 12.6 Mod 5 ' Returns 3. ### See Also - [Operators](../../Reference/Operators) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Name.md b/docs/Reference/Core/Name.md index eb4b6d32..fc3037c4 100644 --- a/docs/Reference/Core/Name.md +++ b/docs/Reference/Core/Name.md @@ -2,6 +2,7 @@ title: Name parent: Statements permalink: /tB/Core/Name +vba_attribution: true --- # Name {: .no_toc } @@ -40,5 +41,3 @@ Name oldName As newName ' Move and rename file. - [**FileCopy** procedure](../Modules/FileSystem/FileCopy) - [**MkDir** statement](../Modules/FileSystem/MkDir) - [**RmDir** statement](../Modules/FileSystem/RmDir) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/New.md b/docs/Reference/Core/New.md index 1e629afd..0abd6c86 100644 --- a/docs/Reference/Core/New.md +++ b/docs/Reference/Core/New.md @@ -2,6 +2,7 @@ title: New parent: Statements permalink: /tB/Core/New +vba_attribution: true --- # New {: .no_toc } @@ -56,5 +57,3 @@ Next i - [**Set** statement](Set) - [**Dim** statement](Dim) - [**Class** statement](Class) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Not.md b/docs/Reference/Core/Not.md index e93399fb..bec4db80 100644 --- a/docs/Reference/Core/Not.md +++ b/docs/Reference/Core/Not.md @@ -3,6 +3,7 @@ title: Not parent: Operators grand_parent: Reference Section permalink: /tB/Core/Not +vba_attribution: true --- # Not operator {: .no_toc } @@ -52,5 +53,3 @@ MyCheck = Not A ' Returns -11 (bitwise comparison). - [**Or** operator](Or) - [**IsNot** operator](IsNot) - [Operators](../../Reference/Operators) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/On-Error.md b/docs/Reference/Core/On-Error.md index b612ad5f..2b23b874 100644 --- a/docs/Reference/Core/On-Error.md +++ b/docs/Reference/Core/On-Error.md @@ -2,6 +2,7 @@ title: On Error parent: Statements permalink: /tB/Core/On-Error +vba_attribution: true --- # On Error {: .no_toc } @@ -106,5 +107,3 @@ End Sub - [**Error** statement](Error) - [**Exit** statement](Exit) - [**GoTo** statement](GoTo) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/On-GoSub.md b/docs/Reference/Core/On-GoSub.md index 53c12f3b..cceec11c 100644 --- a/docs/Reference/Core/On-GoSub.md +++ b/docs/Reference/Core/On-GoSub.md @@ -2,6 +2,7 @@ title: On...GoSub parent: Statements permalink: /tB/Core/On-GoSub +vba_attribution: true --- # On...GoSub {: .no_toc } @@ -20,5 +21,3 @@ When *expression* evaluates to *n*, control transfers to the *n*-th label in *de - [**On...GoTo** statement](On-GoTo) - [**GoSub...Return** statement](GoSub-Return) - [**Select Case** statement](Select-Case) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/On-GoTo.md b/docs/Reference/Core/On-GoTo.md index 664b8dcc..6953068f 100644 --- a/docs/Reference/Core/On-GoTo.md +++ b/docs/Reference/Core/On-GoTo.md @@ -2,6 +2,7 @@ title: On...GoTo, On...GoSub parent: Statements permalink: /tB/Core/On-GoTo +vba_attribution: true --- # On...GoTo, On...GoSub {: .no_toc } @@ -61,5 +62,3 @@ End Sub - [**GoTo** statement](GoTo) - [**GoSub...Return** statement](GoSub-Return) - [**Select Case** statement](Select-Case) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Open.md b/docs/Reference/Core/Open.md index a1595220..a83c0095 100644 --- a/docs/Reference/Core/Open.md +++ b/docs/Reference/Core/Open.md @@ -2,6 +2,7 @@ title: Open parent: Statements permalink: /tB/Core/Open +vba_attribution: true --- # Open {: .no_toc } @@ -114,5 +115,3 @@ Close #1 - [**Lock** / **Unlock** statements](Lock) - [**FreeFile** function](../Modules/FileSystem/FreeFile) - [**TextEncodingConstants** module](../Modules/TextEncodingConstants/) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Option.md b/docs/Reference/Core/Option.md index 5dd6a168..53f47b31 100644 --- a/docs/Reference/Core/Option.md +++ b/docs/Reference/Core/Option.md @@ -2,6 +2,7 @@ title: Option parent: Statements permalink: /tB/Core/Option +vba_attribution: true --- # Option {: .no_toc } @@ -192,5 +193,3 @@ Module MyModule Option Private Module ' Indicates that the module is private. End Module ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Or.md b/docs/Reference/Core/Or.md index fc6756fc..bc797d91 100644 --- a/docs/Reference/Core/Or.md +++ b/docs/Reference/Core/Or.md @@ -3,6 +3,7 @@ title: Or parent: Operators grand_parent: Reference Section permalink: /tB/Core/Or +vba_attribution: true --- # Or operator {: .no_toc } @@ -64,5 +65,3 @@ MyCheck = A Or B ' Returns 10 (bitwise comparison). - [**And** operator](And) - [**Not** operator](Not) - [Operators](../../Reference/Operators) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/ParamArray.md b/docs/Reference/Core/ParamArray.md index a47d3a27..1d7efafb 100644 --- a/docs/Reference/Core/ParamArray.md +++ b/docs/Reference/Core/ParamArray.md @@ -2,6 +2,7 @@ title: ParamArray parent: Statements permalink: /tB/Core/ParamArray +vba_attribution: true --- # ParamArray {: .no_toc } @@ -67,5 +68,3 @@ Debug.Print Concat(", ", "one", "two", "three") ' "one, two, three" - [**Function** statement](Function) - [**Property** statement](Property) - [**Call** statement](Call) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Print.md b/docs/Reference/Core/Print.md index 4a35050c..53d67867 100644 --- a/docs/Reference/Core/Print.md +++ b/docs/Reference/Core/Print.md @@ -2,6 +2,7 @@ title: Print # parent: Statements permalink: /tB/Core/Print +vba_attribution: true --- # Print # statement {: .no_toc } @@ -89,5 +90,3 @@ Close #1 ' Close file. - [**Write #** statement](Write) - [**Input #** statement](Input) - [**Line Input #** statement](Line-Input) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Private.md b/docs/Reference/Core/Private.md index 3e0a1e08..5418f0de 100644 --- a/docs/Reference/Core/Private.md +++ b/docs/Reference/Core/Private.md @@ -2,6 +2,7 @@ title: Private parent: Statements permalink: /tB/Core/Private +vba_attribution: true --- # Private {: .no_toc } @@ -70,5 +71,3 @@ Private MyVar, YourVar, ThisVar As Integer - [**Public** statement](Public) - [**Static** statement](Static) - [**ReDim** statement](ReDim) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Property.md b/docs/Reference/Core/Property.md index 6c611761..76d7fc83 100644 --- a/docs/Reference/Core/Property.md +++ b/docs/Reference/Core/Property.md @@ -2,6 +2,7 @@ title: Property parent: Statements permalink: /tB/Core/Property +vba_attribution: true --- # Property {: .no_toc } @@ -196,5 +197,3 @@ End Property - [Handler Method Syntax](../../Features/Language/Handlers) - [Inheritance](../../Features/Language/Inheritance) - [Generics](../../Features/Language/Generics) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Public.md b/docs/Reference/Core/Public.md index b209bd7f..b560a037 100644 --- a/docs/Reference/Core/Public.md +++ b/docs/Reference/Core/Public.md @@ -2,6 +2,7 @@ title: Public parent: Statements permalink: /tB/Core/Public +vba_attribution: true --- # Public {: .no_toc } @@ -70,5 +71,3 @@ Public MyVar, YourVar, ThisVar As Integer - [**Static** statement](Static) - [**Option** statement](Option) - [**ReDim** statement](ReDim) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Put.md b/docs/Reference/Core/Put.md index 476a2d05..db353557 100644 --- a/docs/Reference/Core/Put.md +++ b/docs/Reference/Core/Put.md @@ -2,6 +2,7 @@ title: Put parent: Statements permalink: /tB/Core/Put +vba_attribution: true --- # Put {: .no_toc } @@ -95,5 +96,3 @@ Close #1 ' Close file. - [**Close** statement](Close) - [**Get** statement](Get) - [**Seek** function](../Modules/FileSystem/Seek) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/RSet.md b/docs/Reference/Core/RSet.md index fde0cdaa..a4ece015 100644 --- a/docs/Reference/Core/RSet.md +++ b/docs/Reference/Core/RSet.md @@ -2,6 +2,7 @@ title: RSet parent: Statements permalink: /tB/Core/RSet +vba_attribution: true --- # RSet {: .no_toc } @@ -37,5 +38,3 @@ RSet MyString = "Right->" ' MyString contains " Right->". - [**LSet** statement](LSet) - [**Mid =** statement](Mid-equals) - [**Let** statement](Let) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/RaiseEvent.md b/docs/Reference/Core/RaiseEvent.md index 7cdd7b73..c9e434f8 100644 --- a/docs/Reference/Core/RaiseEvent.md +++ b/docs/Reference/Core/RaiseEvent.md @@ -2,6 +2,7 @@ title: RaiseEvent parent: Statements permalink: /tB/Core/RaiseEvent +vba_attribution: true --- # RaiseEvent {: .no_toc } @@ -94,5 +95,3 @@ End Class - [**Event** statement](Event) - [**Class** statement](Class) - [**Implements** statement](Implements) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/ReDim.md b/docs/Reference/Core/ReDim.md index ad2c4711..752733b3 100644 --- a/docs/Reference/Core/ReDim.md +++ b/docs/Reference/Core/ReDim.md @@ -2,6 +2,7 @@ title: ReDim parent: Statements permalink: /tB/Core/ReDim +vba_attribution: true --- # ReDim {: .no_toc } @@ -85,5 +86,3 @@ ReDim Preserve MyArray(15) ' Resize to 15 elements. - [**Public** statement](Public) - [**Static** statement](Static) - [**Erase** statement](Erase) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Resume.md b/docs/Reference/Core/Resume.md index bea3a1b8..03e16770 100644 --- a/docs/Reference/Core/Resume.md +++ b/docs/Reference/Core/Resume.md @@ -2,6 +2,7 @@ title: Resume parent: Statements permalink: /tB/Core/Resume +vba_attribution: true --- # Resume {: .no_toc } @@ -50,5 +51,3 @@ End Sub - [**On Error** statement](On-Error) - [**Error** statement](Error) - [**GoTo** statement](GoTo) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Return.md b/docs/Reference/Core/Return.md index 479c5a40..484661e0 100644 --- a/docs/Reference/Core/Return.md +++ b/docs/Reference/Core/Return.md @@ -2,6 +2,7 @@ title: Return parent: Statements permalink: /tB/Core/Return +vba_attribution: true --- # Return {: .no_toc } @@ -66,5 +67,3 @@ End Sub - [**Sub** statement](Sub) - [**Function** statement](Function) - [**Property** statement](Property) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Select-Case.md b/docs/Reference/Core/Select-Case.md index 93a4ef60..d57f1f17 100644 --- a/docs/Reference/Core/Select-Case.md +++ b/docs/Reference/Core/Select-Case.md @@ -2,6 +2,7 @@ title: Select Case parent: Statements permalink: /tB/Core/Select-Case +vba_attribution: true --- # Select Case @@ -82,5 +83,3 @@ End Select - [**If...Then...Else** statement](If-Then-Else) - [**Do...Loop** statement](Do-Loop) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Set.md b/docs/Reference/Core/Set.md index 8fd064a9..2d1c4952 100644 --- a/docs/Reference/Core/Set.md +++ b/docs/Reference/Core/Set.md @@ -2,6 +2,7 @@ title: Set parent: Statements permalink: /tB/Core/Set +vba_attribution: true --- # Set {: .no_toc } @@ -60,5 +61,3 @@ Set MyObject = Nothing ' Release the object. - [**New** keyword](New) - [**Dim** statement](Dim) - [**Property** statement](Property) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Static.md b/docs/Reference/Core/Static.md index d74f1516..c6597779 100644 --- a/docs/Reference/Core/Static.md +++ b/docs/Reference/Core/Static.md @@ -2,6 +2,7 @@ title: Static parent: Statements permalink: /tB/Core/Static +vba_attribution: true --- # Static {: .no_toc } @@ -80,5 +81,3 @@ End Function - [**Public** statement](Public) - [**Sub** statement](Sub) - [**Function** statement](Function) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Stop.md b/docs/Reference/Core/Stop.md index 9d4f1951..7c5c39b3 100644 --- a/docs/Reference/Core/Stop.md +++ b/docs/Reference/Core/Stop.md @@ -2,6 +2,7 @@ title: Stop parent: Statements permalink: /tB/Core/Stop +vba_attribution: true --- # Stop @@ -32,5 +33,3 @@ Next i ### See Also - [**End** statement](End) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Sub.md b/docs/Reference/Core/Sub.md index 3793c2ea..ad828a65 100644 --- a/docs/Reference/Core/Sub.md +++ b/docs/Reference/Core/Sub.md @@ -2,6 +2,7 @@ title: Sub parent: Statements permalink: /tB/Core/Sub +vba_attribution: true --- # Sub {: .no_toc } @@ -142,5 +143,3 @@ End Sub - [Handler Method Syntax](../../Features/Language/Handlers) - [Inheritance](../../Features/Language/Inheritance) - [Generics](../../Features/Language/Generics) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Topic-Preprocessor.md b/docs/Reference/Core/Topic-Preprocessor.md index f923b701..2ac7d452 100644 --- a/docs/Reference/Core/Topic-Preprocessor.md +++ b/docs/Reference/Core/Topic-Preprocessor.md @@ -2,6 +2,7 @@ title: '#If, #Const' parent: Statements permalink: /tB/Core/Topic-Preprocessor +vba_attribution: true --- # #If...Then...#Else, #Const directives {: .no_toc } @@ -83,5 +84,3 @@ End Sub - [**If...Then...Else** statement](If-Then-Else) — the runtime counterpart. - [**Const** statement](Const) — the runtime counterpart of **#Const**. - [Compiler Constants](../../Reference/Compiler-Constants) — the full list of built-in conditional constants. - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Type.md b/docs/Reference/Core/Type.md index abc938dc..912fa627 100644 --- a/docs/Reference/Core/Type.md +++ b/docs/Reference/Core/Type.md @@ -2,6 +2,7 @@ title: Type parent: Statements permalink: /tB/Core/Type +vba_attribution: true --- # Type {: .no_toc } @@ -145,5 +146,3 @@ End Type - [**Class** statement](Class) - [UDT Enhancements](../../Features/Language/UDTs) - [Generics](../../Features/Language/Generics) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Unload.md b/docs/Reference/Core/Unload.md index c37115e3..ae1f8800 100644 --- a/docs/Reference/Core/Unload.md +++ b/docs/Reference/Core/Unload.md @@ -2,6 +2,7 @@ title: Unload parent: Statements permalink: /tB/Core/Unload +vba_attribution: true --- # Unload {: .no_toc } @@ -41,5 +42,3 @@ End Sub ### See Also - [**Load** statement](Load) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Unlock.md b/docs/Reference/Core/Unlock.md index 932c0f10..6002935d 100644 --- a/docs/Reference/Core/Unlock.md +++ b/docs/Reference/Core/Unlock.md @@ -2,6 +2,7 @@ title: Unlock parent: Statements permalink: /tB/Core/Unlock +vba_attribution: true --- # Unlock {: .no_toc } @@ -23,5 +24,3 @@ The arguments to **Unlock** must match exactly the arguments of the correspondin - [**Lock** statement](Lock) - [**Open** statement](Open) - [**Close** statement](Close) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/While-Wend.md b/docs/Reference/Core/While-Wend.md index 3e0cb8cb..209898d9 100644 --- a/docs/Reference/Core/While-Wend.md +++ b/docs/Reference/Core/While-Wend.md @@ -2,6 +2,7 @@ title: While...Wend parent: Statements permalink: /tB/Core/While-Wend +vba_attribution: true --- # While...Wend @@ -52,5 +53,3 @@ Debug.Print Counter ' Prints 20 in the Immediate window. - [**Do...Loop** statement](Do-Loop) - [**For...Next** statement](For-Next) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/With.md b/docs/Reference/Core/With.md index cf7b851f..29f7f74b 100644 --- a/docs/Reference/Core/With.md +++ b/docs/Reference/Core/With.md @@ -2,6 +2,7 @@ title: With parent: Statements permalink: /tB/Core/With +vba_attribution: true --- # With @@ -55,5 +56,3 @@ With MyObject End With End With ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Core/Write.md b/docs/Reference/Core/Write.md index c8f41190..625927b0 100644 --- a/docs/Reference/Core/Write.md +++ b/docs/Reference/Core/Write.md @@ -2,6 +2,7 @@ title: Write # parent: Statements permalink: /tB/Core/Write +vba_attribution: true --- # Write # statement {: .no_toc } @@ -65,5 +66,3 @@ Close #1 ' Close file. - [**Input #** statement](Input) - [**Line Input #** statement](Line-Input) - [**Print #** statement](Print) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/Glossary.md b/docs/Reference/Glossary.md index 7171ae2b..04eb25a1 100644 --- a/docs/Reference/Glossary.md +++ b/docs/Reference/Glossary.md @@ -3,6 +3,7 @@ title: Glossary parent: Reference Section nav_order: 99 permalink: /tB/Gloss +vba_attribution: true --- > [!WARNING] @@ -86,6 +87,4 @@ Any data type defined using the **Type** statement. User-defined data types can A named storage location that can contain data that can be modified during program execution. Each variable has a name that uniquely identifies it within its scope. A data type can be specified or not. -Variable names must begin with an alphabetic character, must be unique within the same scope, can't be longer than 255 characters, and can't contain an embedded period or type-declaration character. - -{% include VBA-Attribution.md %} \ No newline at end of file +Variable names must begin with an alphabetic character, must be unique within the same scope, can't be longer than 255 characters, and can't contain an embedded period or type-declaration character. \ No newline at end of file diff --git a/docs/Reference/VB/CheckBox/index.md b/docs/Reference/VB/CheckBox/index.md index 17f2aafc..e9a607ce 100644 --- a/docs/Reference/VB/CheckBox/index.md +++ b/docs/Reference/VB/CheckBox/index.md @@ -3,6 +3,7 @@ title: CheckBox parent: VB Package permalink: /tB/Packages/VB/CheckBox/ has_toc: false +vba_attribution: true --- # CheckBox class @@ -492,5 +493,3 @@ Syntax: *object*\_**OLEStartDrag**( *Data* **As DataObject**, *AllowedEffects* * Raised when the focus is moving to another control whose [**CausesValidation**](#causesvalidation) is **True**. Setting *Cancel* to **True** keeps the focus on this control. Syntax: *object*\_**Validate**( *Cancel* **As Boolean** ) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Collection/Add.md b/docs/Reference/VBA/Collection/Add.md index 25225023..d7d44c25 100644 --- a/docs/Reference/VBA/Collection/Add.md +++ b/docs/Reference/VBA/Collection/Add.md @@ -2,6 +2,7 @@ title: Add parent: Collection Module permalink: /tB/Modules/Collection/Add +vba_attribution: true --- # Add {: .no_toc } @@ -67,5 +68,3 @@ Next - [Item](Item) method - [Remove](Remove) method - [Exists](Exists) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Collection/Clear.md b/docs/Reference/VBA/Collection/Clear.md index 94dff658..16f25c0b 100644 --- a/docs/Reference/VBA/Collection/Clear.md +++ b/docs/Reference/VBA/Collection/Clear.md @@ -2,6 +2,7 @@ title: Clear parent: Collection Module permalink: /tB/Modules/Collection/Clear +vba_attribution: true --- # Clear {: .no_toc } @@ -36,5 +37,3 @@ Debug.Print MyClasses.Count ' Prints 0. - [Count](Count) property - [Remove](Remove) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Collection/Count.md b/docs/Reference/VBA/Collection/Count.md index fe733fb3..d64e61ec 100644 --- a/docs/Reference/VBA/Collection/Count.md +++ b/docs/Reference/VBA/Collection/Count.md @@ -2,6 +2,7 @@ title: Count parent: Collection Module permalink: /tB/Modules/Collection/Count +vba_attribution: true --- # Count {: .no_toc } @@ -33,5 +34,3 @@ Next - [Item](Item) method - [Remove](Remove) method - [Clear](Clear) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Collection/Exists.md b/docs/Reference/VBA/Collection/Exists.md index 68c1c47f..c727ab36 100644 --- a/docs/Reference/VBA/Collection/Exists.md +++ b/docs/Reference/VBA/Collection/Exists.md @@ -2,6 +2,7 @@ title: Exists parent: Collection Module permalink: /tB/Modules/Collection/Exists +vba_attribution: true --- # Exists {: .no_toc } @@ -44,5 +45,3 @@ End If - [Item](Item) method - [Keys](Keys) method - [KeyCompareMode](KeyCompareMode) property - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Collection/Item.md b/docs/Reference/VBA/Collection/Item.md index 59482225..cd021337 100644 --- a/docs/Reference/VBA/Collection/Item.md +++ b/docs/Reference/VBA/Collection/Item.md @@ -2,6 +2,7 @@ title: Item parent: Collection Module permalink: /tB/Modules/Collection/Item +vba_attribution: true --- # Item {: .no_toc } @@ -49,5 +50,3 @@ Set SmithAdamBD = Birthdays("SmithAdam") - [Exists](Exists) method - [Items](Items) method - [Remove](Remove) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Collection/Items.md b/docs/Reference/VBA/Collection/Items.md index 9684c70f..1da9e982 100644 --- a/docs/Reference/VBA/Collection/Items.md +++ b/docs/Reference/VBA/Collection/Items.md @@ -2,6 +2,7 @@ title: Items parent: Collection Module permalink: /tB/Modules/Collection/Items +vba_attribution: true --- # Items {: .no_toc } @@ -44,5 +45,3 @@ Next i - [Keys](Keys) method - [Count](Count) property - [Add](Add) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Collection/KeyCompareMode.md b/docs/Reference/VBA/Collection/KeyCompareMode.md index 022d6ff6..f3ab6559 100644 --- a/docs/Reference/VBA/Collection/KeyCompareMode.md +++ b/docs/Reference/VBA/Collection/KeyCompareMode.md @@ -2,6 +2,7 @@ title: KeyCompareMode parent: Collection Module permalink: /tB/Modules/Collection/KeyCompareMode +vba_attribution: true --- # KeyCompareMode {: .no_toc } @@ -53,5 +54,3 @@ col2.Add "first", Key:="A" - [KeyCountHint](KeyCountHint) property - [StrComp](../Strings/StrComp) function - [Option Compare](../../Core/Option) statement - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Collection/KeyCountHint.md b/docs/Reference/VBA/Collection/KeyCountHint.md index 59473e2c..67124b5d 100644 --- a/docs/Reference/VBA/Collection/KeyCountHint.md +++ b/docs/Reference/VBA/Collection/KeyCountHint.md @@ -2,6 +2,7 @@ title: KeyCountHint parent: Collection Module permalink: /tB/Modules/Collection/KeyCountHint +vba_attribution: true --- # KeyCountHint {: .no_toc } @@ -43,5 +44,3 @@ Next - [Add](Add) method - [Exists](Exists) method - [KeyCompareMode](KeyCompareMode) property - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Collection/Keys.md b/docs/Reference/VBA/Collection/Keys.md index 1fced1fd..751344b9 100644 --- a/docs/Reference/VBA/Collection/Keys.md +++ b/docs/Reference/VBA/Collection/Keys.md @@ -2,6 +2,7 @@ title: Keys parent: Collection Module permalink: /tB/Modules/Collection/Keys +vba_attribution: true --- # Keys {: .no_toc } @@ -43,5 +44,3 @@ Next i - [Item](Item) method - [Items](Items) method - [Count](Count) property - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Collection/Remove.md b/docs/Reference/VBA/Collection/Remove.md index 93fe5beb..04480a31 100644 --- a/docs/Reference/VBA/Collection/Remove.md +++ b/docs/Reference/VBA/Collection/Remove.md @@ -2,6 +2,7 @@ title: Remove parent: Collection Module permalink: /tB/Modules/Collection/Remove +vba_attribution: true --- # Remove {: .no_toc } @@ -45,5 +46,3 @@ To clear a collection in a single call, use the [**Clear**](Clear) method instea - [Clear](Clear) method - [Count](Count) property - [Item](Item) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbAppWinStyle.md b/docs/Reference/VBA/Constants/VbAppWinStyle.md index deafdd72..628c6d29 100644 --- a/docs/Reference/VBA/Constants/VbAppWinStyle.md +++ b/docs/Reference/VBA/Constants/VbAppWinStyle.md @@ -10,6 +10,7 @@ redirect_from: - /tB/Core/vbMaximizedFocus - /tB/Core/vbNormalNoFocus - /tB/Core/vbMinimizedNoFocus +vba_attribution: true --- # VbAppWinStyle {: .no_toc } @@ -28,5 +29,3 @@ Window style values for the *windowstyle* argument of the [**Shell**](../Interac ### See Also - [Shell](../Interaction/Shell) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbCalendar.md b/docs/Reference/VBA/Constants/VbCalendar.md index d5c51bb7..00c12c16 100644 --- a/docs/Reference/VBA/Constants/VbCalendar.md +++ b/docs/Reference/VBA/Constants/VbCalendar.md @@ -6,6 +6,7 @@ redirect_from: - /tB/Core/VbCalendar - /tB/Core/vbCalGreg - /tB/Core/vbCalHijri +vba_attribution: true --- # VbCalendar {: .no_toc } @@ -20,5 +21,3 @@ Calendar type values used by the [**Calendar**](../DateTime/Calendar) property. ### See Also - [Calendar](../DateTime/Calendar) property - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbCallType.md b/docs/Reference/VBA/Constants/VbCallType.md index 1e5e358f..f5bd6b62 100644 --- a/docs/Reference/VBA/Constants/VbCallType.md +++ b/docs/Reference/VBA/Constants/VbCallType.md @@ -8,6 +8,7 @@ redirect_from: - /tB/Core/vbGet - /tB/Core/vbLet - /tB/Core/vbSet +vba_attribution: true --- # VbCallType {: .no_toc } @@ -20,5 +21,3 @@ Procedure call types used by the *calltype* argument of the **CallByName** funct | **vbGet**{: #vbGet } | 2 | A **Property Get** procedure. | | **vbLet**{: #vbLet } | 4 | A **Property Let** procedure. | | **vbSet**{: #vbSet } | 8 | A **Property Set** procedure. | - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbCompareMethod.md b/docs/Reference/VBA/Constants/VbCompareMethod.md index 5c9ff25c..df9a4ce4 100644 --- a/docs/Reference/VBA/Constants/VbCompareMethod.md +++ b/docs/Reference/VBA/Constants/VbCompareMethod.md @@ -7,6 +7,7 @@ redirect_from: - /tB/Core/vbBinaryCompare - /tB/Core/vbTextCompare - /tB/Core/vbDatabaseCompare +vba_attribution: true --- # VbCompareMethod {: .no_toc } @@ -18,5 +19,3 @@ Text comparison modes used by string functions such as [**InStr**](../Strings/In | **vbBinaryCompare**{: #vbBinaryCompare } | 0 | Performs a binary comparison. | | **vbTextCompare**{: #vbTextCompare } | 1 | Performs a textual comparison. | | **vbDatabaseCompare**{: #vbDatabaseCompare } | 2 | For Microsoft Access (Windows only), performs a comparison based on information contained in the database. | - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbDateTimeFormat.md b/docs/Reference/VBA/Constants/VbDateTimeFormat.md index f99f9295..f4cc0803 100644 --- a/docs/Reference/VBA/Constants/VbDateTimeFormat.md +++ b/docs/Reference/VBA/Constants/VbDateTimeFormat.md @@ -9,6 +9,7 @@ redirect_from: - /tB/Core/vbShortDate - /tB/Core/vbLongTime - /tB/Core/vbShortTime +vba_attribution: true --- # VbDateTimeFormat {: .no_toc } @@ -26,5 +27,3 @@ Format codes for the [**FormatDateTime**](../Strings/FormatDateTime) function. ### See Also - [FormatDateTime](../Strings/FormatDateTime) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbDayOfWeek.md b/docs/Reference/VBA/Constants/VbDayOfWeek.md index 86817160..f908f0f2 100644 --- a/docs/Reference/VBA/Constants/VbDayOfWeek.md +++ b/docs/Reference/VBA/Constants/VbDayOfWeek.md @@ -12,6 +12,7 @@ redirect_from: - /tB/Core/vbThursday - /tB/Core/vbFriday - /tB/Core/vbSaturday +vba_attribution: true --- # VbDayOfWeek {: .no_toc } @@ -28,5 +29,3 @@ Day-of-week constants used as the *firstdayofweek* argument and the return value | **vbThursday**{: #vbThursday } | 5 | Thursday. | | **vbFriday**{: #vbFriday } | 6 | Friday. | | **vbSaturday**{: #vbSaturday } | 7 | Saturday. | - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbFileAttribute.md b/docs/Reference/VBA/Constants/VbFileAttribute.md index 29bbbbf7..564e6467 100644 --- a/docs/Reference/VBA/Constants/VbFileAttribute.md +++ b/docs/Reference/VBA/Constants/VbFileAttribute.md @@ -12,6 +12,7 @@ redirect_from: - /tB/Core/vbDirectory - /tB/Core/vbArchive - /tB/Core/vbAlias +vba_attribution: true --- # VbFileAttribute {: .no_toc } @@ -32,5 +33,3 @@ Attribute flags for files and directories used by [**Dir**](../FileSystem/Dir), ### See Also - [Dir](../FileSystem/Dir), [GetAttr](../FileSystem/GetAttr), [SetAttr](../FileSystem/SetAttr) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbFirstWeekOfYear.md b/docs/Reference/VBA/Constants/VbFirstWeekOfYear.md index e7fb6031..1e22f84d 100644 --- a/docs/Reference/VBA/Constants/VbFirstWeekOfYear.md +++ b/docs/Reference/VBA/Constants/VbFirstWeekOfYear.md @@ -8,6 +8,7 @@ redirect_from: - /tB/Core/vbFirstJan1 - /tB/Core/vbFirstFourDays - /tB/Core/vbFirstFullWeek +vba_attribution: true --- # VbFirstWeekOfYear {: .no_toc } @@ -20,5 +21,3 @@ First-week-of-year selectors used as the *firstweekofyear* argument of date func | **vbFirstJan1**{: #vbFirstJan1 } | 1 | Start with the week in which January 1 occurs (default). | | **vbFirstFourDays**{: #vbFirstFourDays } | 2 | Start with the first week that has at least four days in the new year. | | **vbFirstFullWeek**{: #vbFirstFullWeek } | 3 | Start with the first full week of the year. | - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbIMEStatus.md b/docs/Reference/VBA/Constants/VbIMEStatus.md index 384a82a5..ccda28a7 100644 --- a/docs/Reference/VBA/Constants/VbIMEStatus.md +++ b/docs/Reference/VBA/Constants/VbIMEStatus.md @@ -24,6 +24,7 @@ redirect_from: - /tB/Core/vbIMEModeAlpha - /tB/Core/vbIMEModeHangulFull - /tB/Core/vbIMEModeHangul +vba_attribution: true --- # VbIMEStatus {: .no_toc } @@ -45,5 +46,3 @@ The constants applicable to a given mode depend on the system locale. Values 4 | **vbIMEAlphaSng**{: #vbIMEAlphaSng } / **vbIMEModeAlpha**{: #vbIMEModeAlpha } | 8 | Half-width Alphanumeric mode. | | **vbIMEModeHangulFull**{: #vbIMEModeHangulFull } | 9 | Full-width Hangul mode. | | **vbIMEModeHangul**{: #vbIMEModeHangul } | 10 | Half-width Hangul mode. | - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbMsgBoxResult.md b/docs/Reference/VBA/Constants/VbMsgBoxResult.md index 47b6a172..630e3ac3 100644 --- a/docs/Reference/VBA/Constants/VbMsgBoxResult.md +++ b/docs/Reference/VBA/Constants/VbMsgBoxResult.md @@ -13,6 +13,7 @@ redirect_from: - /tB/Core/vbNo - /tB/Core/vbTryAgain - /tB/Core/vbContinue +vba_attribution: true --- # VbMsgBoxResult {: .no_toc } @@ -34,5 +35,3 @@ Identifies the button that was pressed to close a **MsgBox** dialog. ### See Also - [VbMsgBoxStyle](VbMsgBoxStyle) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbMsgBoxStyle.md b/docs/Reference/VBA/Constants/VbMsgBoxStyle.md index fdc48905..c57f7d08 100644 --- a/docs/Reference/VBA/Constants/VbMsgBoxStyle.md +++ b/docs/Reference/VBA/Constants/VbMsgBoxStyle.md @@ -25,6 +25,7 @@ redirect_from: - /tB/Core/vbMsgBoxSetForeground - /tB/Core/vbMsgBoxRight - /tB/Core/vbMsgBoxRtlReading +vba_attribution: true --- # VbMsgBoxStyle {: .no_toc } @@ -80,5 +81,3 @@ Buttons, icons, default-button, modality, and other behaviour flags for the **Ms ### See Also - [VbMsgBoxResult](VbMsgBoxResult) - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbStrConv.md b/docs/Reference/VBA/Constants/VbStrConv.md index 2c808082..7105b2fb 100644 --- a/docs/Reference/VBA/Constants/VbStrConv.md +++ b/docs/Reference/VBA/Constants/VbStrConv.md @@ -15,6 +15,7 @@ redirect_from: - /tB/Core/vbFromUnicode - /tB/Core/vbUTF8 - /tB/Core/vbFromUTF8 +vba_attribution: true --- # VbStrConv {: .no_toc } @@ -38,5 +39,3 @@ Conversion type flags for the [**StrConv**](../Strings/StrConv) function. Compat ### See Also - [StrConv](../Strings/StrConv) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbTriState.md b/docs/Reference/VBA/Constants/VbTriState.md index 723c5a02..ca7921a8 100644 --- a/docs/Reference/VBA/Constants/VbTriState.md +++ b/docs/Reference/VBA/Constants/VbTriState.md @@ -7,6 +7,7 @@ redirect_from: - /tB/Core/vbTrue - /tB/Core/vbFalse - /tB/Core/vbUseDefault +vba_attribution: true --- # VbTriState {: .no_toc } @@ -18,5 +19,3 @@ Three-state values used in place of **Boolean** arguments where a "use default" | **vbTrue**{: #vbTrue } | -1 | True. | | **vbFalse**{: #vbFalse } | 0 | False. | | **vbUseDefault**{: #vbUseDefault } | -2 | Use the system default setting. | - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Constants/VbVarType.md b/docs/Reference/VBA/Constants/VbVarType.md index 737849ed..5072a765 100644 --- a/docs/Reference/VBA/Constants/VbVarType.md +++ b/docs/Reference/VBA/Constants/VbVarType.md @@ -23,6 +23,7 @@ redirect_from: - /tB/Core/vbLongLong - /tB/Core/vbUserDefinedType - /tB/Core/vbArray +vba_attribution: true --- # VbVarType {: .no_toc } @@ -50,5 +51,3 @@ Variant subtype codes returned by the **VarType** function. Most calls return a | **vbLongLong**{: #vbLongLong } | 20 | **LongLong** integer (64-bit only). | | **vbUserDefinedType**{: #vbUserDefinedType } | 36 | **Variant** containing a user-defined type. | | **vbArray**{: #vbArray } | 8192 | Array. Always added to another value when returned. | - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CBool.md b/docs/Reference/VBA/Conversion/CBool.md index 128893c1..6bb4291c 100644 --- a/docs/Reference/VBA/Conversion/CBool.md +++ b/docs/Reference/VBA/Conversion/CBool.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CBool redirect_from: - /tB/Core/CBool +vba_attribution: true --- # CBool {: .no_toc } @@ -37,5 +38,3 @@ Check = CBool(A) ' Check contains False. ### See Also - [CByte](CByte), [CInt](CInt), [CLng](CLng), [CDbl](CDbl), [CSng](CSng), [CStr](CStr), [CVar](CVar) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CByte.md b/docs/Reference/VBA/Conversion/CByte.md index 5584d08a..8d2123e1 100644 --- a/docs/Reference/VBA/Conversion/CByte.md +++ b/docs/Reference/VBA/Conversion/CByte.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CByte redirect_from: - /tB/Core/CByte +vba_attribution: true --- # CByte {: .no_toc } @@ -30,5 +31,3 @@ MyByte = CByte(MyDouble) ' MyByte contains 126. ### See Also - [CBool](CBool), [CInt](CInt), [CLng](CLng), [CDbl](CDbl), [CSng](CSng), [CStr](CStr), [CVar](CVar) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CCur.md b/docs/Reference/VBA/Conversion/CCur.md index 256695ef..68f7cc8c 100644 --- a/docs/Reference/VBA/Conversion/CCur.md +++ b/docs/Reference/VBA/Conversion/CCur.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CCur redirect_from: - /tB/Core/CCur +vba_attribution: true --- # CCur {: .no_toc } @@ -36,5 +37,3 @@ MyCurr = CCur(MyDouble * 2) ' Convert result of MyDouble * 2 ### See Also - [CBool](CBool), [CByte](CByte), [CDbl](CDbl), [CDec](CDec), [CSng](CSng), [CStr](CStr), [CVar](CVar) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CDate.md b/docs/Reference/VBA/Conversion/CDate.md index 163fd2b8..021c7153 100644 --- a/docs/Reference/VBA/Conversion/CDate.md +++ b/docs/Reference/VBA/Conversion/CDate.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CDate redirect_from: - /tB/Core/CDate +vba_attribution: true --- # CDate {: .no_toc } @@ -39,5 +40,3 @@ MyShortTime = CDate(MyTime) ' Convert to Date data type. ### See Also - [CVDate](CVDate), [DateValue](../DateTime/DateValue), [TimeValue](../DateTime/TimeValue) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CDbl.md b/docs/Reference/VBA/Conversion/CDbl.md index 5d8c632f..c2b388a1 100644 --- a/docs/Reference/VBA/Conversion/CDbl.md +++ b/docs/Reference/VBA/Conversion/CDbl.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CDbl redirect_from: - /tB/Core/CDbl +vba_attribution: true --- # CDbl {: .no_toc } @@ -32,5 +33,3 @@ MyDouble = CDbl(MyCurr * 8.2 * 0.01) ' Convert result to a Double. ### See Also - [CCur](CCur), [CDec](CDec), [CInt](CInt), [CLng](CLng), [CSng](CSng), [CStr](CStr), [CVar](CVar) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CDec.md b/docs/Reference/VBA/Conversion/CDec.md index fc21cd4f..b23acab6 100644 --- a/docs/Reference/VBA/Conversion/CDec.md +++ b/docs/Reference/VBA/Conversion/CDec.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CDec redirect_from: - /tB/Core/CDec +vba_attribution: true --- # CDec {: .no_toc } @@ -35,5 +36,3 @@ MyDecimal = CDec(MyCurr) ' MyDecimal is a Decimal. ### See Also - [CCur](CCur), [CDbl](CDbl), [CSng](CSng), [ValDec](ValDec) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CInt.md b/docs/Reference/VBA/Conversion/CInt.md index 4dcb0ea7..ee719c7b 100644 --- a/docs/Reference/VBA/Conversion/CInt.md +++ b/docs/Reference/VBA/Conversion/CInt.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CInt redirect_from: - /tB/Core/CInt +vba_attribution: true --- # CInt {: .no_toc } @@ -35,5 +36,3 @@ MyInt = CInt(MyDouble) ' MyInt contains 2346. - [CBool](CBool), [CByte](CByte), [CLng](CLng), [CLngLng](CLngLng), [CSng](CSng), [CStr](CStr), [CVar](CVar) functions - [Fix](Fix), [Int](Int) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CLng.md b/docs/Reference/VBA/Conversion/CLng.md index 888184a2..12e890b6 100644 --- a/docs/Reference/VBA/Conversion/CLng.md +++ b/docs/Reference/VBA/Conversion/CLng.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CLng redirect_from: - /tB/Core/CLng +vba_attribution: true --- # CLng {: .no_toc } @@ -34,5 +35,3 @@ MyLong2 = CLng(MyVal2) ' MyLong2 contains 25428. - [CBool](CBool), [CByte](CByte), [CInt](CInt), [CLngLng](CLngLng), [CLngPtr](CLngPtr), [CSng](CSng), [CStr](CStr), [CVar](CVar) functions - [Fix](Fix), [Int](Int) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CLngLng.md b/docs/Reference/VBA/Conversion/CLngLng.md index 97c5545d..6c9f297d 100644 --- a/docs/Reference/VBA/Conversion/CLngLng.md +++ b/docs/Reference/VBA/Conversion/CLngLng.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CLngLng redirect_from: - /tB/Core/CLngLng +vba_attribution: true --- # CLngLng {: .no_toc } @@ -40,5 +41,3 @@ MsgBox "The LongLong representation is: " & longLongValue ### See Also - [CBool](CBool), [CByte](CByte), [CInt](CInt), [CLng](CLng), [CLngPtr](CLngPtr), [CSng](CSng), [CStr](CStr), [CVar](CVar) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CLngPtr.md b/docs/Reference/VBA/Conversion/CLngPtr.md index df9272f4..82c4fc51 100644 --- a/docs/Reference/VBA/Conversion/CLngPtr.md +++ b/docs/Reference/VBA/Conversion/CLngPtr.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CLngPtr redirect_from: - /tB/Core/CLngPtr +vba_attribution: true --- # CLngPtr {: .no_toc } @@ -34,5 +35,3 @@ MsgBox "LongPtr value of " & num & " is " & CLngPtr(num) ### See Also - [CBool](CBool), [CByte](CByte), [CInt](CInt), [CLng](CLng), [CLngLng](CLngLng), [CSng](CSng), [CStr](CStr), [CVar](CVar) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CSng.md b/docs/Reference/VBA/Conversion/CSng.md index 899a10a9..f7386ede 100644 --- a/docs/Reference/VBA/Conversion/CSng.md +++ b/docs/Reference/VBA/Conversion/CSng.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CSng redirect_from: - /tB/Core/CSng +vba_attribution: true --- # CSng {: .no_toc } @@ -34,5 +35,3 @@ MySingle2 = CSng(MyDouble2) ' MySingle2 contains 75.34216. ### See Also - [CBool](CBool), [CByte](CByte), [CCur](CCur), [CDbl](CDbl), [CDec](CDec), [CInt](CInt), [CLng](CLng), [CStr](CStr), [CVar](CVar) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CStr.md b/docs/Reference/VBA/Conversion/CStr.md index 1c35a6c2..a1620a3d 100644 --- a/docs/Reference/VBA/Conversion/CStr.md +++ b/docs/Reference/VBA/Conversion/CStr.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CStr redirect_from: - /tB/Core/CStr +vba_attribution: true --- # CStr {: .no_toc } @@ -42,5 +43,3 @@ MyString = CStr(MyDouble) ' MyString contains "437.324". - [CBool](CBool), [CByte](CByte), [CCur](CCur), [CDbl](CDbl), [CInt](CInt), [CLng](CLng), [CSng](CSng), [CVar](CVar) functions - [Str](Str), [Format](../Strings/Format) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CVDate.md b/docs/Reference/VBA/Conversion/CVDate.md index e08b9599..a15ef838 100644 --- a/docs/Reference/VBA/Conversion/CVDate.md +++ b/docs/Reference/VBA/Conversion/CVDate.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CVDate redirect_from: - /tB/Core/CVDate +vba_attribution: true --- # CVDate {: .no_toc } @@ -30,5 +31,3 @@ MsgBox "Date value of " & dateString & " is " & CVDate(dateString) ### See Also - [CDate](CDate), [CVar](CVar), [CVErr](CVErr) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CVErr.md b/docs/Reference/VBA/Conversion/CVErr.md index 798c06ac..94a3fea1 100644 --- a/docs/Reference/VBA/Conversion/CVErr.md +++ b/docs/Reference/VBA/Conversion/CVErr.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CVErr redirect_from: - /tB/Core/CVErr +vba_attribution: true --- # CVErr {: .no_toc } @@ -42,5 +43,3 @@ End Function ### See Also - [Error](Error) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/CVar.md b/docs/Reference/VBA/Conversion/CVar.md index 2976226e..698a5f17 100644 --- a/docs/Reference/VBA/Conversion/CVar.md +++ b/docs/Reference/VBA/Conversion/CVar.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/CVar redirect_from: - /tB/Core/CVar +vba_attribution: true --- # CVar {: .no_toc } @@ -31,5 +32,3 @@ MyVar = CVar(MyInt & 000) ' MyVar contains the string "4534000". - [CBool](CBool), [CByte](CByte), [CCur](CCur), [CDate](CDate), [CDbl](CDbl), [CInt](CInt), [CLng](CLng), [CSng](CSng), [CStr](CStr) functions - [CVDate](CVDate), [CVErr](CVErr) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/Error.md b/docs/Reference/VBA/Conversion/Error.md index 3512b616..dc1f9e90 100644 --- a/docs/Reference/VBA/Conversion/Error.md +++ b/docs/Reference/VBA/Conversion/Error.md @@ -2,6 +2,7 @@ title: Error function parent: Conversion Module permalink: /tB/Modules/Conversion/Error +vba_attribution: true --- # Error, Error$ {: .no_toc } @@ -48,5 +49,3 @@ End Sub - [Error](../../Core/Error) statement - [CVErr](CVErr) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/Fix.md b/docs/Reference/VBA/Conversion/Fix.md index 5841c40a..a7a8308d 100644 --- a/docs/Reference/VBA/Conversion/Fix.md +++ b/docs/Reference/VBA/Conversion/Fix.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/Fix redirect_from: - /tB/Core/Fix +vba_attribution: true --- # Fix {: .no_toc } @@ -38,5 +39,3 @@ MyNumber = Fix(-99.2) ' Returns -99. ### See Also - [Int](Int), [CInt](CInt), [CLng](CLng) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/Hex.md b/docs/Reference/VBA/Conversion/Hex.md index 64b494ff..cff25513 100644 --- a/docs/Reference/VBA/Conversion/Hex.md +++ b/docs/Reference/VBA/Conversion/Hex.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/Hex redirect_from: - /tB/Core/Hex +vba_attribution: true --- # Hex, Hex$ {: .no_toc } @@ -42,5 +43,3 @@ MyHex = Hex(459) ' Returns "1CB". ### See Also - [Oct](Oct), [Str](Str) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/Int.md b/docs/Reference/VBA/Conversion/Int.md index e1697d4a..a004f078 100644 --- a/docs/Reference/VBA/Conversion/Int.md +++ b/docs/Reference/VBA/Conversion/Int.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/Int redirect_from: - /tB/Core/Int +vba_attribution: true --- # Int {: .no_toc } @@ -36,5 +37,3 @@ MyNumber = Int(-99.2) ' Returns -100. ### See Also - [Fix](Fix), [CInt](CInt), [CLng](CLng) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/MacID.md b/docs/Reference/VBA/Conversion/MacID.md index 852f4524..81e93a63 100644 --- a/docs/Reference/VBA/Conversion/MacID.md +++ b/docs/Reference/VBA/Conversion/MacID.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/MacID redirect_from: - /tB/Core/MacID +vba_attribution: true --- # MacID {: .no_toc } @@ -27,5 +28,3 @@ Dir("SomePath", MacID("TEXT")) > [!NOTE] > twinBASIC currently targets Windows. **MacID** is provided for source compatibility with VBA code originally written for the Macintosh; on Windows, the value it returns has no special meaning to the file-system or shell functions. - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/Nz.md b/docs/Reference/VBA/Conversion/Nz.md index edd64a84..02226615 100644 --- a/docs/Reference/VBA/Conversion/Nz.md +++ b/docs/Reference/VBA/Conversion/Nz.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/Nz redirect_from: - /tB/Core/Nz +vba_attribution: true --- # Nz {: .no_toc } @@ -36,5 +37,3 @@ Dim customerName As Variant customerName = recordset.Fields("Name").Value MsgBox "Customer Name: " & Nz(customerName, "Unknown") ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/Oct.md b/docs/Reference/VBA/Conversion/Oct.md index 312508d0..ecf6f442 100644 --- a/docs/Reference/VBA/Conversion/Oct.md +++ b/docs/Reference/VBA/Conversion/Oct.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/Oct redirect_from: - /tB/Core/Oct +vba_attribution: true --- # Oct, Oct$ {: .no_toc } @@ -42,5 +43,3 @@ MyOct = Oct(459) ' Returns "713". ### See Also - [Hex](Hex), [Str](Str) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/Str.md b/docs/Reference/VBA/Conversion/Str.md index c4f39fe6..f0124b14 100644 --- a/docs/Reference/VBA/Conversion/Str.md +++ b/docs/Reference/VBA/Conversion/Str.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/Str redirect_from: - /tB/Core/Str +vba_attribution: true --- # Str, Str$ {: .no_toc } @@ -41,5 +42,3 @@ MyString = Str(459.001) ' Returns " 459.001". ### See Also - [CStr](CStr), [Format](../Strings/Format), [Hex](Hex), [Oct](Oct), [Val](Val) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/Val.md b/docs/Reference/VBA/Conversion/Val.md index 2df876bc..22e82122 100644 --- a/docs/Reference/VBA/Conversion/Val.md +++ b/docs/Reference/VBA/Conversion/Val.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/Val redirect_from: - /tB/Core/Val +vba_attribution: true --- # Val {: .no_toc } @@ -53,5 +54,3 @@ MyValue = Val("24 and 57") ' Returns 24. ### See Also - [ValDec](ValDec), [CDbl](CDbl), [CDec](CDec), [Str](Str) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Conversion/ValDec.md b/docs/Reference/VBA/Conversion/ValDec.md index 80225a4b..7400669b 100644 --- a/docs/Reference/VBA/Conversion/ValDec.md +++ b/docs/Reference/VBA/Conversion/ValDec.md @@ -4,6 +4,7 @@ parent: Conversion Module permalink: /tB/Modules/Conversion/ValDec redirect_from: - /tB/Core/ValDec +vba_attribution: true --- # ValDec {: .no_toc } @@ -37,5 +38,3 @@ MyDec = ValDec("123.4567890123456789") ' Full precision retained. ### See Also - [Val](Val), [CDec](CDec), [CDbl](CDbl) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Calendar.md b/docs/Reference/VBA/DateTime/Calendar.md index 71d5b6cc..3d7c2b94 100644 --- a/docs/Reference/VBA/DateTime/Calendar.md +++ b/docs/Reference/VBA/DateTime/Calendar.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Calendar redirect_from: - /tB/Core/Calendar +vba_attribution: true --- # Calendar {: .no_toc } @@ -33,5 +34,3 @@ Calendar = vbCalHijri ### See Also - [Date](Date) property - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Date.md b/docs/Reference/VBA/DateTime/Date.md index 58807d67..64283b67 100644 --- a/docs/Reference/VBA/DateTime/Date.md +++ b/docs/Reference/VBA/DateTime/Date.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Date redirect_from: - /tB/Core/Date +vba_attribution: true --- # Date {: .no_toc } @@ -109,6 +110,4 @@ Date$ = MyDate ' Change the system date. ### See Also - [Time](Time) property -- [Format](../Strings/Format) and [Now](Now) functions - -{% include VBA-Attribution.md %} \ No newline at end of file +- [Format](../Strings/Format) and [Now](Now) functions \ No newline at end of file diff --git a/docs/Reference/VBA/DateTime/DateAdd.md b/docs/Reference/VBA/DateTime/DateAdd.md index 2394fe15..7fb3a401 100644 --- a/docs/Reference/VBA/DateTime/DateAdd.md +++ b/docs/Reference/VBA/DateTime/DateAdd.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/DateAdd redirect_from: - /tB/Core/DateAdd +vba_attribution: true --- # DateAdd {: .no_toc } @@ -74,5 +75,3 @@ MsgBox "New date: " & DateAdd(IntervalType, Number, FirstDate) ### See Also - [DateDiff](DateDiff), [DatePart](DatePart) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/DateDiff.md b/docs/Reference/VBA/DateTime/DateDiff.md index 86ad5ab5..ec6ce2d3 100644 --- a/docs/Reference/VBA/DateTime/DateDiff.md +++ b/docs/Reference/VBA/DateTime/DateDiff.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/DateDiff redirect_from: - /tB/Core/DateDiff +vba_attribution: true --- # DateDiff {: .no_toc } @@ -88,5 +89,3 @@ MsgBox Msg ### See Also - [DateAdd](DateAdd), [DatePart](DatePart) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/DatePart.md b/docs/Reference/VBA/DateTime/DatePart.md index cd034c5e..cea13951 100644 --- a/docs/Reference/VBA/DateTime/DatePart.md +++ b/docs/Reference/VBA/DateTime/DatePart.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/DatePart redirect_from: - /tB/Core/DatePart +vba_attribution: true --- # DatePart {: .no_toc } @@ -80,5 +81,3 @@ MsgBox "Quarter: " & DatePart("q", TheDate) ### See Also - [DateAdd](DateAdd), [DateDiff](DateDiff) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/DateSerial.md b/docs/Reference/VBA/DateTime/DateSerial.md index 4098e82b..00987d76 100644 --- a/docs/Reference/VBA/DateTime/DateSerial.md +++ b/docs/Reference/VBA/DateTime/DateSerial.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/DateSerial redirect_from: - /tB/Core/DateSerial +vba_attribution: true --- # DateSerial {: .no_toc } @@ -43,5 +44,3 @@ MyDate = DateSerial(1969, 2, 12) ' Returns February 12, 1969. ### See Also - [DateValue](DateValue), [Day](Day), [Month](Month), [Year](Year) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/DateValue.md b/docs/Reference/VBA/DateTime/DateValue.md index 2c78df4a..49c182ba 100644 --- a/docs/Reference/VBA/DateTime/DateValue.md +++ b/docs/Reference/VBA/DateTime/DateValue.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/DateValue redirect_from: - /tB/Core/DateValue +vba_attribution: true --- # DateValue {: .no_toc } @@ -35,5 +36,3 @@ MyDate = DateValue("February 12, 1969") ' Returns a date. ### See Also - [DateSerial](DateSerial) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Day.md b/docs/Reference/VBA/DateTime/Day.md index 3e267113..1bbad87a 100644 --- a/docs/Reference/VBA/DateTime/Day.md +++ b/docs/Reference/VBA/DateTime/Day.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Day redirect_from: - /tB/Core/Day +vba_attribution: true --- # Day {: .no_toc } @@ -31,5 +32,3 @@ MyDay = Day(MyDate) ' MyDay contains 12. ### See Also - [Month](Month), [Year](Year), [DatePart](DatePart) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Hour.md b/docs/Reference/VBA/DateTime/Hour.md index 0204e475..68dde6a7 100644 --- a/docs/Reference/VBA/DateTime/Hour.md +++ b/docs/Reference/VBA/DateTime/Hour.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Hour redirect_from: - /tB/Core/Hour +vba_attribution: true --- # Hour {: .no_toc } @@ -28,5 +29,3 @@ MyHour = Hour(MyTime) ' MyHour contains 16. ### See Also - [Minute](Minute), [Second](Second), [DatePart](DatePart) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Minute.md b/docs/Reference/VBA/DateTime/Minute.md index 5cc13b98..459e80e2 100644 --- a/docs/Reference/VBA/DateTime/Minute.md +++ b/docs/Reference/VBA/DateTime/Minute.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Minute redirect_from: - /tB/Core/Minute +vba_attribution: true --- # Minute {: .no_toc } @@ -28,5 +29,3 @@ MyMinute = Minute(MyTime) ' MyMinute contains 35. ### See Also - [Hour](Hour), [Second](Second), [DatePart](DatePart) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Month.md b/docs/Reference/VBA/DateTime/Month.md index a934d15a..57a3cf2e 100644 --- a/docs/Reference/VBA/DateTime/Month.md +++ b/docs/Reference/VBA/DateTime/Month.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Month redirect_from: - /tB/Core/Month +vba_attribution: true --- # Month {: .no_toc } @@ -31,5 +32,3 @@ MyMonth = Month(MyDate) ' MyMonth contains 2. ### See Also - [Day](Day), [Year](Year), [DatePart](DatePart) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Now.md b/docs/Reference/VBA/DateTime/Now.md index 0da77ef9..69f556c9 100644 --- a/docs/Reference/VBA/DateTime/Now.md +++ b/docs/Reference/VBA/DateTime/Now.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Now redirect_from: - /tB/Core/Now +vba_attribution: true --- # Now {: .no_toc } @@ -28,5 +29,3 @@ Debug.Print Hour(Today) ' e.g. 14 ### See Also - [Date](Date), [Time](Time) properties - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Second.md b/docs/Reference/VBA/DateTime/Second.md index d9bbb0f5..8b4e9ea7 100644 --- a/docs/Reference/VBA/DateTime/Second.md +++ b/docs/Reference/VBA/DateTime/Second.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Second redirect_from: - /tB/Core/Second +vba_attribution: true --- # Second {: .no_toc } @@ -28,5 +29,3 @@ MySecond = Second(MyTime) ' MySecond contains 17. ### See Also - [Hour](Hour), [Minute](Minute), [DatePart](DatePart) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Time.md b/docs/Reference/VBA/DateTime/Time.md index 182cf13e..e20758ac 100644 --- a/docs/Reference/VBA/DateTime/Time.md +++ b/docs/Reference/VBA/DateTime/Time.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Time redirect_from: - /tB/Core/Time +vba_attribution: true --- # Time {: .no_toc } @@ -108,5 +109,3 @@ Time$ = MyTime ' Set system time. - [Date](Date) property - [Now](Now) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/TimeSerial.md b/docs/Reference/VBA/DateTime/TimeSerial.md index 0150fc30..eeb77dc8 100644 --- a/docs/Reference/VBA/DateTime/TimeSerial.md +++ b/docs/Reference/VBA/DateTime/TimeSerial.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/TimeSerial redirect_from: - /tB/Core/TimeSerial +vba_attribution: true --- # TimeSerial {: .no_toc } @@ -43,5 +44,3 @@ MyTime = TimeSerial(16, 35, 17) ' Serial representation of 4:35:17 PM. ### See Also - [TimeValue](TimeValue) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/TimeValue.md b/docs/Reference/VBA/DateTime/TimeValue.md index 58b01e01..28f7324d 100644 --- a/docs/Reference/VBA/DateTime/TimeValue.md +++ b/docs/Reference/VBA/DateTime/TimeValue.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/TimeValue redirect_from: - /tB/Core/TimeValue +vba_attribution: true --- # TimeValue {: .no_toc } @@ -31,5 +32,3 @@ MyTime = TimeValue("4:35:17 PM") ' Return a time. ### See Also - [TimeSerial](TimeSerial) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Timer.md b/docs/Reference/VBA/DateTime/Timer.md index ad7daeff..57072d6d 100644 --- a/docs/Reference/VBA/DateTime/Timer.md +++ b/docs/Reference/VBA/DateTime/Timer.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Timer redirect_from: - /tB/Core/Timer +vba_attribution: true --- # Timer {: .no_toc } @@ -30,5 +31,3 @@ Debug.Print "Elapsed: " & Finish - Start & " seconds" - [Time](Time) property - [Now](Now) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Weekday.md b/docs/Reference/VBA/DateTime/Weekday.md index bb30b08f..55a08e49 100644 --- a/docs/Reference/VBA/DateTime/Weekday.md +++ b/docs/Reference/VBA/DateTime/Weekday.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Weekday redirect_from: - /tB/Core/Weekday +vba_attribution: true --- # Weekday {: .no_toc } @@ -59,5 +60,3 @@ MyWeekDay = Weekday(MyDate) ' MyWeekDay contains 4 because ### See Also - [Day](Day), [Month](Month), [Year](Year) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/DateTime/Year.md b/docs/Reference/VBA/DateTime/Year.md index fc9d18cd..4fe8ce29 100644 --- a/docs/Reference/VBA/DateTime/Year.md +++ b/docs/Reference/VBA/DateTime/Year.md @@ -4,6 +4,7 @@ parent: DateTime Module permalink: /tB/Modules/DateTime/Year redirect_from: - /tB/Core/Year +vba_attribution: true --- # Year {: .no_toc } @@ -31,5 +32,3 @@ MyYear = Year(MyDate) ' MyYear contains 1969. ### See Also - [Day](Day), [Month](Month), [DatePart](DatePart) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/ErrObject/Clear.md b/docs/Reference/VBA/ErrObject/Clear.md index f8baba15..583baa6b 100644 --- a/docs/Reference/VBA/ErrObject/Clear.md +++ b/docs/Reference/VBA/ErrObject/Clear.md @@ -2,6 +2,7 @@ title: Clear parent: ErrObject Module permalink: /tB/Modules/ErrObject/Clear +vba_attribution: true --- # Clear {: .no_toc } @@ -46,5 +47,3 @@ Loop - [Description](Description) property - [Source](Source) property - [Raise](Raise) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/ErrObject/Description.md b/docs/Reference/VBA/ErrObject/Description.md index fcedb993..c0cd86ec 100644 --- a/docs/Reference/VBA/ErrObject/Description.md +++ b/docs/Reference/VBA/ErrObject/Description.md @@ -2,6 +2,7 @@ title: Description parent: ErrObject Module permalink: /tB/Modules/ErrObject/Description +vba_attribution: true --- # Description {: .no_toc } @@ -34,5 +35,3 @@ Err.Description = "It was not possible to access an object necessary " _ - [Source](Source) property - [Raise](Raise) method - [Clear](Clear) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/ErrObject/HelpContext.md b/docs/Reference/VBA/ErrObject/HelpContext.md index 671c9bb2..ca9b68ac 100644 --- a/docs/Reference/VBA/ErrObject/HelpContext.md +++ b/docs/Reference/VBA/ErrObject/HelpContext.md @@ -2,6 +2,7 @@ title: HelpContext parent: ErrObject Module permalink: /tB/Modules/ErrObject/HelpContext +vba_attribution: true --- # HelpContext {: .no_toc } @@ -45,5 +46,3 @@ End If - [HelpFile](HelpFile) property - [Number](Number) property - [Raise](Raise) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/ErrObject/HelpFile.md b/docs/Reference/VBA/ErrObject/HelpFile.md index 4ecfb591..104d6e19 100644 --- a/docs/Reference/VBA/ErrObject/HelpFile.md +++ b/docs/Reference/VBA/ErrObject/HelpFile.md @@ -2,6 +2,7 @@ title: HelpFile parent: ErrObject Module permalink: /tB/Modules/ErrObject/HelpFile +vba_attribution: true --- # HelpFile {: .no_toc } @@ -40,5 +41,3 @@ MsgBox msg, , "Error: " & Err.Description, Err.HelpFile - [HelpContext](HelpContext) property - [Number](Number) property - [Raise](Raise) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/ErrObject/LastDllError.md b/docs/Reference/VBA/ErrObject/LastDllError.md index adf75faa..7a59ab3d 100644 --- a/docs/Reference/VBA/ErrObject/LastDllError.md +++ b/docs/Reference/VBA/ErrObject/LastDllError.md @@ -2,6 +2,7 @@ title: LastDllError parent: ErrObject Module permalink: /tB/Modules/ErrObject/LastDllError +vba_attribution: true --- # LastDllError {: .no_toc } @@ -43,5 +44,3 @@ End Sub - [LastHresult](LastHresult) property - [Number](Number) property - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/ErrObject/Number.md b/docs/Reference/VBA/ErrObject/Number.md index 9f2b6436..23a1c3ac 100644 --- a/docs/Reference/VBA/ErrObject/Number.md +++ b/docs/Reference/VBA/ErrObject/Number.md @@ -2,6 +2,7 @@ title: Number parent: ErrObject Module permalink: /tB/Modules/ErrObject/Number +vba_attribution: true --- # Number {: .no_toc } @@ -70,5 +71,3 @@ MsgBox msg, , "Object Error", Err.HelpFile, Err.HelpContext - [Source](Source) property - [Raise](Raise) method - [Clear](Clear) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/ErrObject/Raise.md b/docs/Reference/VBA/ErrObject/Raise.md index 4e34bb22..27423c3a 100644 --- a/docs/Reference/VBA/ErrObject/Raise.md +++ b/docs/Reference/VBA/ErrObject/Raise.md @@ -2,6 +2,7 @@ title: Raise parent: ErrObject Module permalink: /tB/Modules/ErrObject/Raise +vba_attribution: true --- # Raise {: .no_toc } @@ -54,5 +55,3 @@ End Function - [HelpContext](HelpContext) property - [Clear](Clear) method - [Error](../../Core/Error) statement - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/ErrObject/Source.md b/docs/Reference/VBA/ErrObject/Source.md index 31f14645..3777dfd4 100644 --- a/docs/Reference/VBA/ErrObject/Source.md +++ b/docs/Reference/VBA/ErrObject/Source.md @@ -2,6 +2,7 @@ title: Source parent: ErrObject Module permalink: /tB/Modules/ErrObject/Source +vba_attribution: true --- # Source {: .no_toc } @@ -43,5 +44,3 @@ Err.Raise Number:=vbObjectError + 894, Source:=myObjectID, _ - [Description](Description) property - [Raise](Raise) method - [Clear](Clear) method - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/ChDir.md b/docs/Reference/VBA/FileSystem/ChDir.md index 9e1a4984..d47ea1a0 100644 --- a/docs/Reference/VBA/FileSystem/ChDir.md +++ b/docs/Reference/VBA/FileSystem/ChDir.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/ChDir redirect_from: - /tB/Core/ChDir +vba_attribution: true --- # ChDir {: .no_toc } @@ -54,6 +55,4 @@ ChDir "MYDIR" ' Assume "C:" is the current drive. The following statement changes ' the default directory on drive "D:". "C:" remains the current drive. ChDir "D:\WINDOWS\SYSTEM" -``` - -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/VBA/FileSystem/ChDrive.md b/docs/Reference/VBA/FileSystem/ChDrive.md index 9e283019..3dcca1b0 100644 --- a/docs/Reference/VBA/FileSystem/ChDrive.md +++ b/docs/Reference/VBA/FileSystem/ChDrive.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/ChDrive redirect_from: - /tB/Core/ChDrive +vba_attribution: true --- # ChDrive {: .no_toc } @@ -27,6 +28,4 @@ This example uses the **ChDrive** statement to change the current drive. ```tb ChDrive "D" ' Make "D" the current drive. -``` - -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/VBA/FileSystem/CurDir.md b/docs/Reference/VBA/FileSystem/CurDir.md index d8ffa77e..844d3fec 100644 --- a/docs/Reference/VBA/FileSystem/CurDir.md +++ b/docs/Reference/VBA/FileSystem/CurDir.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/CurDir redirect_from: - /tB/Core/CurDir +vba_attribution: true --- # CurDir {: .no_toc } @@ -62,5 +63,3 @@ MyPath = CurDir$("D") ' Returns "D:\EXCEL". - [ChDir](ChDir), [ChDrive](ChDrive) statements - [Dir](Dir) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/Dir.md b/docs/Reference/VBA/FileSystem/Dir.md index ac24c628..790b33a6 100644 --- a/docs/Reference/VBA/FileSystem/Dir.md +++ b/docs/Reference/VBA/FileSystem/Dir.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/Dir redirect_from: - /tB/Core/Dir +vba_attribution: true --- # Dir {: .no_toc } @@ -80,5 +81,3 @@ Do While MyName <> "" ' Start the loop. MyName = Dir ' Get next entry. Loop ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/EOF.md b/docs/Reference/VBA/FileSystem/EOF.md index 1727093a..6c41eb9e 100644 --- a/docs/Reference/VBA/FileSystem/EOF.md +++ b/docs/Reference/VBA/FileSystem/EOF.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/EOF redirect_from: - /tB/Core/EOF +vba_attribution: true --- # EOF {: .no_toc } @@ -40,5 +41,3 @@ Close #1 ' Close file. ### See Also - [LOF](LOF) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/FileAttr.md b/docs/Reference/VBA/FileSystem/FileAttr.md index ce08305c..dd7a5246 100644 --- a/docs/Reference/VBA/FileSystem/FileAttr.md +++ b/docs/Reference/VBA/FileSystem/FileAttr.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/FileAttr redirect_from: - /tB/Core/FileAttr +vba_attribution: true --- # FileAttr {: .no_toc } @@ -45,5 +46,3 @@ Close FileNum ' Close file. ### See Also - [LOF](LOF), [EOF](EOF) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/FileCopy.md b/docs/Reference/VBA/FileSystem/FileCopy.md index 002ccc7e..55fb57e2 100644 --- a/docs/Reference/VBA/FileSystem/FileCopy.md +++ b/docs/Reference/VBA/FileSystem/FileCopy.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/FileCopy redirect_from: - /tB/Core/FileCopy +vba_attribution: true --- # FileCopy @@ -29,5 +30,4 @@ Dim SourceFile, DestinationFile SourceFile = "SRCFILE" ' Define source file name. DestinationFile = "DESTFILE" ' Define target file name. FileCopy SourceFile, DestinationFile ' Copy source to target. -``` -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/VBA/FileSystem/FileDateTime.md b/docs/Reference/VBA/FileSystem/FileDateTime.md index e724fada..92822553 100644 --- a/docs/Reference/VBA/FileSystem/FileDateTime.md +++ b/docs/Reference/VBA/FileSystem/FileDateTime.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/FileDateTime redirect_from: - /tB/Core/FileDateTime +vba_attribution: true --- # FileDateTime {: .no_toc } @@ -29,5 +30,3 @@ MyStamp = FileDateTime("TESTFILE") ' Returns "2/12/93 4:35:47 PM". ### See Also - [FileLen](FileLen), [GetAttr](GetAttr) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/FileLen.md b/docs/Reference/VBA/FileSystem/FileLen.md index 9641aa05..8783f536 100644 --- a/docs/Reference/VBA/FileSystem/FileLen.md +++ b/docs/Reference/VBA/FileSystem/FileLen.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/FileLen redirect_from: - /tB/Core/FileLen +vba_attribution: true --- # FileLen {: .no_toc } @@ -33,5 +34,3 @@ MySize = FileLen("TESTFILE") ' Returns file length (bytes). - [LOF](LOF) function - [FileDateTime](FileDateTime) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/FreeFile.md b/docs/Reference/VBA/FileSystem/FreeFile.md index 03296fd2..f13ee88c 100644 --- a/docs/Reference/VBA/FileSystem/FreeFile.md +++ b/docs/Reference/VBA/FileSystem/FreeFile.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/FreeFile redirect_from: - /tB/Core/FreeFile +vba_attribution: true --- # FreeFile {: .no_toc } @@ -30,5 +31,3 @@ For MyIndex = 1 To 5 ' Loop 5 times. Close #FileNumber ' Close file. Next MyIndex ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/GetAttr.md b/docs/Reference/VBA/FileSystem/GetAttr.md index 449298c2..05168827 100644 --- a/docs/Reference/VBA/FileSystem/GetAttr.md +++ b/docs/Reference/VBA/FileSystem/GetAttr.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/GetAttr redirect_from: - /tB/Core/GetAttr +vba_attribution: true --- # GetAttr {: .no_toc } @@ -61,5 +62,3 @@ MyAttr = GetAttr("MYDIR") ' Returns 16. ### See Also - [Dir](Dir) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/Kill.md b/docs/Reference/VBA/FileSystem/Kill.md index 877305f0..ee7b317d 100644 --- a/docs/Reference/VBA/FileSystem/Kill.md +++ b/docs/Reference/VBA/FileSystem/Kill.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/Kill redirect_from: - /tB/Core/Kill +vba_attribution: true --- # Kill {: .no_toc } @@ -38,5 +39,3 @@ Kill "*.TXT" - [Dir](Dir) function - [RmDir](RmDir), [MkDir](MkDir) statements - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/LOF.md b/docs/Reference/VBA/FileSystem/LOF.md index 27b3b58a..ed550a3d 100644 --- a/docs/Reference/VBA/FileSystem/LOF.md +++ b/docs/Reference/VBA/FileSystem/LOF.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/LOF redirect_from: - /tB/Core/LOF +vba_attribution: true --- # LOF {: .no_toc } @@ -32,5 +33,3 @@ Close #1 ' Close file. ### See Also - [EOF](EOF) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/Loc.md b/docs/Reference/VBA/FileSystem/Loc.md index df58d017..c0ca2311 100644 --- a/docs/Reference/VBA/FileSystem/Loc.md +++ b/docs/Reference/VBA/FileSystem/Loc.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/Loc redirect_from: - /tB/Core/Loc +vba_attribution: true --- # Loc {: .no_toc } @@ -45,5 +46,3 @@ Close #1 ' Close file. - [LOF](LOF) function - [Seek](Seek) function - [EOF](EOF) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/MkDir.md b/docs/Reference/VBA/FileSystem/MkDir.md index 8e724683..d43f9be5 100644 --- a/docs/Reference/VBA/FileSystem/MkDir.md +++ b/docs/Reference/VBA/FileSystem/MkDir.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/MkDir redirect_from: - /tB/Core/MkDir +vba_attribution: true --- # MkDir {: .no_toc } @@ -27,5 +28,3 @@ This example uses the **MkDir** statement to create a directory or folder. If th ```tb MkDir "MYDIR" ' Make new directory or folder. ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/Reset.md b/docs/Reference/VBA/FileSystem/Reset.md index 067ce5b7..e35bf8c0 100644 --- a/docs/Reference/VBA/FileSystem/Reset.md +++ b/docs/Reference/VBA/FileSystem/Reset.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/Reset redirect_from: - /tB/Core/Reset +vba_attribution: true --- # Reset {: .no_toc } @@ -30,5 +31,3 @@ Reset ' Close files and write contents to disk. ### See Also - [Close](../../Core/Close) statement - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/RmDir.md b/docs/Reference/VBA/FileSystem/RmDir.md index 9ee9bbba..44f05fb3 100644 --- a/docs/Reference/VBA/FileSystem/RmDir.md +++ b/docs/Reference/VBA/FileSystem/RmDir.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/RmDir redirect_from: - /tB/Core/RmDir +vba_attribution: true --- # RmDir {: .no_toc } @@ -31,5 +32,3 @@ This example uses the **RmDir** statement to remove an existing directory or fol ' Assume that MYDIR is an empty directory or folder. RmDir "MYDIR" ' Remove MYDIR. ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/Seek.md b/docs/Reference/VBA/FileSystem/Seek.md index d4b9bbd7..51979a5a 100644 --- a/docs/Reference/VBA/FileSystem/Seek.md +++ b/docs/Reference/VBA/FileSystem/Seek.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/Seek redirect_from: - /tB/Core/Seek +vba_attribution: true --- # Seek {: .no_toc } @@ -95,5 +96,3 @@ Close #1 ' Close file. - [Loc](Loc) function - [LOF](LOF) function - [EOF](EOF) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/FileSystem/SetAttr.md b/docs/Reference/VBA/FileSystem/SetAttr.md index 66977d96..c34be736 100644 --- a/docs/Reference/VBA/FileSystem/SetAttr.md +++ b/docs/Reference/VBA/FileSystem/SetAttr.md @@ -4,6 +4,7 @@ parent: FileSystem Module permalink: /tB/Modules/FileSystem/SetAttr redirect_from: - /tB/Core/SetAttr +vba_attribution: true --- # SetAttr {: .no_toc } @@ -44,5 +45,3 @@ SetAttr "TESTFILE", vbHidden + vbReadOnly ' Set hidden and read-only attribut ### See Also - [GetAttr](GetAttr) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/DDB.md b/docs/Reference/VBA/Financial/DDB.md index f708d611..68d1347f 100644 --- a/docs/Reference/VBA/Financial/DDB.md +++ b/docs/Reference/VBA/Financial/DDB.md @@ -2,6 +2,7 @@ title: DDB parent: Financial Module permalink: /tB/Modules/Financial/DDB +vba_attribution: true --- # DDB {: .no_toc } @@ -65,5 +66,3 @@ Format(Depr, Fmt) & "." ### See Also - [SLN](SLN), [SYD](SYD) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/FV.md b/docs/Reference/VBA/Financial/FV.md index 064a0a80..56b31ed3 100644 --- a/docs/Reference/VBA/Financial/FV.md +++ b/docs/Reference/VBA/Financial/FV.md @@ -2,6 +2,7 @@ title: FV parent: Financial Module permalink: /tB/Modules/Financial/FV +vba_attribution: true --- # FV {: .no_toc } @@ -53,5 +54,3 @@ MsgBox "Your savings will be worth " & Format(FVal, Fmt) & "." ### See Also - [PV](PV), [NPer](NPer), [Pmt](Pmt), [Rate](Rate) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/IPmt.md b/docs/Reference/VBA/Financial/IPmt.md index b8ad29ef..abf9f8af 100644 --- a/docs/Reference/VBA/Financial/IPmt.md +++ b/docs/Reference/VBA/Financial/IPmt.md @@ -2,6 +2,7 @@ title: IPmt parent: Financial Module permalink: /tB/Modules/Financial/IPmt +vba_attribution: true --- # IPmt {: .no_toc } @@ -61,5 +62,3 @@ MsgBox Msg ' Display results. ### See Also - [Pmt](Pmt), [PPmt](PPmt), [Rate](Rate) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/IRR.md b/docs/Reference/VBA/Financial/IRR.md index 2ca7b3ec..573edf86 100644 --- a/docs/Reference/VBA/Financial/IRR.md +++ b/docs/Reference/VBA/Financial/IRR.md @@ -2,6 +2,7 @@ title: IRR parent: Financial Module permalink: /tB/Modules/Financial/IRR +vba_attribution: true --- # IRR {: .no_toc } @@ -44,5 +45,3 @@ MsgBox Msg ' Display internal return rate. ### See Also - [MIRR](MIRR), [NPV](NPV), [Rate](Rate) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/MIRR.md b/docs/Reference/VBA/Financial/MIRR.md index 6057945f..9438675f 100644 --- a/docs/Reference/VBA/Financial/MIRR.md +++ b/docs/Reference/VBA/Financial/MIRR.md @@ -2,6 +2,7 @@ title: MIRR parent: Financial Module permalink: /tB/Modules/Financial/MIRR +vba_attribution: true --- # MIRR {: .no_toc } @@ -48,5 +49,3 @@ MsgBox Msg ' Display internal return rate. ### See Also - [IRR](IRR), [NPV](NPV), [Rate](Rate) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/NPV.md b/docs/Reference/VBA/Financial/NPV.md index 9087443d..49200584 100644 --- a/docs/Reference/VBA/Financial/NPV.md +++ b/docs/Reference/VBA/Financial/NPV.md @@ -2,6 +2,7 @@ title: NPV parent: Financial Module permalink: /tB/Modules/Financial/NPV +vba_attribution: true --- # NPV {: .no_toc } @@ -49,5 +50,3 @@ MsgBox Msg ' Display net present value. ### See Also - [IRR](IRR), [MIRR](MIRR), [PV](PV) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/NPer.md b/docs/Reference/VBA/Financial/NPer.md index 3a9b67db..ca69cdc9 100644 --- a/docs/Reference/VBA/Financial/NPer.md +++ b/docs/Reference/VBA/Financial/NPer.md @@ -2,6 +2,7 @@ title: NPer parent: Financial Module permalink: /tB/Modules/Financial/NPer +vba_attribution: true --- # NPer {: .no_toc } @@ -51,5 +52,3 @@ MsgBox "It will take you " & TotPmts & " months to pay off your loan." ### See Also - [FV](FV), [PV](PV), [Pmt](Pmt), [Rate](Rate) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/PPmt.md b/docs/Reference/VBA/Financial/PPmt.md index 75d933f0..e31b85ee 100644 --- a/docs/Reference/VBA/Financial/PPmt.md +++ b/docs/Reference/VBA/Financial/PPmt.md @@ -2,6 +2,7 @@ title: PPmt parent: Financial Module permalink: /tB/Modules/Financial/PPmt +vba_attribution: true --- # PPmt {: .no_toc } @@ -75,5 +76,3 @@ End If ### See Also - [IPmt](IPmt), [Pmt](Pmt), [Rate](Rate) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/PV.md b/docs/Reference/VBA/Financial/PV.md index dbdd9156..79b0dae8 100644 --- a/docs/Reference/VBA/Financial/PV.md +++ b/docs/Reference/VBA/Financial/PV.md @@ -2,6 +2,7 @@ title: PV parent: Financial Module permalink: /tB/Modules/Financial/PV +vba_attribution: true --- # PV {: .no_toc } @@ -51,5 +52,3 @@ MsgBox "The present value is " & Format(PVal, Fmt) & "." ### See Also - [FV](FV), [NPer](NPer), [NPV](NPV), [Pmt](Pmt), [Rate](Rate) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/Pmt.md b/docs/Reference/VBA/Financial/Pmt.md index 1a2fbdc5..8e20b503 100644 --- a/docs/Reference/VBA/Financial/Pmt.md +++ b/docs/Reference/VBA/Financial/Pmt.md @@ -2,6 +2,7 @@ title: Pmt parent: Financial Module permalink: /tB/Modules/Financial/Pmt +vba_attribution: true --- # Pmt {: .no_toc } @@ -53,5 +54,3 @@ MsgBox "Your payment will be " & Format(Payment, Fmt) & " per month." ### See Also - [IPmt](IPmt), [PPmt](PPmt), [NPer](NPer), [Rate](Rate) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/Rate.md b/docs/Reference/VBA/Financial/Rate.md index 843fceb8..8ae00c67 100644 --- a/docs/Reference/VBA/Financial/Rate.md +++ b/docs/Reference/VBA/Financial/Rate.md @@ -2,6 +2,7 @@ title: Rate parent: Financial Module permalink: /tB/Modules/Financial/Rate +vba_attribution: true --- # Rate {: .no_toc } @@ -57,5 +58,3 @@ MsgBox "Your interest rate is " & Format(CInt(APR), Fmt) & " percent." ### See Also - [FV](FV), [IRR](IRR), [NPer](NPer), [Pmt](Pmt), [PV](PV) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/SLN.md b/docs/Reference/VBA/Financial/SLN.md index 748e8188..0ab90226 100644 --- a/docs/Reference/VBA/Financial/SLN.md +++ b/docs/Reference/VBA/Financial/SLN.md @@ -2,6 +2,7 @@ title: SLN parent: Financial Module permalink: /tB/Modules/Financial/SLN +vba_attribution: true --- # SLN {: .no_toc } @@ -47,5 +48,3 @@ MsgBox "The depreciation is " & Format(PDepr, Fmt) & " per year." ### See Also - [DDB](DDB), [SYD](SYD) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Financial/SYD.md b/docs/Reference/VBA/Financial/SYD.md index ccfa7306..d883417a 100644 --- a/docs/Reference/VBA/Financial/SYD.md +++ b/docs/Reference/VBA/Financial/SYD.md @@ -2,6 +2,7 @@ title: SYD parent: Financial Module permalink: /tB/Modules/Financial/SYD +vba_attribution: true --- # SYD {: .no_toc } @@ -55,5 +56,3 @@ MsgBox "The depreciation for year " & DepYear & " is " & Format(PDepr, Fmt) & ". ### See Also - [DDB](DDB), [SLN](SLN) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/HiddenModule/Array.md b/docs/Reference/VBA/HiddenModule/Array.md index 7698c124..223ff160 100644 --- a/docs/Reference/VBA/HiddenModule/Array.md +++ b/docs/Reference/VBA/HiddenModule/Array.md @@ -4,6 +4,7 @@ parent: (Default) Module permalink: /tB/Modules/HiddenModule/Array redirect_from: - /tB/Core/Array +vba_attribution: true --- # Array {: .no_toc } @@ -63,5 +64,3 @@ MyDay = MyWeek(2) ' MyDay contains "Wed" with default Option Base 0, - [Option](../../Core/Option) statement - [LBound](../Information/LBound), [UBound](../Information/UBound) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/HiddenModule/Input.md b/docs/Reference/VBA/HiddenModule/Input.md index 5a83919d..31036351 100644 --- a/docs/Reference/VBA/HiddenModule/Input.md +++ b/docs/Reference/VBA/HiddenModule/Input.md @@ -2,6 +2,7 @@ title: Input, Input$ parent: (Default) Module permalink: /tB/Modules/HiddenModule/Input +vba_attribution: true --- # Input, Input$ {: .no_toc } @@ -46,5 +47,3 @@ Close #1 ' Close file. - [InputB, InputB$](InputB) functions - [Open](../../Core/Open) statement - [EOF](../FileSystem/EOF), [LOF](../FileSystem/LOF), [Loc](../FileSystem/Loc) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/HiddenModule/InputB.md b/docs/Reference/VBA/HiddenModule/InputB.md index 05482153..5ba5d264 100644 --- a/docs/Reference/VBA/HiddenModule/InputB.md +++ b/docs/Reference/VBA/HiddenModule/InputB.md @@ -2,6 +2,7 @@ title: InputB, InputB$ parent: (Default) Module permalink: /tB/Modules/HiddenModule/InputB +vba_attribution: true --- # InputB, InputB$ {: .no_toc } @@ -36,5 +37,3 @@ Close #1 - [Input, Input$](Input) functions - [Open](../../Core/Open) statement - [LOF](../FileSystem/LOF) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/HiddenModule/Width.md b/docs/Reference/VBA/HiddenModule/Width.md index 1626fb63..ad44a397 100644 --- a/docs/Reference/VBA/HiddenModule/Width.md +++ b/docs/Reference/VBA/HiddenModule/Width.md @@ -4,6 +4,7 @@ parent: (Default) Module permalink: /tB/Modules/HiddenModule/Width redirect_from: - /tB/Core/Width +vba_attribution: true --- # Width # {: .no_toc } @@ -36,5 +37,3 @@ Close #1 ' Close file. - [Open](../../Core/Open) statement - [Print #](../../Core/Print) statement - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/Err.md b/docs/Reference/VBA/Information/Err.md index 6de0825c..851f2ace 100644 --- a/docs/Reference/VBA/Information/Err.md +++ b/docs/Reference/VBA/Information/Err.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/Err redirect_from: - /tB/Core/Err +vba_attribution: true --- # Err {: .no_toc } @@ -42,5 +43,3 @@ End If - [ErrObject](../ErrObject) module - [Erl](Erl) function - [On Error](../../Core/On-Error) statement - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/IMEStatus.md b/docs/Reference/VBA/Information/IMEStatus.md index d4779f90..14f3988b 100644 --- a/docs/Reference/VBA/Information/IMEStatus.md +++ b/docs/Reference/VBA/Information/IMEStatus.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/IMEStatus redirect_from: - /tB/Core/IMEStatus +vba_attribution: true --- # IMEStatus {: .no_toc } @@ -21,5 +22,3 @@ The return value is one of the [**VbIMEStatus**](../Constants/VbIMEStatus) const ### See Also - [VbIMEStatus](../Constants/VbIMEStatus) enumeration - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/IsArray.md b/docs/Reference/VBA/Information/IsArray.md index 13144154..e66a9479 100644 --- a/docs/Reference/VBA/Information/IsArray.md +++ b/docs/Reference/VBA/Information/IsArray.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/IsArray redirect_from: - /tB/Core/IsArray +vba_attribution: true --- # IsArray {: .no_toc } @@ -34,5 +35,3 @@ MyCheck = IsArray(YourArray) ' Returns True. - [IsArrayInitialized](IsArrayInitialized) function - [LBound](LBound), [UBound](UBound) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/IsDate.md b/docs/Reference/VBA/Information/IsDate.md index a13d3484..2d411d30 100644 --- a/docs/Reference/VBA/Information/IsDate.md +++ b/docs/Reference/VBA/Information/IsDate.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/IsDate redirect_from: - /tB/Core/IsDate +vba_attribution: true --- # IsDate {: .no_toc } @@ -41,5 +42,3 @@ MyCheck = IsDate(MyVar) ' True. - [CDate](../Conversion/CDate) function - [DateValue](../DateTime/DateValue) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/IsEmpty.md b/docs/Reference/VBA/Information/IsEmpty.md index 9b506d69..cfd1a649 100644 --- a/docs/Reference/VBA/Information/IsEmpty.md +++ b/docs/Reference/VBA/Information/IsEmpty.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/IsEmpty redirect_from: - /tB/Core/IsEmpty +vba_attribution: true --- # IsEmpty {: .no_toc } @@ -36,5 +37,3 @@ MyCheck = IsEmpty(MyVar) ' True. ### See Also - [IsNull](IsNull), [IsMissing](IsMissing) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/IsError.md b/docs/Reference/VBA/Information/IsError.md index c9bd9537..c41a788e 100644 --- a/docs/Reference/VBA/Information/IsError.md +++ b/docs/Reference/VBA/Information/IsError.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/IsError redirect_from: - /tB/Core/IsError +vba_attribution: true --- # IsError {: .no_toc } @@ -32,5 +33,3 @@ MyCheck = IsError(ReturnVal) ' Returns True. - [CVErr](../Conversion/CVErr) function - [Err](Err) property - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/IsMissing.md b/docs/Reference/VBA/Information/IsMissing.md index f92b8db4..87e29b1f 100644 --- a/docs/Reference/VBA/Information/IsMissing.md +++ b/docs/Reference/VBA/Information/IsMissing.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/IsMissing redirect_from: - /tB/Core/IsMissing +vba_attribution: true --- # IsMissing {: .no_toc } @@ -50,5 +51,3 @@ End Function ### See Also - [IsNull](IsNull), [IsEmpty](IsEmpty) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/IsNull.md b/docs/Reference/VBA/Information/IsNull.md index 4e9c65a0..816efddc 100644 --- a/docs/Reference/VBA/Information/IsNull.md +++ b/docs/Reference/VBA/Information/IsNull.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/IsNull redirect_from: - /tB/Core/IsNull +vba_attribution: true --- # IsNull {: .no_toc } @@ -42,5 +43,3 @@ MyCheck = IsNull(MyVar) ' True. - [IsEmpty](IsEmpty), [IsMissing](IsMissing) functions - [Nz](../Conversion/Nz) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/IsNumeric.md b/docs/Reference/VBA/Information/IsNumeric.md index b4f119e4..2092445e 100644 --- a/docs/Reference/VBA/Information/IsNumeric.md +++ b/docs/Reference/VBA/Information/IsNumeric.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/IsNumeric redirect_from: - /tB/Core/IsNumeric +vba_attribution: true --- # IsNumeric {: .no_toc } @@ -41,5 +42,3 @@ MyCheck = IsNumeric(MyVar) ' Returns False. - [CDbl](../Conversion/CDbl), [CDec](../Conversion/CDec) functions - [IsDate](IsDate) function - [Val](../Conversion/Val) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/IsObject.md b/docs/Reference/VBA/Information/IsObject.md index 8f87444b..b2341c6e 100644 --- a/docs/Reference/VBA/Information/IsObject.md +++ b/docs/Reference/VBA/Information/IsObject.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/IsObject redirect_from: - /tB/Core/IsObject +vba_attribution: true --- # IsObject {: .no_toc } @@ -44,5 +45,3 @@ MyCheck = IsObject(Null) ' Returns False. - [VarType](VarType), [TypeName](TypeName) functions - [IsArray](IsArray) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/LBound.md b/docs/Reference/VBA/Information/LBound.md index 5f066660..dd1c3408 100644 --- a/docs/Reference/VBA/Information/LBound.md +++ b/docs/Reference/VBA/Information/LBound.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/LBound redirect_from: - /tB/Core/LBound +vba_attribution: true --- # LBound {: .no_toc } @@ -47,5 +48,3 @@ Lower = LBound(AnyArray) ' Returns 0 or 1, per Option Base. - [UBound](UBound) function - [IsArray](IsArray), [IsArrayInitialized](IsArrayInitialized) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/QBColor.md b/docs/Reference/VBA/Information/QBColor.md index fd2d4a15..32627423 100644 --- a/docs/Reference/VBA/Information/QBColor.md +++ b/docs/Reference/VBA/Information/QBColor.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/QBColor redirect_from: - /tB/Core/QBColor +vba_attribution: true --- # QBColor {: .no_toc } @@ -44,5 +45,3 @@ End Sub - [RGB](RGB), [RGBA](RGBA) functions - [TranslateColor](TranslateColor) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/RGB.md b/docs/Reference/VBA/Information/RGB.md index eb5fd817..0043d856 100644 --- a/docs/Reference/VBA/Information/RGB.md +++ b/docs/Reference/VBA/Information/RGB.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/RGB redirect_from: - /tB/Core/RGB +vba_attribution: true --- # RGB {: .no_toc } @@ -52,5 +53,3 @@ RGBValue = RGB(I, 64 + I, 128 + I) ' Same as RGB(75, 139, 203). - [RGBA](RGBA) function - [RGB_R](RGB_R), [RGB_G](RGB_G), [RGB_B](RGB_B) functions - [QBColor](QBColor), [TranslateColor](TranslateColor) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/TypeName.md b/docs/Reference/VBA/Information/TypeName.md index a0d0e70d..85373152 100644 --- a/docs/Reference/VBA/Information/TypeName.md +++ b/docs/Reference/VBA/Information/TypeName.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/TypeName redirect_from: - /tB/Core/TypeName +vba_attribution: true --- # TypeName {: .no_toc } @@ -58,5 +59,3 @@ MyType = TypeName(ArrayVar) ' Returns "Integer()". ### See Also - [VarType](VarType) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/UBound.md b/docs/Reference/VBA/Information/UBound.md index 02fcf2fd..03fa5c69 100644 --- a/docs/Reference/VBA/Information/UBound.md +++ b/docs/Reference/VBA/Information/UBound.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/UBound redirect_from: - /tB/Core/UBound +vba_attribution: true --- # UBound {: .no_toc } @@ -45,5 +46,3 @@ Upper = UBound(AnyArray) ' Returns 10. - [LBound](LBound) function - [IsArray](IsArray), [IsArrayInitialized](IsArrayInitialized) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Information/VarType.md b/docs/Reference/VBA/Information/VarType.md index 1cf80438..83e92025 100644 --- a/docs/Reference/VBA/Information/VarType.md +++ b/docs/Reference/VBA/Information/VarType.md @@ -4,6 +4,7 @@ parent: Information Module permalink: /tB/Modules/Information/VarType redirect_from: - /tB/Core/VarType +vba_attribution: true --- # VarType {: .no_toc } @@ -68,5 +69,3 @@ MyCheck = VarType(ArrayVar) ' Returns 8204 — vbArray + vbVariant. - [TypeName](TypeName) function - [VbVarType](../Constants/VbVarType) enumeration - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/AppActivate.md b/docs/Reference/VBA/Interaction/AppActivate.md index 6f00e435..9f2331d0 100644 --- a/docs/Reference/VBA/Interaction/AppActivate.md +++ b/docs/Reference/VBA/Interaction/AppActivate.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/AppActivate redirect_from: - /tB/Core/AppActivate +vba_attribution: true --- # AppActivate {: .no_toc } @@ -52,6 +53,4 @@ AppActivate MyAppID ' Activate Microsoft ReturnValue = Shell("c:\EXCEL\EXCEL.EXE",1) ' Run Microsoft Excel. AppActivate ReturnValue ' Activate Microsoft ' Excel. -``` - -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/VBA/Interaction/Beep.md b/docs/Reference/VBA/Interaction/Beep.md index 6d78d80f..31558561 100644 --- a/docs/Reference/VBA/Interaction/Beep.md +++ b/docs/Reference/VBA/Interaction/Beep.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/Beep redirect_from: - /tB/Core/Beep +vba_attribution: true --- # Beep {: .no_toc } @@ -23,6 +24,4 @@ Dim I% For I = 1 To 3 ' Loop 3 times. Beep ' Sound a tone. Next I -``` - -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/VBA/Interaction/CallByName.md b/docs/Reference/VBA/Interaction/CallByName.md index 3f0feb3f..f5b3fbeb 100644 --- a/docs/Reference/VBA/Interaction/CallByName.md +++ b/docs/Reference/VBA/Interaction/CallByName.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/CallByName redirect_from: - /tB/Core/CallByName +vba_attribution: true --- # CallByName {: .no_toc } @@ -40,5 +41,3 @@ CallByName Text1, "Move", vbMethod, 100, 100 - [CallByDispId](CallByDispId) function - [VbCallType](../Constants/VbCallType) enumeration - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/Choose.md b/docs/Reference/VBA/Interaction/Choose.md index c6b29e4e..78af0b12 100644 --- a/docs/Reference/VBA/Interaction/Choose.md +++ b/docs/Reference/VBA/Interaction/Choose.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/Choose redirect_from: - /tB/Core/Choose +vba_attribution: true --- # Choose {: .no_toc } @@ -38,5 +39,3 @@ End Function - [If](If) function - [IIf](IIf) function - [Switch](Switch) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/Command.md b/docs/Reference/VBA/Interaction/Command.md index 1ae937e5..b53dff6d 100644 --- a/docs/Reference/VBA/Interaction/Command.md +++ b/docs/Reference/VBA/Interaction/Command.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/Command redirect_from: - /tB/Core/Command +vba_attribution: true --- # Command, Command$ {: .no_toc } @@ -60,5 +61,3 @@ Function GetCommandLine(Optional MaxArgs As Variant) As Variant GetCommandLine = ArgArray() End Function ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/CreateObject.md b/docs/Reference/VBA/Interaction/CreateObject.md index b89692d6..a4c4507d 100644 --- a/docs/Reference/VBA/Interaction/CreateObject.md +++ b/docs/Reference/VBA/Interaction/CreateObject.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/CreateObject redirect_from: - /tB/Core/CreateObject +vba_attribution: true --- # CreateObject {: .no_toc } @@ -47,5 +48,3 @@ Set XlApp = Nothing ### See Also - [GetObject](GetObject) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/DeleteSetting.md b/docs/Reference/VBA/Interaction/DeleteSetting.md index 3471c3e7..27024752 100644 --- a/docs/Reference/VBA/Interaction/DeleteSetting.md +++ b/docs/Reference/VBA/Interaction/DeleteSetting.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/DeleteSetting redirect_from: - /tB/Core/DeleteSetting +vba_attribution: true --- # DeleteSetting {: .no_toc } @@ -39,6 +40,4 @@ SaveSetting appname := "MyApp", section := "Startup", _ SaveSetting "MyApp", "Startup", "Left", 50 ' Remove section and all its settings from registry. DeleteSetting "MyApp", "Startup" -``` - -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/VBA/Interaction/DoEvents.md b/docs/Reference/VBA/Interaction/DoEvents.md index d0aa77a4..5acc634b 100644 --- a/docs/Reference/VBA/Interaction/DoEvents.md +++ b/docs/Reference/VBA/Interaction/DoEvents.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/DoEvents redirect_from: - /tB/Core/DoEvents +vba_attribution: true --- # DoEvents {: .no_toc } @@ -37,5 +38,3 @@ Next I ### See Also - [SendKeys](SendKeys) statement - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/Environ.md b/docs/Reference/VBA/Interaction/Environ.md index 7481f512..3036a785 100644 --- a/docs/Reference/VBA/Interaction/Environ.md +++ b/docs/Reference/VBA/Interaction/Environ.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/Environ redirect_from: - /tB/Core/Environ +vba_attribution: true --- # Environ, Environ$ {: .no_toc } @@ -49,5 +50,3 @@ If PathLen = 0 Then Debug.Print "No PATH environment variable exists." End If ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/GetAllSettings.md b/docs/Reference/VBA/Interaction/GetAllSettings.md index 9b151f0e..5db82a61 100644 --- a/docs/Reference/VBA/Interaction/GetAllSettings.md +++ b/docs/Reference/VBA/Interaction/GetAllSettings.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/GetAllSettings redirect_from: - /tB/Core/GetAllSettings +vba_attribution: true --- # GetAllSettings {: .no_toc } @@ -47,5 +48,3 @@ DeleteSetting "MyApp", "Startup" - [DeleteSetting](DeleteSetting) statement - [GetSetting](GetSetting) function - [SaveSetting](SaveSetting) statement - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/GetObject.md b/docs/Reference/VBA/Interaction/GetObject.md index d940db48..d489ad07 100644 --- a/docs/Reference/VBA/Interaction/GetObject.md +++ b/docs/Reference/VBA/Interaction/GetObject.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/GetObject redirect_from: - /tB/Core/GetObject +vba_attribution: true --- # GetObject {: .no_toc } @@ -73,5 +74,3 @@ Set MyXl = Nothing ### See Also - [CreateObject](CreateObject) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/GetSetting.md b/docs/Reference/VBA/Interaction/GetSetting.md index 6017ac37..48f025bd 100644 --- a/docs/Reference/VBA/Interaction/GetSetting.md +++ b/docs/Reference/VBA/Interaction/GetSetting.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/GetSetting redirect_from: - /tB/Core/GetSetting +vba_attribution: true --- # GetSetting @@ -48,5 +49,4 @@ Debug.Print GetSetting(appname := "MyApp", section := "Startup", _ key := "Left", default := "25") DeleteSetting "MyApp", "Startup" -``` -{% include VBA-Attribution.md %} \ No newline at end of file +``` \ No newline at end of file diff --git a/docs/Reference/VBA/Interaction/IIf.md b/docs/Reference/VBA/Interaction/IIf.md index f4f4d7c3..b5ce85b4 100644 --- a/docs/Reference/VBA/Interaction/IIf.md +++ b/docs/Reference/VBA/Interaction/IIf.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/IIf redirect_from: - /tB/Core/IIf +vba_attribution: true --- # IIf {: .no_toc } @@ -39,5 +40,3 @@ End Function - [If](If) function - [Choose](Choose) function - [Switch](Switch) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/InputBox.md b/docs/Reference/VBA/Interaction/InputBox.md index 0bcae333..2e66bb62 100644 --- a/docs/Reference/VBA/Interaction/InputBox.md +++ b/docs/Reference/VBA/Interaction/InputBox.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/InputBox redirect_from: - /tB/Core/InputBox +vba_attribution: true --- # InputBox {: .no_toc } @@ -77,5 +78,3 @@ MyValue = InputBox(Message, Title, Default, 100, 100) ### See Also - [MsgBox](MsgBox) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/MsgBox.md b/docs/Reference/VBA/Interaction/MsgBox.md index c00b0cd6..dec04918 100644 --- a/docs/Reference/VBA/Interaction/MsgBox.md +++ b/docs/Reference/VBA/Interaction/MsgBox.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/MsgBox redirect_from: - /tB/Core/MsgBox +vba_attribution: true --- # MsgBox {: .no_toc } @@ -59,5 +60,3 @@ End If - [InputBox](InputBox) function - [VbMsgBoxStyle](../Constants/VbMsgBoxStyle) enumeration - [VbMsgBoxResult](../Constants/VbMsgBoxResult) enumeration - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/Partition.md b/docs/Reference/VBA/Interaction/Partition.md index a2a2c7b0..3e3565e7 100644 --- a/docs/Reference/VBA/Interaction/Partition.md +++ b/docs/Reference/VBA/Interaction/Partition.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/Partition redirect_from: - /tB/Core/Partition +vba_attribution: true --- # Partition {: .no_toc } @@ -52,5 +53,3 @@ SELECT DISTINCTROW Partition([Freight], 0, 500, 50) AS Range, FROM Orders GROUP BY Partition([Freight], 0, 500, 50); ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/SaveSetting.md b/docs/Reference/VBA/Interaction/SaveSetting.md index 073a92e8..4cae7bfa 100644 --- a/docs/Reference/VBA/Interaction/SaveSetting.md +++ b/docs/Reference/VBA/Interaction/SaveSetting.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/SaveSetting redirect_from: - /tB/Core/SaveSetting +vba_attribution: true --- # SaveSetting @@ -45,5 +46,3 @@ SaveSetting "MyApp","Startup", "Left", 50 ' Remove section and all its settings from registry. DeleteSetting "MyApp", "Startup" ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/SendKeys.md b/docs/Reference/VBA/Interaction/SendKeys.md index 32e011c7..05e2509b 100644 --- a/docs/Reference/VBA/Interaction/SendKeys.md +++ b/docs/Reference/VBA/Interaction/SendKeys.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/SendKeys redirect_from: - /tB/Core/SendKeys +vba_attribution: true --- # SendKeys {: .no_toc } @@ -84,5 +85,3 @@ SendKeys "%{F4}", True - [AppActivate](AppActivate) statement - [Shell](Shell) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/Shell.md b/docs/Reference/VBA/Interaction/Shell.md index a8d39de4..e29c4bc5 100644 --- a/docs/Reference/VBA/Interaction/Shell.md +++ b/docs/Reference/VBA/Interaction/Shell.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/Shell redirect_from: - /tB/Core/Shell +vba_attribution: true --- # Shell {: .no_toc } @@ -37,5 +38,3 @@ TaskId = Shell("C:\Windows\Notepad.exe", vbNormalFocus) - [AppActivate](AppActivate) statement - [SendKeys](SendKeys) statement - [VbAppWinStyle](../Constants/VbAppWinStyle) enumeration - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Interaction/Switch.md b/docs/Reference/VBA/Interaction/Switch.md index 3826f09e..7ed6cc4c 100644 --- a/docs/Reference/VBA/Interaction/Switch.md +++ b/docs/Reference/VBA/Interaction/Switch.md @@ -4,6 +4,7 @@ parent: Interaction Module permalink: /tB/Modules/Interaction/Switch redirect_from: - /tB/Core/Switch +vba_attribution: true --- # Switch {: .no_toc } @@ -42,5 +43,3 @@ End Function - [Choose](Choose) function - [If](If) function - [IIf](IIf) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Abs.md b/docs/Reference/VBA/Math/Abs.md index aab2b732..24e037c8 100644 --- a/docs/Reference/VBA/Math/Abs.md +++ b/docs/Reference/VBA/Math/Abs.md @@ -2,6 +2,7 @@ title: Abs parent: Math Module permalink: /tB/Modules/Math/Abs +vba_attribution: true --- # Abs {: .no_toc } @@ -28,5 +29,3 @@ MyNumber = Abs(-50.3) ' Returns 50.3. ### See Also - [Sgn](Sgn) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Atn.md b/docs/Reference/VBA/Math/Atn.md index 2296292e..038933e6 100644 --- a/docs/Reference/VBA/Math/Atn.md +++ b/docs/Reference/VBA/Math/Atn.md @@ -2,6 +2,7 @@ title: Atn parent: Math Module permalink: /tB/Modules/Math/Atn +vba_attribution: true --- # Atn {: .no_toc } @@ -23,5 +24,3 @@ The range of the result is -pi/2 to pi/2 radians. To convert degrees to radians, ### See Also - [Cos](Cos), [Sin](Sin), [Tan](Tan) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Cos.md b/docs/Reference/VBA/Math/Cos.md index 5da7224d..afefea36 100644 --- a/docs/Reference/VBA/Math/Cos.md +++ b/docs/Reference/VBA/Math/Cos.md @@ -2,6 +2,7 @@ title: Cos parent: Math Module permalink: /tB/Modules/Math/Cos +vba_attribution: true --- # Cos {: .no_toc } @@ -30,5 +31,3 @@ MySecant = 1 / Cos(MyAngle) ' Calculate secant. ### See Also - [Atn](Atn), [Sin](Sin), [Tan](Tan) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Exp.md b/docs/Reference/VBA/Math/Exp.md index 65558fe3..544645e2 100644 --- a/docs/Reference/VBA/Math/Exp.md +++ b/docs/Reference/VBA/Math/Exp.md @@ -2,6 +2,7 @@ title: Exp parent: Math Module permalink: /tB/Modules/Math/Exp +vba_attribution: true --- # Exp {: .no_toc } @@ -33,5 +34,3 @@ MyHSin = (Exp(MyAngle) - Exp(-1 * MyAngle)) / 2 ### See Also - [Log](Log) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Log.md b/docs/Reference/VBA/Math/Log.md index 06925bca..e5977d5b 100644 --- a/docs/Reference/VBA/Math/Log.md +++ b/docs/Reference/VBA/Math/Log.md @@ -2,6 +2,7 @@ title: Log parent: Math Module permalink: /tB/Modules/Math/Log +vba_attribution: true --- # Log {: .no_toc } @@ -42,5 +43,3 @@ MyLog = Log(MyAngle + Sqr(MyAngle * MyAngle + 1)) ### See Also - [Exp](Exp) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Randomize.md b/docs/Reference/VBA/Math/Randomize.md index a605cd67..9ca746df 100644 --- a/docs/Reference/VBA/Math/Randomize.md +++ b/docs/Reference/VBA/Math/Randomize.md @@ -2,6 +2,7 @@ title: Randomize parent: Math Module permalink: /tB/Modules/Math/Randomize +vba_attribution: true --- # Randomize {: .no_toc } @@ -34,5 +35,3 @@ MyValue = Int((6 * Rnd) + 1) ' Generate random value between 1 and 6. ### See Also - [Rnd](Rnd) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Rnd.md b/docs/Reference/VBA/Math/Rnd.md index a3a6342c..b5ce8884 100644 --- a/docs/Reference/VBA/Math/Rnd.md +++ b/docs/Reference/VBA/Math/Rnd.md @@ -2,6 +2,7 @@ title: Rnd parent: Math Module permalink: /tB/Modules/Math/Rnd +vba_attribution: true --- # Rnd {: .no_toc } @@ -51,5 +52,3 @@ MyValue = Int((6 * Rnd) + 1) ' Generate random value between 1 and 6. ### See Also - [Randomize](Randomize) statement - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Round.md b/docs/Reference/VBA/Math/Round.md index d2cf1ebd..19eab13c 100644 --- a/docs/Reference/VBA/Math/Round.md +++ b/docs/Reference/VBA/Math/Round.md @@ -2,6 +2,7 @@ title: Round parent: Math Module permalink: /tB/Modules/Math/Round +vba_attribution: true --- # Round {: .no_toc } @@ -28,5 +29,3 @@ Debug.Print Round(0.12355, 4) ' 0.1236 Debug.Print Round(0.12365, 4) ' 0.1236 Debug.Print Round(0.00005, 4) ' 0 ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Sgn.md b/docs/Reference/VBA/Math/Sgn.md index eb3eac79..32ba65fe 100644 --- a/docs/Reference/VBA/Math/Sgn.md +++ b/docs/Reference/VBA/Math/Sgn.md @@ -2,6 +2,7 @@ title: Sgn parent: Math Module permalink: /tB/Modules/Math/Sgn +vba_attribution: true --- # Sgn {: .no_toc } @@ -36,5 +37,3 @@ MySign = Sgn(MyVar3) ' Returns 0. ### See Also - [Abs](Abs) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Sin.md b/docs/Reference/VBA/Math/Sin.md index e1495cc3..3fe4ddc3 100644 --- a/docs/Reference/VBA/Math/Sin.md +++ b/docs/Reference/VBA/Math/Sin.md @@ -2,6 +2,7 @@ title: Sin parent: Math Module permalink: /tB/Modules/Math/Sin +vba_attribution: true --- # Sin {: .no_toc } @@ -30,5 +31,3 @@ MyCosecant = 1 / Sin(MyAngle) ' Calculate cosecant. ### See Also - [Atn](Atn), [Cos](Cos), [Tan](Tan) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Sqr.md b/docs/Reference/VBA/Math/Sqr.md index edc7685a..cf8655f2 100644 --- a/docs/Reference/VBA/Math/Sqr.md +++ b/docs/Reference/VBA/Math/Sqr.md @@ -2,6 +2,7 @@ title: Sqr parent: Math Module permalink: /tB/Modules/Math/Sqr +vba_attribution: true --- # Sqr {: .no_toc } @@ -24,5 +25,3 @@ MySqr = Sqr(23) ' Returns 4.79583152331272. MySqr = Sqr(0) ' Returns 0. MySqr = Sqr(-4) ' Generates a run-time error. ``` - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Math/Tan.md b/docs/Reference/VBA/Math/Tan.md index 4d93a415..3c735025 100644 --- a/docs/Reference/VBA/Math/Tan.md +++ b/docs/Reference/VBA/Math/Tan.md @@ -2,6 +2,7 @@ title: Tan parent: Math Module permalink: /tB/Modules/Math/Tan +vba_attribution: true --- # Tan {: .no_toc } @@ -30,5 +31,3 @@ MyCotangent = 1 / Tan(MyAngle) ' Calculate cotangent. ### See Also - [Atn](Atn), [Cos](Cos), [Sin](Sin) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Asc.md b/docs/Reference/VBA/Strings/Asc.md index a95ccac1..624d73bc 100644 --- a/docs/Reference/VBA/Strings/Asc.md +++ b/docs/Reference/VBA/Strings/Asc.md @@ -2,6 +2,7 @@ title: Asc parent: Strings Module permalink: /tB/Modules/Strings/Asc +vba_attribution: true --- # Asc, AscB, AscW {: .no_toc } @@ -38,5 +39,3 @@ MyNumber = Asc("Apple") ' Returns 65. ### See Also - [Chr](Chr) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Chr.md b/docs/Reference/VBA/Strings/Chr.md index 05b0023f..698637be 100644 --- a/docs/Reference/VBA/Strings/Chr.md +++ b/docs/Reference/VBA/Strings/Chr.md @@ -2,6 +2,7 @@ title: Chr parent: Strings Module permalink: /tB/Modules/Strings/Chr +vba_attribution: true --- # Chr, ChrB, ChrW {: .no_toc } @@ -43,5 +44,3 @@ MyChar = Chr(37) ' Returns %. ### See Also - [Asc](Asc) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Filter.md b/docs/Reference/VBA/Strings/Filter.md index ec8dd0fa..e9d0003e 100644 --- a/docs/Reference/VBA/Strings/Filter.md +++ b/docs/Reference/VBA/Strings/Filter.md @@ -2,6 +2,7 @@ title: Filter parent: Strings Module permalink: /tB/Modules/Strings/Filter +vba_attribution: true --- # Filter {: .no_toc } @@ -35,5 +36,3 @@ The array returned by the **Filter** function contains only enough elements to c ### See Also - [Join](Join), [Split](Split) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Format.md b/docs/Reference/VBA/Strings/Format.md index 2e1fc166..e41e6de3 100644 --- a/docs/Reference/VBA/Strings/Format.md +++ b/docs/Reference/VBA/Strings/Format.md @@ -2,6 +2,7 @@ title: Format parent: Strings Module permalink: /tB/Modules/Strings/Format +vba_attribution: true --- # Format {: .no_toc } @@ -256,5 +257,3 @@ The following table identifies characters you can use to create user-defined num ### See Also - [FormatCurrency](FormatCurrency), [FormatDateTime](FormatDateTime), [FormatNumber](FormatNumber), [FormatPercent](FormatPercent) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/FormatCurrency.md b/docs/Reference/VBA/Strings/FormatCurrency.md index 35c4b4f8..f462c42f 100644 --- a/docs/Reference/VBA/Strings/FormatCurrency.md +++ b/docs/Reference/VBA/Strings/FormatCurrency.md @@ -2,6 +2,7 @@ title: FormatCurrency parent: Strings Module permalink: /tB/Modules/Strings/FormatCurrency +vba_attribution: true --- # FormatCurrency {: .no_toc } @@ -38,5 +39,3 @@ When one or more optional arguments are omitted, the values for omitted argument ### See Also - [Format](Format), [FormatNumber](FormatNumber), [FormatPercent](FormatPercent) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/FormatDateTime.md b/docs/Reference/VBA/Strings/FormatDateTime.md index 5d0ed5a1..4d5762e6 100644 --- a/docs/Reference/VBA/Strings/FormatDateTime.md +++ b/docs/Reference/VBA/Strings/FormatDateTime.md @@ -2,6 +2,7 @@ title: FormatDateTime parent: Strings Module permalink: /tB/Modules/Strings/FormatDateTime +vba_attribution: true --- # FormatDateTime {: .no_toc } @@ -29,5 +30,3 @@ The *namedFormat* argument has the following settings: ### See Also - [Format](Format), [MonthName](MonthName), [WeekdayName](WeekdayName) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/FormatNumber.md b/docs/Reference/VBA/Strings/FormatNumber.md index e3a4636c..47bd012b 100644 --- a/docs/Reference/VBA/Strings/FormatNumber.md +++ b/docs/Reference/VBA/Strings/FormatNumber.md @@ -2,6 +2,7 @@ title: FormatNumber parent: Strings Module permalink: /tB/Modules/Strings/FormatNumber +vba_attribution: true --- # FormatNumber {: .no_toc } @@ -38,5 +39,3 @@ When one or more optional arguments are omitted, the values for omitted argument ### See Also - [Format](Format), [FormatCurrency](FormatCurrency), [FormatPercent](FormatPercent) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/FormatPercent.md b/docs/Reference/VBA/Strings/FormatPercent.md index c112db1b..eec9109c 100644 --- a/docs/Reference/VBA/Strings/FormatPercent.md +++ b/docs/Reference/VBA/Strings/FormatPercent.md @@ -2,6 +2,7 @@ title: FormatPercent parent: Strings Module permalink: /tB/Modules/Strings/FormatPercent +vba_attribution: true --- # FormatPercent {: .no_toc } @@ -38,5 +39,3 @@ When one or more optional arguments are omitted, the values for omitted argument ### See Also - [Format](Format), [FormatCurrency](FormatCurrency), [FormatNumber](FormatNumber) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/InStr.md b/docs/Reference/VBA/Strings/InStr.md index cc825fba..72d1623e 100644 --- a/docs/Reference/VBA/Strings/InStr.md +++ b/docs/Reference/VBA/Strings/InStr.md @@ -2,6 +2,7 @@ title: InStr parent: Strings Module permalink: /tB/Modules/Strings/InStr +vba_attribution: true --- # InStr, InStrB {: .no_toc } @@ -71,5 +72,3 @@ MyPos = InStr(1, SearchString, "W") ' Returns 0. ### See Also - [InStrRev](InStrRev), [Replace](Replace), [StrComp](StrComp) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/InStrRev.md b/docs/Reference/VBA/Strings/InStrRev.md index 8e24e06c..a8377a3c 100644 --- a/docs/Reference/VBA/Strings/InStrRev.md +++ b/docs/Reference/VBA/Strings/InStrRev.md @@ -2,6 +2,7 @@ title: InStrRev parent: Strings Module permalink: /tB/Modules/Strings/InStrRev +vba_attribution: true --- # InStrRev {: .no_toc } @@ -50,5 +51,3 @@ The *compare* argument can have the following values: ### See Also - [InStr](InStr) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Join.md b/docs/Reference/VBA/Strings/Join.md index 45454ed6..3e8680bf 100644 --- a/docs/Reference/VBA/Strings/Join.md +++ b/docs/Reference/VBA/Strings/Join.md @@ -2,6 +2,7 @@ title: Join parent: Strings Module permalink: /tB/Modules/Strings/Join +vba_attribution: true --- # Join {: .no_toc } @@ -19,5 +20,3 @@ Syntax: **Join(** *sourcearray* [ **,** *delimiter* ] **)** ### See Also - [Filter](Filter), [Split](Split) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/LCase.md b/docs/Reference/VBA/Strings/LCase.md index e21d2a13..ff266768 100644 --- a/docs/Reference/VBA/Strings/LCase.md +++ b/docs/Reference/VBA/Strings/LCase.md @@ -2,6 +2,7 @@ title: LCase parent: Strings Module permalink: /tB/Modules/Strings/LCase +vba_attribution: true --- # LCase {: .no_toc } @@ -30,5 +31,3 @@ LowerCase = LCase(UpperCase) ' Returns "hello world 1234". ### See Also - [StrConv](StrConv), [UCase](UCase) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/LTrim.md b/docs/Reference/VBA/Strings/LTrim.md index a3996083..eb7a8131 100644 --- a/docs/Reference/VBA/Strings/LTrim.md +++ b/docs/Reference/VBA/Strings/LTrim.md @@ -2,6 +2,7 @@ title: LTrim parent: Strings Module permalink: /tB/Modules/Strings/LTrim +vba_attribution: true --- # LTrim {: .no_toc } @@ -28,5 +29,3 @@ TrimString = LTrim(MyString) ' TrimString = "<-Trim-> ". ### See Also - [RTrim](RTrim), [Trim](Trim) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Left.md b/docs/Reference/VBA/Strings/Left.md index a86185ff..949eec04 100644 --- a/docs/Reference/VBA/Strings/Left.md +++ b/docs/Reference/VBA/Strings/Left.md @@ -2,6 +2,7 @@ title: Left parent: Strings Module permalink: /tB/Modules/Strings/Left +vba_attribution: true --- # Left, LeftB {: .no_toc } @@ -41,5 +42,3 @@ MyStr = Left(AnyString, 20) ' Returns "Hello World". ### See Also - [Len](Len), [Mid](Mid), [Right](Right) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Len.md b/docs/Reference/VBA/Strings/Len.md index 7d5a3afd..18d449b1 100644 --- a/docs/Reference/VBA/Strings/Len.md +++ b/docs/Reference/VBA/Strings/Len.md @@ -2,6 +2,7 @@ title: Len parent: Strings Module permalink: /tB/Modules/Strings/Len +vba_attribution: true --- # Len, LenB {: .no_toc } @@ -51,5 +52,3 @@ MyLen = Len(MyCur) ' Returns 8. ### See Also - [Left](Left), [Mid](Mid), [Right](Right) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Mid.md b/docs/Reference/VBA/Strings/Mid.md index 86d21060..b9fdf570 100644 --- a/docs/Reference/VBA/Strings/Mid.md +++ b/docs/Reference/VBA/Strings/Mid.md @@ -2,6 +2,7 @@ title: Mid parent: Strings Module permalink: /tB/Modules/Strings/Mid +vba_attribution: true --- # Mid, MidB {: .no_toc } @@ -48,5 +49,3 @@ MidWords = Mid(MyString, 5) ' Returns "Function Demo". - [Left](Left), [Len](Len), [Right](Right) functions - [Mid =](../../Core/Mid-equals) statement - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/MonthName.md b/docs/Reference/VBA/Strings/MonthName.md index 0f3af8a7..51a6970c 100644 --- a/docs/Reference/VBA/Strings/MonthName.md +++ b/docs/Reference/VBA/Strings/MonthName.md @@ -2,6 +2,7 @@ title: MonthName parent: Strings Module permalink: /tB/Modules/Strings/MonthName +vba_attribution: true --- # MonthName {: .no_toc } @@ -19,5 +20,3 @@ Syntax: **MonthName(** *month* [ **,** *abbreviate* ] **)** ### See Also - [FormatDateTime](FormatDateTime), [WeekdayName](WeekdayName) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/RTrim.md b/docs/Reference/VBA/Strings/RTrim.md index 02464e92..6f4c55c6 100644 --- a/docs/Reference/VBA/Strings/RTrim.md +++ b/docs/Reference/VBA/Strings/RTrim.md @@ -2,6 +2,7 @@ title: RTrim parent: Strings Module permalink: /tB/Modules/Strings/RTrim +vba_attribution: true --- # RTrim {: .no_toc } @@ -28,5 +29,3 @@ TrimString = RTrim(MyString) ' TrimString = " <-Trim->". ### See Also - [LTrim](LTrim), [Trim](Trim) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Replace.md b/docs/Reference/VBA/Strings/Replace.md index 64edf78b..51d99598 100644 --- a/docs/Reference/VBA/Strings/Replace.md +++ b/docs/Reference/VBA/Strings/Replace.md @@ -2,6 +2,7 @@ title: Replace parent: Strings Module permalink: /tB/Modules/Strings/Replace +vba_attribution: true --- # Replace {: .no_toc } @@ -52,5 +53,3 @@ The return value of the **Replace** function is a string, with substitutions mad ### See Also - [InStr](InStr), [StrComp](StrComp) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Right.md b/docs/Reference/VBA/Strings/Right.md index 111bf5fa..1b8aa50c 100644 --- a/docs/Reference/VBA/Strings/Right.md +++ b/docs/Reference/VBA/Strings/Right.md @@ -2,6 +2,7 @@ title: Right parent: Strings Module permalink: /tB/Modules/Strings/Right +vba_attribution: true --- # Right, RightB {: .no_toc } @@ -41,5 +42,3 @@ MyStr = Right(AnyString, 20) ' Returns "Hello World". ### See Also - [Left](Left), [Len](Len), [Mid](Mid) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Space.md b/docs/Reference/VBA/Strings/Space.md index 42eda3b2..ae7f4fa6 100644 --- a/docs/Reference/VBA/Strings/Space.md +++ b/docs/Reference/VBA/Strings/Space.md @@ -2,6 +2,7 @@ title: Space parent: Strings Module permalink: /tB/Modules/Strings/Space +vba_attribution: true --- # Space {: .no_toc } @@ -33,5 +34,3 @@ MyString = "Hello" & Space(10) & "World" ### See Also - [String](String) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Split.md b/docs/Reference/VBA/Strings/Split.md index f9055395..1809035f 100644 --- a/docs/Reference/VBA/Strings/Split.md +++ b/docs/Reference/VBA/Strings/Split.md @@ -2,6 +2,7 @@ title: Split parent: Strings Module permalink: /tB/Modules/Strings/Split +vba_attribution: true --- # Split {: .no_toc } @@ -75,5 +76,3 @@ Next i ### See Also - [Filter](Filter), [Join](Join) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/StrComp.md b/docs/Reference/VBA/Strings/StrComp.md index cba20de0..9035982f 100644 --- a/docs/Reference/VBA/Strings/StrComp.md +++ b/docs/Reference/VBA/Strings/StrComp.md @@ -2,6 +2,7 @@ title: StrComp parent: Strings Module permalink: /tB/Modules/Strings/StrComp +vba_attribution: true --- # StrComp {: .no_toc } @@ -51,5 +52,3 @@ MyComp = StrComp(MyStr2, MyStr1) ' Returns 1. ### See Also - [InStr](InStr) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/StrConv.md b/docs/Reference/VBA/Strings/StrConv.md index 0a8cdb26..9506636b 100644 --- a/docs/Reference/VBA/Strings/StrConv.md +++ b/docs/Reference/VBA/Strings/StrConv.md @@ -2,6 +2,7 @@ title: StrConv parent: Strings Module permalink: /tB/Modules/Strings/StrConv +vba_attribution: true --- # StrConv {: .no_toc } @@ -56,5 +57,3 @@ Next ### See Also - [Asc](Asc), [Chr](Chr), [LCase](LCase), [UCase](UCase) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/StrReverse.md b/docs/Reference/VBA/Strings/StrReverse.md index 2cb2fdc8..8c2cc9f9 100644 --- a/docs/Reference/VBA/Strings/StrReverse.md +++ b/docs/Reference/VBA/Strings/StrReverse.md @@ -2,6 +2,7 @@ title: StrReverse parent: Strings Module permalink: /tB/Modules/Strings/StrReverse +vba_attribution: true --- # StrReverse {: .no_toc } @@ -12,5 +13,3 @@ Syntax: **StrReverse(** *expression* **)** *expression* : *required* The string whose characters are to be reversed. If *expression* is a zero-length string (`""`), a zero-length string is returned. If *expression* is **Null**, an error occurs. - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/String.md b/docs/Reference/VBA/Strings/String.md index 6f4b613f..e83fe62d 100644 --- a/docs/Reference/VBA/Strings/String.md +++ b/docs/Reference/VBA/Strings/String.md @@ -2,6 +2,7 @@ title: String parent: Strings Module permalink: /tB/Modules/Strings/String +vba_attribution: true --- # String {: .no_toc } @@ -34,5 +35,3 @@ MyString = String(10, "ABC") ' Returns "AAAAAAAAAA". ### See Also - [Space](Space) function - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/Trim.md b/docs/Reference/VBA/Strings/Trim.md index 9a7032b3..c3126e68 100644 --- a/docs/Reference/VBA/Strings/Trim.md +++ b/docs/Reference/VBA/Strings/Trim.md @@ -2,6 +2,7 @@ title: Trim parent: Strings Module permalink: /tB/Modules/Strings/Trim +vba_attribution: true --- # Trim {: .no_toc } @@ -28,5 +29,3 @@ TrimString = Trim(MyString) ' TrimString = "<-Trim->". ### See Also - [LTrim](LTrim), [RTrim](RTrim) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/UCase.md b/docs/Reference/VBA/Strings/UCase.md index 5a12cfdc..da3c8492 100644 --- a/docs/Reference/VBA/Strings/UCase.md +++ b/docs/Reference/VBA/Strings/UCase.md @@ -2,6 +2,7 @@ title: UCase parent: Strings Module permalink: /tB/Modules/Strings/UCase +vba_attribution: true --- # UCase {: .no_toc } @@ -30,5 +31,3 @@ UpperCase = UCase(LowerCase) ' Returns "HELLO WORLD 1234". ### See Also - [LCase](LCase), [StrConv](StrConv) functions - -{% include VBA-Attribution.md %} diff --git a/docs/Reference/VBA/Strings/WeekdayName.md b/docs/Reference/VBA/Strings/WeekdayName.md index d5dfce1e..78b5b65d 100644 --- a/docs/Reference/VBA/Strings/WeekdayName.md +++ b/docs/Reference/VBA/Strings/WeekdayName.md @@ -2,6 +2,7 @@ title: WeekdayName parent: Strings Module permalink: /tB/Modules/Strings/WeekdayName +vba_attribution: true --- # WeekdayName {: .no_toc } @@ -35,5 +36,3 @@ The *firstdayofweek* argument can have the following values: ### See Also - [FormatDateTime](FormatDateTime), [MonthName](MonthName) functions - -{% include VBA-Attribution.md %} diff --git a/docs/_includes/VBA-Attribution.md b/docs/_includes/VBA-Attribution.md deleted file mode 100644 index 54d3a541..00000000 --- a/docs/_includes/VBA-Attribution.md +++ /dev/null @@ -1 +0,0 @@ -License: [CC-BY-4.0](https://github.com/MicrosoftDocs/VBA-Docs/blob/main/LICENSE) Code license: [MIT](https://github.com/MicrosoftDocs/VBA-Docs/blob/main/LICENSE-CODE) Attribution: [VBA-Docs](https://github.com/MicrosoftDocs/VBA-Docs/tree/main) \ No newline at end of file diff --git a/docs/_includes/footer_custom.html b/docs/_includes/footer_custom.html new file mode 100644 index 00000000..4d993fa4 --- /dev/null +++ b/docs/_includes/footer_custom.html @@ -0,0 +1,6 @@ +{%- if site.footer_content -%} +

{{ site.footer_content }}

+{%- endif -%} +{%- if page.vba_attribution -%} +

License: CC-BY-4.0 Code license: MIT Attribution: VBA-Docs

+{%- endif -%}