Jump to content

WordBASIC

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by YellowOnline (talk | contribs) at 20:54, 17 December 2013 (Capital letters for BASIC). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
WordBASIC
DeveloperMicrosoft
First appeared1993
OSMicrosoft Windows, Mac OS X
LicenseEULA
Influenced by
QuickBASIC

WordBASIC (VBA) 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]

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

References