TweetFollow Us on Twitter

Think Pascal, Reference
Volume Number:8
Issue Number:1
Column Tag:Tools of the Trade

Think Pascal 4.0 & Think Reference

By Dave Kelly, Ontario, California

THINK Pascal 4.0 is System 7.0 Compatible

Remarkably, most of my software still runs after I upgraded to System 7.0. Most of the software only has minor incompatibilities with System 7.0. That is, it works fine as long as you don’t need virtual memory or 32-bit addressing capabilities. THINK Pascal 3.0 falls into that category. Version 3.0 still works fine as long as you don’t need virtual or 32-bit addressing. You can probably get by with version 3.0 and avoid the upgrade to 4.0 if you don’t mind missing a few features. There are some nice additions to THINK Pascal 4.0. Hopefully, I can show some of you why you should upgrade to version 4.0. Some of you will see why you shouldn’t upgrade.

Upgrading to version 4.0 is like driving a new car. The old car, depending on the model, still provides adequate transportation (it gets you there most if not all of the time). The new car provides the latest and greatest in new technology and gadgetry that you won’t want to do without once you get used to using it. THINK Pascal 4.0 is a new model of the same trusted car that now has new gadgetry added and a few technology features to keep up with the times.

Keeping Up With The Times

Keeping up to date is the first reason for upgrading to version 4.0. Full System 7.0 compatibility is important. Many developers have had the pre-release versions of the THINK libraries for use with version 3.0 that have provided system 7.0 support for quite a while now. They may be good enough, but if you want to be sure you have the real thing, you’ll want to upgrade to version 4.0. If you aren’t writing System 7.0 compatible software, then you won’t need the update.

THINK Pascal 4.0 supports virtual memory and runs in 32-bit mode. Applications created by THINK Pascal v2 and v3 always did run in 32-bit mode, but version 4.0 also supports all of the toolbox routines in Inside Macintosh Volume VI. The THINK Class Library (now version 1.1) supports system 7.0 as well, including AppleEvents and aliases.

You can create an alias of the project file and place it anywhere. However, since THINK Pascal uses the original project file location, aliases aren’t supported more than that. For example, you can’t refer to an alias of the resource file. The original resource file must still reside in the same folder as the original project. You can’t put an alias of a file into your project either.

The Gadgets

Some of THINK Pascal 4.0’s new gadgets will appeal to you. My favorite is the Instant Project. Instant Project helps you anytime you create a new project from scratch. If your projects are small, you probably create new projects more often. In that case, you will especially like Instant Project if you create a lot of projects. When you select the Instant Project option in the New Project dialog, THINK Pascal automatically creates your basic project files for you. No, it doesn’t do the coding for you, but it does get you started. A new folder is created with your

project and a source file (already installed in the project). The project now contains “Runtime.lib”, “Interface.lib”, and your source file. The source file is already set up with program, begin and end. statements.

Adding several files to a project is easier too. Hold down the option key and look in the project menu. The “Add File ” command will change to “Add Files ” which lets you select multiple files for adding to your project.

A few extensions have been added to THINK Pascal 4.0 to make working with larger files easier too. Any kind of project can have multiple segments. In version 3.0, you could only have a multiple-segment application, device drivers, and desk accessories. With 4.0, cdevs, INITs, XCMDs, and XFCNs can also have multiple segments.

There is a new and improved version of the AppleEdit DA that is also 32-bit clean. It’s not really much to brag about, but you can print out your files with it. Speaking of printing, you can print out the text and drawing windows with THINK Pascal’s print command. Or if you choose “Save as ” then a TeachText file is created for the text window and an object draw file (part of the THINK Pascal tutorial) is created for the drawing window. I don’t know why they didn’t use TeachText 7.0 files for drawings instead of object draw files.

The uses clause is now supported in units used by other units. If your unit uses other units, any unit that uses your unit also uses those units automatically. uses can also be used in a units implementation section.

Debugging has improved too. You can choose which debugger (MacsBug or another) you will use when THINK Pascal comes to an exception. When you use LightsBug you can open a new LightsBug window while the first one is still open. Searching is faster and easier with multiple file searches. Compiling is faster now too (up to 60,000 lines per minute on a Macintosh IIci). The profiler is easier to use under version 4.0. You don’t need to add any function calls to your program to use the profiler. You just need to turn on the “Profile” option in the Compile Options dialog.

There are still other improvements that I don’t have time to mention here. If you don’t have Pascal and are still deciding which compiler to get, this is the one! THINK Pascal is still the smoothest, easiest to use Pascal compiler around. Upgrading may be a tough choice though since THINK Pascal 3.0 is very good, too. The upgrade for registered THINK Pascal users is $69. THINK Pascal 4.0 is still the best Pascal available for any computer, but it’s only found on the Macintosh!

THINK Reference

In the early days of Macintosh programming, information was much more difficult to come by. If you were not a “certified” developer you especially had trouble getting information. Fortunately, Apple standardized the Macintosh user interface by formally creating Inside Macintosh (IM). IM volumes I-III have been the base standard since the beginning with only minor modifications, although major additions have been made from time to time (volumes IV-VI). Programmers that follow IM will find that their code will run now and still run in the future.

