TweetFollow Us on Twitter

Oct 89 Mousehole
Volume Number:5
Issue Number:10
Column Tag:Mousehole Report

Mousehole Report

By Rusty Hodge & Larry Nedry, Mousehole BBS

From: Willcox

Re: Deleting a Folder

I am having trouble deleting a folder using the Low Level File Manager routines. I have created a folder and put some temporary files in it. At the end of my program, I would like to delete this directory. I am trying to use PBHDelete. I first delete all the files in this folder. Then, I try to close the working directory with PBCloseWD since I opened it with PBOpenWD. Then I call PBHDelete. I get error -47, fBsyErr, File is busy. I have tried various parameters in PBHDelete (WDid, vRefnum, name of folder), but I still get -47. Also, when I do this with MultiFinder turned off, I can not delete the folder from the Finder, it too says the folder is busy. Help.

From: Adept

Re: Deleting a Folder

When doing any PBOpen calls, you have to be sure to set your ioWDProcID to ‘ERIK’, the magic ‘longint’, otherwise it will be undeletable by the finder (until reboot), You might be calling PBClose with something != PBOpen and != to ‘ERIK’..

From: Mikec

Re: Setting current folder

Bryce, I am excited to see your message #878 that creates new folders. I have been wanting to do this for an application for a long time. But I am just starting to program and have little idea how to fit your listed code into a procedure that will create the folder. Can you help me by listing a more complete procedure or uploading a text file? I use LSP and would be delighted to hear from you.

From: Tony

Re: Setting current folder

Mike, Below is the list of a function call CreateFolder. I believe this will do what you want. It takes as parameter the name of the folder and the volume reference of where to put the folder. In return, it will pass back and errorcode and the FolderID. The folderId is in fact the Directory Id and can be used a vRefNum (volume reference no) in any of your File I/O calls.

Function CreateFolder(FolderName:str255; vRefNum : integer;
varFolderId:longint):OSErr;
Var
 Blk:HParamBlockRec;
 errorcode :OSErr;
begin
   with blk do
    begin
     ioCompletion := nil;
     ioNamePtr := @FolderName;
     ioVrefNum := vRefNum;
     ioDirId := 0;
   end;
  errorcode := PBDirCreate(@blk,false);
 FolderID := blk.ioDirId;
 CreateFolder := errorcode;
end;

Hope this helps.

From: Shaper

Re: List Manager problem...

Does anyone have any source code for the List Manager routines? I got the source to the LDEF’s in the Think Pascal library on CompuServe and tried to use that source but it’s kind of strange because he used custom LDEFs with variable column numbers. I want to use the LDEF that comes in the system file to make a list of people’s names, and I can get the list to appear but the only way to scroll it is to click on someone’s name and then drag downward to scroll down - the arrow buttons don’t work for some reason. Also, it doesn’t always hilite the cell that you click on, so you have to keep clicking on different parts of the list cntl until one does hilite before you can scroll up or down...

From: Jumpcut

Re: List Manager problem...

If you don’t specify a LDEF, the List Manager will use the standard system LDEF. You can then set the list’s selFlags to make sure things get selected properly. CHeck around page 270 of IMIV. I was having similar problems after I changed the font and style of the window the list was in. First thing to check - make sure your window is a noGrowDocProc, or else the grow box (whether you draw one or not) will keep mouseDown events from scrolling the list down. I’m sure you’re using LClick, so I won’t bother to mention that. My only other suggestion is to avoid the obviously stupid (unlike me) and remember to change the font & face before creating the list.

From: Inbox

Re: Endless lists

I’m doing a numerical analysis of a chaos/pattern generation problem, but I’ve been temporarily delayed by the need of array-like structures with their original size unknown. Beginner C skills decrease my programming self-confidence, so I would like to hear you comments on the topic of lists... I did the following:

  typedef struct mystruct{
            int myint;
            mystructptr nextstruct;
            } *mystructptr;

