Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Word Basic in office 2000
Message
From
28/01/2000 04:09:47
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
 
To
27/01/2000 17:48:19
Jim Rieck
Quicken Loans/Rock Financial/Title Sourc
Livonia, Michigan, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00323853
Message ID:
00323960
Views:
17
>Does anyone know if MickySoft took their word basic components out of Office 2000? If so what did they replace it with if anything?
>
>thanks
>
>Jim


Jim,
If MickySoft is not another way of saying MS ignore this message (there are too many softwares that I just can't be sure if you're referring a 3rd party or not :)
Word.basic commands "nearly" work as is in w97 and w2000 too. There are few commands that doesn't work at all or doesn't work as intended. Replacement is word.application. Word.Application itself has a property called "WordBasic" that lets you use inline word.basic commands. e.g.:
oWord = createobject("Word.Application")
with oWord
  .WordBasic.FileOpen(..)
* Identical to - if you're not very strict on definitions :)
  .Documents.Open(...)

  .WordBasic.editbookmark("myBookmark",,1)   && Add bookmark
* Identical to
  .ActiveDocument.Bookmarks.Add("myBookmark")
endwith
In help file (vbawrd9.chm) see "Visual Basic Equivalents for WordBasic Commands".
word.basic has less than 1000 commands that could be run anytime. OTOH word.application is more like (or is) OOP. There are objects and PEMs of those objects :)
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Reply
Map
View

Click here to load this message in the networking platform