WordBASIC
WordBASIC was a subset of Microsoft QuickBASIC customized for word-processing. It was replaced by Visual Basic for Applications (VBA) when Word 97 was released. Contrarily to VBA, WordBasic was not object-oriented but consisted of a flat list of approximately 900 commands.[1]
Developer | Microsoft |
---|---|
First appeared | 1989 |
OS | Microsoft Windows, Mac OS X |
License | Commercial proprietary software |
Influenced by | |
QuickBASIC |
Example code
The following code snippets show the difference between WordBasic and VBA with a "Hello, World!" example:[2]
WordBasic:
Sub MAIN
FormatFont .Name = "Arial", .Points = 10
Insert "Hello, World!"
End Sub
VBA:
Public Sub Main()
With Selection.Font
.Name = "Arial"
.Size = 10
End With
Selection.TypeText Text:="Hello, World!"
End Sub
gollark: Presumably, your available processing power is taken up by the existing stuff we run on your brain.
gollark: Anyway, it's too late, as our previous ones are already occupying ██% of human visual cortices.
gollark: I have sent this before, you know.
gollark: Yes. Soon my self replicating whiteboard will be ready.
gollark: The most obvious explanation is a secret conspiracy limiting access to powerful whiteboard technologies.
References
- Conceptual Differences Between WordBasic and Visual Basic, 07/11/2006, Microsoft Docs Archived
- Converting WordBasic Macros to Visual Basic, 07/11/2006, Microsoft Docs Archived
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.