MacTech Network:   MacForge.net  |  Computer Memory  |  Register Domains  |  Printer Supplies  |  Cables  |  iPod Deals  |  Mac Deals  |  Mac Book Shelf


  MacTech Magazine

The journal of Macintosh technology

 
 
FileGenius: File Transfer & Management

Magazine In Print
  About MacTech  
  Home Page  
  Subscribe  
  Archives DVD  
  Submit News  
  Submit a Tip!  
  Get a copy of MacTech RISK FREE  
Google
Entire Web
mactech.com
Mac Community
More...
MacTech Central
  by Category  
  by Company  
  by Product  
MacTech News
  MacTech News  
  Previous News  
  MacTech RSS  
Article Archives
  Show Indices  
  by Volume  
  by Author  
  Source Code FTP  
Inside MacTech
  Writer's Kit  
  Editorial Staff  
  Editorial Calendar  
  Back Issues  
  Advertising  
Contact Us
  Customer Service  
  MacTech Store  
  Legal/Disclaimers  
  Webmaster Feedback  

Moving from Microsoft Office VBA to AppleScript:
MacTech's Guide to Making the Transition

Introduction  |  Table of Contents

Page Prev and Page Next buttons at bottom of the page.

Would you like a hard copy
or PDF of this Guide?

You can get a hard copy sent to you
AND download a PDF now ($19.95)
, or

... just download a PDF ($9.95).

Either way, you get a complimentary
MacTech Magazine Subscription

courtesy of the
Microsoft Mac Business Unit


 

  Magazine Reg. Price:  $50.00 value  
  Guide Reg. Price:  $40.00 value  
  You Save:  over $80.00!  

April, 2007
Page 43



Normally in AppleScript, you expect to be able to specify many, or most, of the properties of a workbook in a with properties parameter, right at creation time, as in Chapter 2's example of making a new table at a document. (A scripter would expect that only elements, if any are needed, would have to be added afterwards.) That turned out not to be possible with Word documents, but it is possible with Excel, I am happy to report.

All of the properties listed in the dictionary as read/write, with the exception of those that require that a workbook first be set up as a shared workbook, can be set with properties {…} in the make new command. In VBA, you would have to set these after making the new workbook and setting a reference to it in a variable.

You can do that in AppleScript, too, as we will see below, but you can also set any of the following properties at inception. I have set all of them here to something other than the default values, and they all work, including setting passwords:

tell application "Microsoft Excel"

     set newWkbk to make new workbook with properties ¬

          {accept labels in formulas:false, conflict resolution

              local session changes, date 1904

              false, display drawing objects

              placeholders, personal view list settings

              false, personal view print settings

              false, precision as displayed:true, save link values

              false, update remote references

              false, template remove external data

              true, keep change history

              true, remove personal information

              true, password:"yyyyy", write password

              "zzzzz", read only recommended

              true, workbook comments:"Hi, there"}

end tell

You can verify that these are non-default settings, if you wish, by first running

      properties of active workbook

on a regular blank new workbook, copy the result to a text editor, and then run it again after making another workbook using the script above with non-default property values. Compare the results. If you save and then re-open the workbook, you will be asked for passwords, and all the other properties, including the ones recorded in Excel/Preferences/Calculation/Document Properties are all set already.

Setting properties at inception in the make new command is a useful time-saver, and something to consider when you start writing your own AppleScripts in the future. Probably when converting your VBA macros, it is simpler to just mimic the standard VBA macro line by line:

   Dim newWkbk As Workbook

 

Set newWkbk = Workbooks.Add

With newWkbk

.AcceptLabelsInFormulas = False

.PrecisionAsDisplayed = True

' etc.

End With

In AppleScript:

tell application "Microsoft Excel"

     set newWkbk to make new workbook

     tell newWkbk

          set accept labels in formulas to false

          set precision as displayed to true

          -- etc

     end tell



 


Click here to find out more about our best subscription bundle deal ever!
2 years of the magazine, and the all new MacTech DVD ... at 70% off!



Click on the cover to
see this month's issue!

TRIAL SUBSCRIPTION
Get a RISK-FREE subscription to the only technical Mac magazine!
 
 


MacTech Magazine. www.mactech.com
Toll Free 877-MACTECH, Outside US/Canada: 805-494-9797

Register Low Cost (ok dirt cheap!) Domain Names in the MacTech Domain Store. As low as $1.99!
Save on brand compatible and name brank ink jet and laser supplies.
Save on long distance * Upgrade your Computer
Movies with No Late Fees!

See local info about Westlake Village
SJ * BRJ * BJ * OJ * NITS
Staff Site Links



All contents are Copyright 1984-2008 by Xplain Corporation. All rights reserved.

MacTech is a registered trademark of Xplain Corporation. Xplain, Video Depot, Movie Depot, Palm OS Depot, Explain It, MacDev, MacDev-1, THINK Reference, NetProfessional, NetProLive, JavaTech, WebTech, BeTech, LinuxTech, Apple Expo, MacTech Central and the MacTutorMan are trademarks or service marks of Xplain Corporation. Sprocket is a registered trademark of eSprocket Corporation. Other trademarks and copyrights appearing in this printing or software remain the property of their respective holders.