<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Code Library &#187; hardware</title>
	<atom:link href="http://www.ucosoft.com/tag/hardware/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ucosoft.com</link>
	<description>Free Source Code and Program Tips</description>
	<lastBuildDate>Mon, 19 Jul 2010 04:51:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to read the graphics card RAM capacity</title>
		<link>http://www.ucosoft.com/how-to-read-the-graphics-card-ram-capacity.html</link>
		<comments>http://www.ucosoft.com/how-to-read-the-graphics-card-ram-capacity.html#comments</comments>
		<pubDate>Tue, 19 Dec 2006 07:43:32 +0000</pubDate>
		<dc:creator>hamo</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[How-to]]></category>

		<guid isPermaLink="false">http://www.ucosoft.com/archives/61.html</guid>
		<description><![CDATA[When you want to get the RAM capacity of the graphics card installed on the computer, It&#8217;s more simple to use WMI class. You can give a look at the AdapterRAM attribute of Win32_VideoController. The Win32_VideoController WMI class represents the capabilities and management capacity of the video controller. AdapterRAM is one of its attibute: AdapterRAM]]></description>
			<content:encoded><![CDATA[<p>When you want to get the RAM capacity of the graphics card installed on the computer, It&#8217;s more simple to use <a href="http://www.ucosoft.com/archives/60.html">WMI class</a>.</p>
<p>You can give a look at the AdapterRAM attribute of Win32_VideoController.</p>
<p>The Win32_VideoController <a href="http://www.ucosoft.com/archives/60.html">WMI class</a> represents the capabilities and management capacity of the video controller. AdapterRAM is one of its attibute:</p>
<p><coolcode linenum="no"><br />
AdapterRAM<br />
Data type: uint32<br />
Access type: Read-only<br />
Qualifiers: Units(Bytes)<br />
Memory size of the video adapter. </p>
<p>Example: 64000<br />
</coolcode></p>
<p>The full syntax is listed here:</p>
<p><span id="more-61"></span><br />
<coolcode lang="cpp" linenum="no"><br />
class Win32_VideoController : CIM_PCVideoController<br />
{<br />
  uint16 AcceleratorCapabilities[]  ;<br />
  string AdapterCompatibility  ;<br />
  string AdapterDACType  ;<br />
  uint32 AdapterRAM  ;<br />
  uint16 Availability  ;<br />
  string CapabilityDescriptions[]  ;<br />
  string Caption  ;<br />
  uint32 ColorTableEntries  ;<br />
  uint32 ConfigManagerErrorCode  ;<br />
  boolean ConfigManagerUserConfig  ;<br />
  string CreationClassName  ;<br />
  uint32 CurrentBitsPerPixel  ;<br />
  uint32 CurrentHorizontalResolution  ;<br />
  uint64 CurrentNumberOfColors  ;<br />
  uint32 CurrentNumberOfColumns  ;<br />
  uint32 CurrentNumberOfRows  ;<br />
  uint32 CurrentRefreshRate  ;<br />
  uint16 CurrentScanMode  ;<br />
  uint32 CurrentVerticalResolution  ;<br />
  string Description  ;<br />
  string DeviceID  ;<br />
  uint32 DeviceSpecificPens  ;<br />
  uint32 DitherType  ;<br />
  datetime DriverDate  ;<br />
  string DriverVersion  ;<br />
  boolean ErrorCleared  ;<br />
  string ErrorDescription  ;<br />
  uint32 ICMIntent  ;<br />
  uint32 ICMMethod  ;<br />
  string InfFilename  ;<br />
  string InfSection  ;<br />
  datetime InstallDate  ;<br />
  string InstalledDisplayDrivers  ;<br />
  uint32 LastErrorCode  ;<br />
  uint32 MaxMemorySupported  ;<br />
  uint32 MaxNumberControlled  ;<br />
  uint32 MaxRefreshRate  ;<br />
  uint32 MinRefreshRate  ;<br />
  boolean Monochrome  ;<br />
  string Name  ;<br />
  uint16 NumberOfColorPlanes  ;<br />
  uint32 NumberOfVideoPages  ;<br />
  string PNPDeviceID  ;<br />
  uint16 PowerManagementCapabilities[]  ;<br />
  boolean PowerManagementSupported  ;<br />
  uint16 ProtocolSupported  ;<br />
  uint32 ReservedSystemPaletteEntries  ;<br />
  uint32 SpecificationVersion  ;<br />
  string Status  ;<br />
  uint16 StatusInfo  ;<br />
  string SystemCreationClassName  ;<br />
  string SystemName  ;<br />
  uint32 SystemPaletteEntries  ;<br />
  datetime TimeOfLastReset  ;<br />
  uint16 VideoArchitecture  ;<br />
  uint16 VideoMemoryType  ;<br />
  uint16 VideoMode  ;<br />
  string VideoModeDescription  ;<br />
  string VideoProcessor  ;<br />
};<br />
</coolcode></p>

	Tags: <strong><a href="http://www.ucosoft.com/tag/api" title="API" rel="tag">API</a>, <a href="http://www.ucosoft.com/tag/hardware" title="hardware" rel="tag">hardware</a>, <a href="http://www.ucosoft.com/tag/how-to" title="How-to" rel="tag">How-to</a></strong><br />

	<ul class="st-related-posts">
	<li><a href="http://www.ucosoft.com/write-and-read-binary-data-in-variant.html" title="Write and read binary data in VARIANT (November 22, 2006)">Write and read binary data in VARIANT</a> (0)</li>
	<li><a href="http://www.ucosoft.com/set-the-head-backgroud-color-of-cpropertypage.html" title="Set the head backgroud color of CPropertyPage (October 18, 2007)">Set the head backgroud color of CPropertyPage</a> (0)</li>
	<li><a href="http://www.ucosoft.com/how-to-translate-among-cstringstring-and-char-array.html" title="How to translate among CString,string and char array (June 22, 2007)">How to translate among CString,string and char array</a> (0)</li>
	<li><a href="http://www.ucosoft.com/how-to-subclass-ctreectrl-in-ctreeview.html" title="How to subclass CTreeCtrl in CTreeView? (October 25, 2007)">How to subclass CTreeCtrl in CTreeView?</a> (0)</li>
	<li><a href="http://www.ucosoft.com/how-to-sort-items-of-clistctrl-or-clistview.html" title="How to sort items of CListCtrl or CListView? (October 22, 2007)">How to sort items of CListCtrl or CListView?</a> (0)</li>
	<li><a href="http://www.ucosoft.com/how-to-sendpost-message-to-cdocument.html" title="How to send/post message to CDocument? (October 24, 2007)">How to send/post message to CDocument?</a> (2)</li>
	<li><a href="http://www.ucosoft.com/how-to-launch-an-application-with-admin-privileges-in-vista.html" title="How to launch an Application with Admin privileges in VISTA (March 8, 2007)">How to launch an Application with Admin privileges in VISTA</a> (0)</li>
	<li><a href="http://www.ucosoft.com/get-clistctrl-item-text-of-another-process.html" title="How to get ClistCtrl item text of another process (September 24, 2008)">How to get ClistCtrl item text of another process</a> (0)</li>
	<li><a href="http://www.ucosoft.com/how-to-draw-bitmap-from-a-bmp-file.html" title="How to Draw Bitmap from a bmp File? (January 4, 2007)">How to Draw Bitmap from a bmp File?</a> (0)</li>
	<li><a href="http://www.ucosoft.com/how-to-check-whether-the-window-is-in-minimise-or-maximise-mode.html" title="How to check whether the window is in minimise or Maximise mode (March 21, 2007)">How to check whether the window is in minimise or Maximise mode</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ucosoft.com/how-to-read-the-graphics-card-ram-capacity.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
