Software Development Network>> Visual C++>> Pages allocated to a process
Johan, this is not a C++ language issue. I recommended he ask his question in the following newgroup (specific to kernel issues, too):
http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.win32.programmer.kernel&lang=en&cr=US
Moving to the C++ forum since you probably have better luck getting someone to give you an answer for C/C++ here...
Best regards,Johan Stenberg
TextBox1.ScrollBars = ScrollBars.Vertical
TextBox1.Text &= Proc(i).ProcessName &
Proc(i).PagedMemorySize64 / 1024 &
Pages allocated to a process
meeeeeeeeeep
Johan, this is not a C++ language issue. I recommended he ask his question in the following newgroup (specific to kernel issues, too):
http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.win32.programmer.kernel&lang=en&cr=US
clonk
Moving to the C++ forum since you probably have better luck getting someone to give you an answer for C/C++ here...
Best regards,
Johan Stenberg
tschmidt
Can i get the equivalent code on C++ or C so that iu can run it and check
thanks
Donald E. King
PDCS
Dim Proc As Process() = Process.GetProcesses For i As Short = 0 To Proc.Length - 1 If Proc(i).Id > 4 Then ' paged memory is virtual memoryTextBox1.Text &= Proc(i).ProcessName &
" " & _Proc(i).PagedMemorySize64 / 1024 &
" Bytes." & vbCrLf End If Next