Ver Mensaje Individual
  #96 (permalink)  
Antiguo 16/01/2006, 13:53
Avatar de GeoAvila
GeoAvila
Colaborador
 
Fecha de Ingreso: diciembre-2003
Ubicación: Antigua Guatemala
Mensajes: 4.032
Antigüedad: 21 años, 3 meses
Puntos: 53
yo tengo el código para extraer el serial del procesador..

ok proba con este codigo..

Código:
Private Declare Sub GetSystemInfo Lib "kernel32" (lpSystemInfo As SYSTEM_INFO)
Private Type SYSTEM_INFO
dwOemID As Long
dwPageSize As Long
lpMinimumApplicationAddress As Long
lpMaximumApplicationAddress As Long
dwActiveProcessorMask As Long
dwNumberOrfProcessors As Long
dwProcessorType As Long
dwAllocationGranularity As Long
dwReserved As Long
End Type
Private Sub Form_Load()
Dim SInfo As SYSTEM_INFO

Me.AutoRedraw = True
'Get the system information
GetSystemInfo SInfo
'Print it to the form
Me.Print "Number of procesor:" + Str$(SInfo.dwNumberOrfProcessors)
Me.Print "Processor:" + Str$(SInfo.dwProcessorType)
Me.Print "Low memory address:" + Str$(SInfo.lpMinimumApplicationAddress)
Me.Print "High memory address:" + Str$(SInfo.lpMaximumApplicationAddress)
Me.Print "Processor:" + Str$(SInfo.dwReserved)
End Sub
nos vemos..
__________________
* Antes de preguntar lee las FAQ, y por favor no hagas preguntas en las FAQ
Sitio http://www.geoavila.com twitter: @GeoAvila

Última edición por GeoAvila; 16/01/2006 a las 13:59