But, I cannot do that because *mystructptr isn’t yet recognized by the compiler. Should I make nextstruct a ptr and then coerce it when creating a new structure? If not, what are your suggestions?

Thanks for listening, _inBox_

P.S. Is there any C trick for making self-referencing things like this one

(I mean a language directive of some kind...)

From: Siegel

Re: Endless lists

For a self-referential structure (say, a linked list): .

typedef struct element {
  int field1;
  long field2;
  struct element *next;
} element, *elementPtr;

Since this is the Mac, why not use a handle-based structure to support an array of dynamic size? As in:

typedef int *PInt, **HInt;
.
{
 Hint myIntHandle = NewHandle(0);
.
 /* sorry for the caps slipup above */
 SetHandleSize(myIntHandle, (long)nIntegers * sizeof(int));
 (*myIntHandle)[nIntegers - 1] = someValue; /* assign the last element 
*/
}

From: Inbox

Re: Endless lists

Thanks a lot. And just when I thought that I was out of the woods....

AAARGGGHHHH !!!!! The Mac’s random number generator turns out to be unusable by any self-respecting chaosologist for any purpose. I used statistical analysis to determine its bias, and then compared it to tables of acceptable fluctuations. And guess what, it SUCKS!!! (pardon the language)... So I set out to write a random number generator. Done. And, here comes the big one: how can I raise small integers to humongous powers??!! For example, 5^10000 will definitely cause an overflow for C’s “pow” function. The max number that can be stored in a 64 bit variable is 1.84467E19. But, 5^10000 or something similar just blew me out of the water.

Any suggestions are very very welcome. (and needed....).........

From: Apage

Re: Endless lists

If you’re using a Mac II the 881 uses the extended precision format to 80 bits. If you have a mac with an 882 (which can be dropped in with no trouble and few tools), the precision goes out to 96 bits.

From: Inbox

Re: Endless lists

Ah, but are you talking about the mantissa or the whole number? For example, my HP 28S (calculator) has a 12-digit mantissa and allows powers up to 500. With the 96 bit format the max is 28. Maybe the calculator scheme holds for the Mac?! Then only the mantissa is limited by the bits of a format. Take Matematica, for example... It can do number crunching with infinite precision and allows mega-powers. I guess it uses its own package but....

From: Tron

Re: Receiving events from a DA

Does anyone know how to receive events from a DA that is written in LSC? In IM #1, page 446, it says that the control routine receives in the csParam field a pointer to an event record. Hence:

     case 2:   /*  control  */
        switch (p->csCode) {
           case accEvent
               DoEvent((EventRecord *)p->csParam);
               break;
        }

I figured that this would work, yet I cannot handle any events in my DoEvent routine. Anyone ever dealt with DA’s from LSC before?

From: Macguru

Re: Receiving events from a DA

Have you set up your DA’s Event mask to tell it what events you are expecting to receive? This is done in the header.

 
AAPL
$445.15
Apple Inc.
+3.01
MSFT
$34.27
Microsoft Corpora
+0.12
GOOG
$873.32
Google Inc.
-9.47

MacTech Search:
Community Search:

Software Updates via MacUpdate

