Microsoft KB Archive/172161: Difference between revisions

From BetaArchive Wiki
(importing KB archive)
 
m (Text replacement - ">" to ">")
Line 56: Line 56:
The code example below returns the version of FoxPro currently executing, load the appropriate version of FoxTools and ascertains the number of colors currently in use on the screen. Since FoxPro 2.6a places the FoxTools.mlb file in the System/Extension folder, the path needs to be customized for each individual machine to correctly identify the proper hard drive name and folders:
The code example below returns the version of FoxPro currently executing, load the appropriate version of FoxTools and ascertains the number of colors currently in use on the screen. Since FoxPro 2.6a places the FoxTools.mlb file in the System/Extension folder, the path needs to be customized for each individual machine to correctly identify the proper hard drive name and folders:
<pre class="codesample">  ****Begin Code Example****
<pre class="codesample">  ****Begin Code Example****
   IF ATC(&quot;Visual&quot;,Version())&gt;0
   IF ATC(&quot;Visual&quot;,Version())>0
       SET LIBRARY TO HOME()+&quot;FoxTools.cfm&quot;
       SET LIBRARY TO HOME()+&quot;FoxTools.cfm&quot;
   Else
   Else
Line 62: Line 62:
   ENDIF
   ENDIF
   nvideocolors=FxGDepth()
   nvideocolors=FxGDepth()
   IF nvideocolors &gt;0
   IF nvideocolors >0
       WAIT WINDOW &quot;Your Monitor is running &quot;+ALLTRIM(STR(nvideocolors)) ;
       WAIT WINDOW &quot;Your Monitor is running &quot;+ALLTRIM(STR(nvideocolors)) ;
       + &quot;colors&quot;
       + &quot;colors&quot;

Revision as of 20:47, 20 July 2020

Knowledge Base


How To Determining the Number of Colors Available on a Mac

Article ID: 172161

Article Last Modified on 7/1/2004



APPLIES TO

  • Microsoft FoxPro 2.5b for Macintosh
  • Microsoft Visual FoxPro 2.5c for Macintosh
  • Microsoft FoxPro 2.6a Professional Edition for Macintosh
  • Microsoft Visual FoxPro 3.0 for Macintosh



This article was previously published under Q172161

SUMMARY

The FxGDepth() function in FoxTools returns the number of colors currently in use on a monitor from within FoxPro 2.6a for Macintosh or Visual FoxPro 3.0b for the Macintosh.

MORE INFORMATION

The code example below returns the version of FoxPro currently executing, load the appropriate version of FoxTools and ascertains the number of colors currently in use on the screen. Since FoxPro 2.6a places the FoxTools.mlb file in the System/Extension folder, the path needs to be customized for each individual machine to correctly identify the proper hard drive name and folders:

   ****Begin Code Example****
   IF ATC("Visual",Version())>0
      SET LIBRARY TO HOME()+"FoxTools.cfm"
   Else
      SET LIBRARY TO SYS(2033,1)+":FoxTools.mlb"
   ENDIF
   nvideocolors=FxGDepth()
   IF nvideocolors >0
      WAIT WINDOW "Your Monitor is running "+ALLTRIM(STR(nvideocolors)) ;
      + "colors"
   ELSE
      WAIT WINDOW "Your monitor is running millions of colors"
   ENDIF
   ****End Code Example****
                

The FxGDepth() function returns an integer indicating the number of colors currently running on the monitor. However, setting the monitor to millions of colors causes the FxGDepth() function to return 0. To change the number of colors the monitor uses, in the Apple menu, choose Control Panels and then Monitors.

This information can be used to warn users of potential memory problems. If the machine uses millions of colors and it also has limited RAM, FoxPro 2.x or Visual FoxPro may have difficulty running successfully. To determine the amount of RAM on a Macintosh machine from within Visual FoxPro, use the FxGestalt() function.

Please note that the FxGestalt() function is available only with FoxTools.cfm shipped with Visual FoxPro for the Macintosh 3.0b.

REFERENCES

FoxTools Help file

For additional information, please see the following article in the Microsoft Knowledge Base:

170814 Determining the Amount of Physical RAM on a Mac from VFP


Keywords: kbhowto kbcode KB172161