Hey all,
By referencing Microsoft.DirectX.Direct3d I have found the name of my Graphics adapter....the only problem is i'm having problems finding the amount of RAM my adapter has.....Can anyone help
Thanks
Printable View
Hey all,
By referencing Microsoft.DirectX.Direct3d I have found the name of my Graphics adapter....the only problem is i'm having problems finding the amount of RAM my adapter has.....Can anyone help
Thanks
DOWNLOADED THE directx9 SDK used the following code, gives a value of RAM in bytes
Code:Imports Microsoft.DirectX.DirectDraw
Public Class Form2
Inherits System.Windows.Forms.Form
Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim objcaps As Microsoft.DirectX.DirectDraw.Caps
TextBox1.Text = objcaps.VideoMemoryTotal()
End Sub
End Class