地球上有个很奇怪的国家

1。该国百姓收入是欧美的几十分之一,房价却要赶超欧美; 2。该国房子可以是自己的,但土地永远是国家的!最近又补充了一下:“房子是土地的一部分”

【VB技巧】VB获取CPU/处理器的数量/个数

获取CPU数量: 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 Declare Sub GetSystemInfo Lib "kernel32" (lpSystemInfo As SYSTEM_INFO) Dim SysInfo As SYSTEM_INFO GetSystemInfo SysInfo MsgBox SysInfo.dwNumberOrfProcessors