Evernote 5.1.1 - Create searchable notes...
Evernote allows you to easily capture information in any environment using whatever device or platform you find most convenient, and makes this information accessible and searchable at anytime, from... Read more
SketchUp 13.0.3688 - Create 3D design co...
SketchUp is an easy-to-learn 3D modeling program that enables you to explore the world in 3D. With just a few simple tools, you can create 3D models of houses, sheds, decks, home additions,... Read more
Flavours 1.0.8 - Create and apply themes...
Flavours allows users to create, apply, and share beautifully designed themes. Classy - Give your Mac a gorgeous new look by applying delicious themes! Easy - Unleash your creativity and make your... Read more
GarageSale 6.6b10 - Create outstanding e...
GarageSale is a slick, full-featured client application for the eBay online auction system. Create and manage your auctions with ease With GarageSale, you can create, edit, track, and manage... Read more
Twitter 2.2.1 - Official Twitter client...
Twitter (was Tweetie) is a Twitter client with a variety of features. Important Note: As of January 2011, AteBit's Tweetie application has been acquired and renamed by Twitter. Version 1.2.8 of the... Read more
SteerMouse 4.1.6 - Powerful third-party...
SteerMouse is an advanced driver for USB and Bluetooth mice. It also supports Apple Mighty Mouse very well. SteerMouse can assign various functions to buttons that Apple's software does not allow,... Read more
Google Chrome 27.0.1453.93 - Modern and...
Google Chrome is a Web browser by Google, created to be a modern platform for Web pages and applications. It utilizes very fast loading of Web pages and has a V8 engine, which is a custom built... Read more
Labels & Addresses 1.6.5 - Powerful...
Labels & Addresses is a home and office tool for printing all sorts of labels, envelopes, inventory labels, and price tags. Merge-printing capability makes the program a great tool for holiday... Read more
Delicious Library 3.0.2 - Import, browse...
Delicious Library allows you to import, browse, and share all your books, movies, music, and video games with Delicious Library. Run your very own library from your home or office using our... Read more
KeyCue 6.5 - Displays all menu shortcut...
KeyCue helps you to use your OS X applications more effectively. Just hold down the Command key for a while - KeyCue comes to help and shows a table of all currently available keyboard shortcuts.... Read more

Kite Surfer Review
Kite Surfer Review By Rob Rich on May 24th, 2013 Our Rating: :: MAKE SOME WAVESUniversal App - Designed for iPhone and iPad Kite Surfer looks good and controls great, although it’s also a little light on content.   | Read more »
Spottlife Review
Spottlife Review By Lee Hamlet on May 24th, 2013 Our Rating: :: CATEGORIZE YOUR SOCIAL LIFEiPhone App - Designed for the iPhone, compatible with the iPad Spottlife is a new way to view and interact with the world’s most popular... | Read more »
Plasma Pig Review
Plasma Pig Review By Jordan Minor on May 24th, 2013 Our Rating: :: THAT'LL DO, PIGUniversal App - Designed for iPhone and iPad This porky pig needs a light touch.   | Read more »
Hipstamatic Oggl Review
Hipstamatic Oggl Review By Chris Kirby on May 24th, 2013 Our Rating: :: HIP YET AGAIN Remember Hipstamatic? It’s back with a host of features to challenge the likes of Instagram.   Developer: Hipstamatic Price: Free Version... | Read more »
How I Used RadarScope To Track The Oklah...
It could have easily happened that my life would have taken me down the road of becoming a meteorologist. However, that didn’t happen and I found myself becoming a journalist instead. My passion for weather is still present and I have a good... | Read more »
Tetris Blitz Review
Tetris Blitz Review By Carter Dotson on May 24th, 2013 Our Rating: :: TREPAK BLITZUniversal App - Designed for iPhone and iPad There’s fun to be had in short bursts with Tetris Blitz, but it just feels way too engineered to be fun... | Read more »
Dumb Ways to Die Lets You Save Cute Litt...
Dumb Ways to Die Lets You Save Cute Little Creatures…Maybe Posted by Andrew Stevens on May 24th, 2013 [ permalink ] Universal App - Designed for iPhone and iPad | Read more »
Nikko RC Racer Review
Nikko RC Racer Review By Jennifer Allen on May 24th, 2013 Our Rating: :: STRAIGHTFORWARD RACINGUniversal App - Designed for iPhone and iPad Fun for five minutes, Nikko RC Racer lacks some serious staying power, feeling all too... | Read more »
Delifishes Review
Delifishes Review By Lee Hamlet on May 24th, 2013 Our Rating: :: YOU JELLY?Universal App - Designed for iPhone and iPad Playing Delifishes brings back memories of the first generation of mobile games, which is by no means a bad... | Read more »
4 Kingdoms Review
4 Kingdoms Review By Campbell Bird on May 24th, 2013 Our Rating: :: YET ANOTHER KINGDOM GAMEiPad Only App - Designed for the iPad 4 Kingdoms offers familiar menu-based, freemium management gameplay with a fresh coat of cosmetic... | Read more »

