Code to Display the % of Memory in Use
Code to Display the % of Memory in Use
API Declarations
Private Type MEMORYSTATUS
dwLength as Long
dwMemoryLoad as Long
dwAvailPhys as long
dwTotalPhys as long
dwAvailVirtual as long
dwTotalVirtual as long
End Type
dim b as MEMORYSTATUS
Rate Code to Display the % of Memory in Use
(2(2 Vote))
'mail me at [email protected]
b.dwLength = len(b)
Msgbox "The % of Memory in use is : " & Cstr(b.dwMemoryLoad)
Code to Display the % of Memory in Use Comments
No comments yet — be the first to post one!
Post a Comment