A
A_PK
Public Declare Sub GlobalMemoryStatus Lib "kernel32" (ByRef lpBuffer As
MEMORYSTATUS)...
Is this valid for Vb.net for Compact Framework Platform....
I am having this error message System.MissingMethodException.......
the following are my coding
----------------------------------------------------------------------------------------------------------------------
Public Structure MEMORYSTATUS
Dim dwLength As Integer ' Size of MEMORYSTATUS
End Structure
Public Declare Sub GlobalMemoryStatus Lib "kernel32" (ByRef lpBuffer As
MEMORYSTATUS)
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim MS As MEMORYSTATUS
GlobalMemoryStatus(MS)
MsgBox("Total memory: " & CStr(MS.dwLength))
End Sub
MEMORYSTATUS)...
Is this valid for Vb.net for Compact Framework Platform....
I am having this error message System.MissingMethodException.......
the following are my coding
----------------------------------------------------------------------------------------------------------------------
Public Structure MEMORYSTATUS
Dim dwLength As Integer ' Size of MEMORYSTATUS
End Structure
Public Declare Sub GlobalMemoryStatus Lib "kernel32" (ByRef lpBuffer As
MEMORYSTATUS)
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim MS As MEMORYSTATUS
GlobalMemoryStatus(MS)
MsgBox("Total memory: " & CStr(MS.dwLength))
End Sub