<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Arbeitsspeicher und Prozessorgeschwindigkeit anzeigen]]></title><description><![CDATA[<p>Hallo,<br />
ich möchte gerne die Größe des Arbeitsspeichers und die Prozessorgeschwindigkeit anzeigen lassen, den RAM in MB, die Prozessorg. in Megahertz.<br />
Womit kann man das wohl realisieren?<br />
MfG<br />
DD</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/42825/arbeitsspeicher-und-prozessorgeschwindigkeit-anzeigen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Jul 2026 22:06:06 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/42825.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 16 Jul 2003 12:39:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Arbeitsspeicher und Prozessorgeschwindigkeit anzeigen on Wed, 16 Jul 2003 12:39:44 GMT]]></title><description><![CDATA[<p>Hallo,<br />
ich möchte gerne die Größe des Arbeitsspeichers und die Prozessorgeschwindigkeit anzeigen lassen, den RAM in MB, die Prozessorg. in Megahertz.<br />
Womit kann man das wohl realisieren?<br />
MfG<br />
DD</p>
]]></description><link>https://www.c-plusplus.net/forum/post/310617</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/310617</guid><dc:creator><![CDATA[DD]]></dc:creator><pubDate>Wed, 16 Jul 2003 12:39:44 GMT</pubDate></item><item><title><![CDATA[Reply to Arbeitsspeicher und Prozessorgeschwindigkeit anzeigen on Sat, 28 May 2005 12:56:04 GMT]]></title><description><![CDATA[<p>zum Arbeitsspeicher:<br />
<a href="http://cpp-programming.de/page/quellcodes/viewcode.php?id=001" rel="nofollow">http://cpp-programming.de/page/quellcodes/viewcode.php?id=001</a></p>
<p>zur Prozessorgeschwindigkeit:<br />
<a href="http://cpp-programming.de/page/quellcodes/viewcode.php?id=037" rel="nofollow">http://cpp-programming.de/page/quellcodes/viewcode.php?id=037</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/797831</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/797831</guid><dc:creator><![CDATA[Domio]]></dc:creator><pubDate>Sat, 28 May 2005 12:56:04 GMT</pubDate></item><item><title><![CDATA[Reply to Arbeitsspeicher und Prozessorgeschwindigkeit anzeigen on Sun, 29 May 2005 09:48:46 GMT]]></title><description><![CDATA[<p>Hallo<br />
#include &lt;vcl.h&gt;<br />
#include &lt;iostream.h&gt;<br />
#include &lt;shellapi.h&gt;<br />
#pragma hdrstop<br />
#include &lt;mmsystem.h&gt;<br />
#include &lt;stdlib.h&gt;<br />
#include &lt;dos.h&gt;<br />
#include &lt;registry.hpp&gt;</p>
<p>void __fastcall TForm2::Timer1Timer(TObject *Sender)<br />
{</p>
<p>MEMORYSTATUS speicher;<br />
speicher.dwLength = sizeof(speicher);</p>
<p>GlobalMemoryStatus(&amp;speicher);<br />
Label1-&gt;Caption = String((float)speicher.dwMemoryLoad) + &quot; Prozesse&quot;;<br />
C2-&gt;Progress = speicher.dwMemoryLoad;<br />
int W = speicher.dwTotalPhys / 1024;<br />
Label2-&gt;Caption = String((int)(speicher.dwTotalPhys / 1024)) + &quot; K Total&quot;;<br />
C3-&gt;MaxValue = speicher.dwTotalPhys;<br />
C3-&gt;Progress = speicher.dwTotalPhys;<br />
int Z = speicher.dwAvailPhys / 1024;<br />
Label3-&gt;Caption = String((int)(speicher.dwAvailPhys / 1024)) + &quot; K Frei&quot;;<br />
C1-&gt;MaxValue = speicher.dwTotalPhys;<br />
C1-&gt;Progress = speicher.dwAvailPhys;<br />
CGauge1-&gt;MaxValue = speicher.dwTotalPhys;<br />
CGauge1-&gt;Progress = speicher.dwTotalPhys - speicher.dwAvailPhys;<br />
Label24-&gt;Caption = String((int)(W - Z)) + &quot; K Fest&quot;;</p>
<p>int B = speicher.dwTotalVirtual / 1048576.0;<br />
Label4-&gt;Caption = String((int)(speicher.dwTotalVirtual / 1048576.0)) + &quot; MB Total&quot;;<br />
C4-&gt;MaxValue = speicher.dwTotalVirtual;<br />
C4-&gt;Progress = speicher.dwTotalVirtual;<br />
int M = speicher.dwAvailVirtual / 1048576.0;<br />
Label5-&gt;Caption = String((int)(speicher.dwAvailVirtual / 1048576.0)) + &quot; MB Frei&quot;;<br />
C5-&gt;MaxValue = speicher.dwTotalVirtual;<br />
C5-&gt;Progress = speicher.dwAvailVirtual;<br />
CGauge2-&gt;MaxValue = speicher.dwTotalVirtual;<br />
CGauge2-&gt;Progress = speicher.dwTotalVirtual - speicher.dwAvailVirtual;<br />
Label25-&gt;Caption = String((float)(B - M)) + &quot; MB Fest&quot;;</p>
<p>int T = speicher.dwTotalPageFile / 1048576.0;<br />
Label6-&gt;Caption = String((int)(speicher.dwTotalPageFile / 1048576.0)) + &quot; MB Total&quot;;<br />
C6-&gt;MaxValue = speicher.dwTotalPageFile;<br />
C6-&gt;Progress = speicher.dwTotalPageFile;<br />
int P = speicher.dwAvailPageFile / 1048576.0;<br />
Label7-&gt;Caption = String((int)(speicher.dwAvailPageFile / 1048576.0)) + &quot; MB Frei&quot;;<br />
C7-&gt;MaxValue = speicher.dwTotalPageFile;<br />
C7-&gt;Progress = speicher.dwAvailPageFile;<br />
CGauge3-&gt;MaxValue = speicher.dwTotalPageFile;<br />
CGauge3-&gt;Progress = speicher.dwTotalPageFile - speicher.dwAvailPageFile;<br />
Label26-&gt;Caption = String((int)(T - P)) + &quot; MB Fest&quot;;<br />
}</p>
]]></description><link>https://www.c-plusplus.net/forum/post/798147</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/798147</guid><dc:creator><![CDATA[Tommops]]></dc:creator><pubDate>Sun, 29 May 2005 09:48:46 GMT</pubDate></item></channel></rss>