Ich hab (wie so oft auch) wieder ein Problem.
Für Antworten gibts ne Belohnung (Echt, gibts, wo???).
Also, ich bin dankbar für JEDE Antwort.
Mfg,
AndyX
Code: Alles auswählen
GlobalMemoryStatus_(mem.Memorystatus)
MemoryLoad.l = mem\dwMemoryLoad
TotalPhys.f = mem\dwTotalPhys
TotalPhys = TotalPhys/1024000
AvailPhys.f = mem\dwAvailPhys
AvailPhys = AvailPhys/1024000
TotalPageFile.f = mem\dwTotalPageFile
TotalPageFile = TotalPageFile/1024000
AvailPageFile.f = mem\dwAvailPageFile
AvailPageFile = AvailPageFile/1024000
Debug "Memory in gebrauch (ca. Wert): " +Str(MemoryLoad)+"%"
Debug "Memory total (RAM): " +StrF(TotalPhys,2)
Debug "Memory frei (Ram): " +StrF(AvailPhys,2)
Debug "Memory Auslagerung total: " +Str(TotalPageFile)
Debug "Memory Auslagerung frei: " +Str(AvailPageFile)