Even after you are familiar with IM and the standard routines that you like to use, it will be only a matter of time before you will need to consult IM for more detailed information. Some of you may have programming sessions that include IM Volumes I-III spread out on your right, vol. IV on your left, vol. V on a chair behind you. If you can find room for vol. VI on your desk you’ll be lucky. Of course, some of you may be using the HyperCard version of IM that you can find on developer CDs (CDs that Apple sends to Apple Partners and Apple Associates). However, running HyperCard along with your development system could be somewhat memory intensive, especially if you don’t have much RAM.

When I talked about “Just Enough Pascal” (JEP) a few issues ago, I noted that JEP could be used as a Pascal reference. It should not be used as a Macintosh programming reference. JEP is limited to the subjects covered in its tutorial.

Symantec must have realized that there was still a need for a good detailed reference to Macintosh programming. The THINK Reference has been especially developed for Macintosh programmers. Reference covers IM volumes I-V with a few exceptions. AppleTalk, the Slot Manager, the Sound Manager and SANE (Standard Apple Numerics Engine) are not covered.

Symantec’s coverage of IM is not just another regurgitation of the same material that is found in IM. Reference is much more than that. If you program in C, you’ll especially like Reference because all of the examples are given in C style format. If you have trouble translating IM (Pascal) functions and procedures into C, then Reference is a great way to understand IM. If you only program in Pascal and don’t understand the C style declarations, Reference gives a section on “Pascal & C” that gives you “all you need to know” about the differences in the declarations. The Copy Template item in the Edit menu allows you to copy a template of a particular function or procedure. You can choose to copy the template in either C or Pascal format. This is very useful when you are using Reference with your compiler.

Each page of the reference includes a description and usually an example of the use of each routine. The examples are very good about suggesting ways to make use of each routine. The big problem is that there is no way to copy any part of the examples or description. The page can be printed, but it would be more useful to be able to paste the examples directly in source code to try them out. The descriptions could also be used to help document your source code. This is a major deficiency of THINK Reference.

Each page can be conveniently printed individually, so that you can study each one off-screen. It would be easier to print them if several pages could be printed at once, but you have to go to each page and then print the page.

Besides being able to look up any Macintosh Toolbox routine by trap name or by manager, THINK Reference includes hypertext links to let you jump directly to related subjects. Hyperlinks appear as underlined words. Bold underlined hyperlinks usually refer to Toolbox routines. Plain underlined hyperlinks refer to data structures, variables or fields of records. The capability to jump to other Reference pages is what makes Reference most useful.

A set of buttons are provided for navigation through the pages of THINK Reference. Clicking on one of the buttons brings up a pop up menu. You can use the “Go Back” button to return to any section that you had previously visited. The “See Also” button refers you to subjects that are related to the page you are currently viewing. “Bookmarks” is a button that brings up a pop up menu that has user-defined items to move to a topic quickly. As you can see, it is easy to move around freely from page to page.

A little over 2 megabytes of disk space is required for the THINK Reference database. For smaller configurations, it would have been desirable to have a smaller database of just the templates with the ability to copy templates. Programmers with larger configurations would like to see more included in the Reference such as descriptions of C and Pascal libraries (such as the ANSI library in C or the Runtime.lib library in Pascal). It would also be desirable to have the ability to update the Reference with their own notes.

In summary, if you don’t already have some sort of reference system, you should consider THINK Reference. Overall, the deficiencies I mentioned are minor compared to the overall usefulness of the database. Maybe some improvements will be made in the next version.

THINK Pascal requires 1 megabyte of RAM minimum; 2 megabytes strongly recommended. 4Mb recommended for use with THINK Class Library or MacApp.

THINK Reference requires 1 megabyte of RAM but works best with 2 or more megabytes when using MultiFinder. Reference database requires 3.5 Mb free for installation; database requires a little more than 2 megabytes of Hard Disk and System 6.0.5 or higher for both Pascal and Reference.

For more information, contact:

Symantec Corporation

10201 Torre Avenue, Cupertino, CA. 95014

Phone: 408/253-9600

Retail Price: $99 for THINK Reference.

$249 for THINK Pascal.

