CompuServe Archive

This is an archive of CompuServe forum messages from 1985 to 1995, as saved in transcripts by John Foust.

Search Results (12 messages)

From: Spec Bowers Mac Developers Forum · Dev. Environments March 14, 1994 2:12 PM
We have uploaded to Lib 13 (?) an incremental update, AM155.sea, from version 1.5.4 to version 1.5.5 of AppMaker. This new update supports Metrowerks C (i.e. procedural programming). A future version of AppMaker will support the PowerPlant class library. For users with older versions (1.5.x) of AppMaker, a floppy update…
#163687 Drawing in Windows Message #163763
From: Spec Bowers Mac Developers Forum · Tools/Debuggers March 13, 1994 9:02 PM
John, Your app has to be able to respond to update events and redraw its windows. So you'll have to have a bunch of code that draws to the screen. If that code is in one place, the update handler, your app will be much simpler than if you have…
#163342- Drawing in Windows Message #163425
From: Spec Bowers Mac Developers Forum · Tools/Debuggers March 11, 1994 10:52 AM
In a multi-window environment – Mac, Windows, Motif, etc. – there is a very important technique which is not immediately obvious, not emphasized in the documentation, but which makes all drawing work much better. You probably are writing directly into a window in response to a user event. E.g. when…
#7240 #AM TCL Lists Message #7287
From: Spec Bowers Symantec Dev Tools Forum · TCL & OOP July 21, 1993 11:40 AM
Burt, > That is, the instance variable is not global, so what do I refer to when > I want to say "x->addrow()"? What is 'x' and where do I get it from if > it is not a 'gX' global? There are two "x"s. One is the list pane…
#7179 #List in Dialog Message #7237
From: Spec Bowers Symantec Dev Tools Forum · Think C July 20, 1993 7:00 PM
Darren, Even if the instructions in THINK Reference were correct, it's only half the solution. You need a user draw procedure (the easy part). You also need a dialog filter proc (ther harder part). (The following is a commercial announcement…) The fastest and easiest way to implement a list in…
#132527 AppMaker Demo Message #132543
Gerry, The AppMaker Demo is in Lib 13, Tools/Debuggers, keywords "AppMaker" and "Demo". It's several files so that you can download only what you want. Spec
#7194 #AM TCL Lists Message #7234
From: Spec Bowers Symantec Dev Tools Forum · TCL & OOP July 20, 1993 6:23 PM
Burt, The TCL does not use the Mac List Manager. That's why it doesn't suffer from the many limitations of the List Manager. In the TCL, you'll usually use an ArrayPane which is a Table set up to use an Array. The Table provides all the user interface for a…
Andy, Yes, AppMaker 1.5.4 and 1.5.4X are for TC6 and SC++. I'm pretty sure they won't work with TC5. AppMaker 1.5.3 is the TC5 equivalent to 1.5.4X. Spec
From: Spec Bowers Symantec Dev Tools Forum · TCL & OOP July 19, 1993 11:43 AM
Tony, The problem that Burt had and that you are having is that CPlusLib must be in a resident segment. It's not an AppMaker problem or a TCL problem or a compiler problem. It's just that there are some libraries (CPlusLib and oopsDebug++, possibly others) that must be resident. In…
#7053 #AM 1.5.4X & TCL Message #7075
From: Spec Bowers Symantec Dev Tools Forum · TCL & OOP July 16, 1993 1:19 PM
Burt, Are your radio buttons in a window or in a dialog (modal or modeless). I think that our new code for radio groups is generated in modal dialogs. That's the major part we changed in 1.5.4X. We might not have done it yet elsewhere. Spec
#7015 #TCL Radio Buttons Message #7034
From: Spec Bowers Symantec Dev Tools Forum · TCL & OOP July 15, 1993 11:59 AM
Burt, There are at least two different ways to manage radio buttons in the TCL. Get/SetStationID is one of the ways. (Setting a button to ON and letting ProviderChanged turn off the other buttons is the other way.) Unfortunately, as you have discovered, the ID field of a pane is…
#131873 AppMaker Resources Message #131915
Dave, The AppMaker document *is* a resource file. You can open it and modify it with ResEdit. Conversely, you can open any existing resource file with AppMaker. When you generate code with AppMaker, it looks at whatever resources are in the resource file at that time. So you can make…