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

 
 
MacTech Magazine: Now for all geeks at heart.

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  
ADVERTISEMENT
Click Here
Volume Number:10
Issue Number:10
Column Tag:Think Top 10

Think Top 10

By Mark B. Baldwin and Craig Connor, Symantec Technical Support

This is a monthly column written by Symantec’s Technical Support Engineers intended to provide you with information on Symantec products. Each month we cover either a specific application of tools or a “Q&A” list.

Q. Can pointers to base classes be cast as pointers to derived classes?

A. Yes. Run-Time Type Identification (RTTI), allows the safe casting of base class pointers to derived classes. If the cast is not allowed, a NULL pointer is returned.

Q. How come I get an error when I declare a variable of any type with the name 'v' or 'h'?

A. There’s an enumeration in Types.h that looks like:

     
     enum { h, v };
     

which clutters the namespace for both h and v.

Q. Using TCL, when I create a series of CEditText panes in a window, why are they placed at seemingly random places on the screen?

A. The coordinates that you are setting for your CEditText object are not being interpreted as window coordinates. Have your object call FrameToWindR(Rect *windowCoordinates). This will adjust the frame of the pane to the correct position on the screen.

Q. Why doesn’t the example in the manual for CArrayIterator work? I get the following:

     File "CPtrArrayIterator_myClass.cp"; Line 7
     Error:   'gAncestors' is not a member of struct 
     'CPtrArrayIterator<myClass>'
     
     File "CPtrArrayIterator_myClass.cp"; Line 9
     Error:   unable to open input file 'CPtrArrayIterator.tem'

A. The example in the manual for CArrayIterator is incorrect. 1) Remove the line for TCL_DEFINE_CLASS. You do this because the base class for CArrayIterator is not an RTTI class. 2) Remove the #include CArrayIterator.tem. This file does not get created because you are no longer calling TCL_DEFINE_CLASS.

Q. How do I change the foreground/ background color of a CStaticText?

A. Instantiate a pointer to your CStaticText object, or if you are using VA, find where the object pointer is created in x_CMain. Then use the following formula:


/* 1 */
((*CColorTextEnvirons)myCStaticText->itsEnvirons)
 ->SetColorInfo(*RGBColor forecolor, *RGBColor backcolor);  

Notice we cast from a base to a derived class CEnvrirons to a derived class CColorTextEnvirons.

Q. How do I read in a CBitMapPane?

A. Try the following code segment. It reads a bitmap from a file and assigns it to a CBitMapPane object.

     
/* 2 */
    CPNTGFile   *theFile = NULL;
    SFTypeList  myList;
    SFReply theReply;
    Point   where;
     
    where.h=120;  where.v=190;  // SF dialog window position
             
    myList[0]='PNTG';
         
    SFGetFile(where,0,NULL,1,myList,0,&theReply);
         
    if(theReply.good)
    {
        theFile = new CPNTGFile;   // Make a File object and read the
        theFile->SFSpecify(&theReply);// data into a new BitMap
        theFile->Open(fsRdWrPerm);
        theBitMap = ((CPNTGFile *)itsFile)->ReadNewBitMap(TRUE);
     
        myBitMapPane->SetBitMap(theBitMap);
    }

Q. How do I use VA to make CIconButtons work like radio buttons? It works when I do a Try Out, but then the code is not generated.

A. Version 7.0.3 fixes this problem. Download the 7.0.3 Patch from an on-line service.

Q. How do I make a PICTGrid in a Window using VA?

A. Create the window you want to use. Temporarily create a tear-off menu view, and copy the PICTGrid from the menu, and paste it into your window. Then delete the tear-off menu.

Q. Everytime I create a VA project it takes a very long time to compile. How can I reduce the compile time?

A. Open the “Project Models:Visual Architect:@1.1” file, and compile it. From now on, the TCL files will be compiled upon the creation of a new VA project.

Q. How do I add a new project type to the project models that appear in the New Project Dialog?

A. Create a new project, include the files and libraries you want, compile it, and copy the whole folder over to the Project Models folder. Name the project file “@1.1”. The “@1” will be replaced with the project name you specify. If you have trouble, take a look at the existing project models to see the naming convention for the project files.

Special Thanks To

Steve Howard, Michael Hopkins, Colen Garoutte-Carson, Rick Hartmann, Kevin Irlen, Yuen Li, Celso Barriga, Scott Shurr, and Chris Prinos, et al.



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-2007 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.