Price Scanner via MacPrices.net

Apple drops prices on refurbished iPads and iPad m...
 Apple today dropped prices on Apple Certified Refurbished iPad 4s and iPad minis with some models now available for up to $140 off the cost of new models. Apple’s one-year warranty is included with... Read more
Should You Upgrade To OS X 10.8 Mountain Lion This...
If you haven’t upgraded to OS X 10.8 Mountain Lion by now, there’s probably a case to be made for just holding out with whatever earlier version you’re using until we see what Apple brings forth with... Read more
Apple Tops Gartner Supply Chain Top 25 Rankings Fo...
Gartner, Inc. has released the findings from its ninth annual Supply Chain Top 25. The goal of the Supply Chain Top 25 research initiative is to raise awareness of the supply chain discipline and how... Read more
7-inch Tablets: What User Experience Benchmarks Sh...
A new Tablet User Experience Research survey by Pfeiffer Consulting indicates that user experience with tablets and smartphones is one of the most important aspects of the overall perceived value of... Read more
PayPal Global Study Spells Doom for the Wallet – C...
PayPal has revealed the findings of a global study that paints a dim future for the wallet. A vast majority (83%) of respondents across five countries indicated they wished they didnt have to carry a... Read more
How to Set Up Your Mac to Allow AirPrinting From i...
mac.tutsplus.com’s Jordan Merrick says: AirPrint is a great feature of iOS that provides a simple way of printing documents from your iPhone or iPad directly to an AirPrint-compatible printer with no... Read more
Price drop on refurbished 15″ 2.3GHz MacBook Pro,...
 The Apple Store has lowered their price on Apple Certified Refurbished 15″ 2.3GHz MacBook Pros to $1449 or $350 off the cost of new models, including free shipping. Apple’s one-year warranty is... Read more
Memorial Day Weekend iMac sale: $150 off MSRP
 Best Buy has iMacs on sale for $150 off MSRP on their online store for Memorial Day Weekend. Choose free home shipping or free instant local store pickup (if available): - 27″ 3.2GHz iMac: $1849.99... Read more
Economic Conservatives Defend Apple’s Tax Strategy
Given Apple’s longtime reputation as the particular darling of the liberal lefty end of the spectrum, it’s been facinating to see mostly prominant conservatives rallying to the defense of Apple’s... Read more
Is Apple Losing Its “Cool” Cachet With The Popular...
SMH’s Steve Colquhoun notes that while Apple has again been rated as the world’s top brand this week, a leading social researcher warns the company and its products are losing touch with Generation Y... Read more

Jobs Board

*Apple* Retail - Manager - Apple Inc. (...
Job Summary Keeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, you’re a master of them all. In the store’s fast-paced, Read more
*Apple* Account Executive - CompuCom (U...
Apple Account Executive Job Location US-IL-Des Plaines Posted Date 3/27/2013 Req # 2013-4905 Apply/Socialize: * Apply Now! * Email this opportunity to a friend or Read more
*Apple* - Solution Architect - CompuCom...
Apple - Solution Architect Job Location US-TX-Dallas Posted Date 4/18/2013 Req # 2013-4932 Apply/Socialize: * Apply Now! * Email this opportunity to a friend or Read more
Mac/ *Apple* Specialist Needed - Enterp...
Mac/ Apple Specialist Needed - Enterprise iPad Deployment A prominent Robert Half client is seeking out a Mac/ Apple Specialist to assist with an iPad deployment Read more
Mac/ *Apple* Specialist Needed | Enterp...
Mac/ Apple Specialist Needed | Enterprise iPad Deployment A prominent Robert Half client is seeking out a Mac/ Apple Specialist to assist with an iPad deployment Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.