$69 Upgrade price from any previous version of THINK Pascal.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Whitethorn Games combines two completely...
If you have ever gone fishing then you know that it is a lesson in patience, sitting around waiting for a bite that may never come. Well, that's because you have been doing it wrong, since as Whitehorn Games now demonstrates in new release Skate... | Read more »
Call of Duty Warzone is a Waiting Simula...
It's always fun when a splashy multiplayer game comes to mobile because they are few and far between, so I was excited to see the notification about Call of Duty: Warzone Mobile (finally) launching last week and wanted to try it out. As someone who... | Read more »
Albion Online introduces some massive ne...
Sandbox Interactive has announced an upcoming update to its flagship MMORPG Albion Online, containing massive updates to its existing guild Vs guild systems. Someone clearly rewatched the Helms Deep battle in Lord of the Rings and spent the next... | Read more »
Chucklefish announces launch date of the...
Chucklefish, the indie London-based team we probably all know from developing Terraria or their stint publishing Stardew Valley, has revealed the mobile release date for roguelike deck-builder Wildfrost. Developed by Gaziter and Deadpan Games, the... | Read more »
Netmarble opens pre-registration for act...
It has been close to three years since Netmarble announced they would be adapting the smash series Solo Leveling into a video game, and at last, they have announced the opening of pre-orders for Solo Leveling: Arise. [Read more] | Read more »
PUBG Mobile celebrates sixth anniversary...
For the past six years, PUBG Mobile has been one of the most popular shooters you can play in the palm of your hand, and Krafton is celebrating this milestone and many years of ups by teaming up with hit music man JVKE to create a special song for... | Read more »
ASTRA: Knights of Veda refuse to pump th...
In perhaps the most recent example of being incredibly eager, ASTRA: Knights of Veda has dropped its second collaboration with South Korean boyband Seventeen, named so as it consists of exactly thirteen members and a video collaboration with Lee... | Read more »
Collect all your cats and caterpillars a...
If you are growing tired of trying to build a town with your phone by using it as a tiny, ineffectual shover then fear no longer, as Independent Arts Software has announced the upcoming release of Construction Simulator 4, from the critically... | Read more »
Backbone complete its lineup of 2nd Gene...
With all the ports of big AAA games that have been coming to mobile, it is becoming more convenient than ever to own a good controller, and to help with this Backbone has announced the completion of their 2nd generation product lineup with their... | Read more »
Zenless Zone Zero opens entries for its...
miHoYo, aka HoYoverse, has become such a big name in mobile gaming that it's hard to believe that arguably their flagship title, Genshin Impact, is only three and a half years old. Now, they continue the road to the next title in their world, with... | Read more »

Price Scanner via MacPrices.net

Deal Alert! B&H Photo has Apple’s 14-inch...
B&H Photo has new Gray and Black 14″ M3, M3 Pro, and M3 Max MacBook Pros on sale for $200-$300 off MSRP, starting at only $1399. B&H offers free 1-2 day delivery to most US addresses: – 14″ 8... Read more
Department Of Justice Sets Sights On Apple In...
NEWS – The ball has finally dropped on the big Apple. The ball (metaphorically speaking) — an antitrust lawsuit filed in the U.S. on March 21 by the Department of Justice (DOJ) — came down following... Read more
New 13-inch M3 MacBook Air on sale for $999,...
Amazon has Apple’s new 13″ M3 MacBook Air on sale for $100 off MSRP for the first time, now just $999 shipped. Shipping is free: – 13″ MacBook Air (8GB RAM/256GB SSD/Space Gray): $999 $100 off MSRP... Read more
Amazon has Apple’s 9th-generation WiFi iPads...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Discounted 14-inch M3 MacBook Pros with 16GB...
Apple retailer Expercom has 14″ MacBook Pros with M3 CPUs and 16GB of standard memory discounted by up to $120 off Apple’s MSRP: – 14″ M3 MacBook Pro (16GB RAM/256GB SSD): $1691.06 $108 off MSRP – 14... Read more
Clearance 15-inch M2 MacBook Airs on sale for...
B&H Photo has Apple’s 15″ MacBook Airs with M2 CPUs (8GB RAM/256GB SSD) in stock today and on clearance sale for $999 in all four colors. Free 1-2 delivery is available to most US addresses.... Read more
Clearance 13-inch M1 MacBook Airs drop to onl...
B&H has Apple’s base 13″ M1 MacBook Air (Space Gray, Silver, & Gold) in stock and on clearance sale today for $300 off MSRP, only $699. Free 1-2 day shipping is available to most addresses in... Read more
New promo at Visible: Buy a new iPhone, get $...
Switch to Visible, and buy a new iPhone, and Visible will take $10 off their monthly Visible+ service for 24 months. Visible+ is normally $45 per month. With this promotion, the cost of Visible+ is... Read more
B&H has Apple’s 13-inch M2 MacBook Airs o...
B&H Photo has 13″ MacBook Airs with M2 CPUs and 256GB of storage in stock and on sale for $100 off Apple’s new MSRP, only $899. Free 1-2 day delivery is available to most US addresses. Their... Read more
Take advantage of Apple’s steep discounts on...
Apple has a full line of 16″ M3 Pro and M3 Max MacBook Pros available, Certified Refurbished, starting at $2119 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free... Read more

Jobs Board

Medical Assistant - Surgical Oncology- *Apple...
Medical Assistant - Surgical Oncology- Apple Hill Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Read more
Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Business Analyst | *Apple* Pay - Banco Popu...
Business Analyst | Apple PayApply now " Apply now + Apply Now + Start applying with LinkedIn Start + Please wait Date:Mar 19, 2024 Location: San Juan-Cupey, PR Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.