DELPHI盒子
!实时搜索: 盒子论坛 | 注册用户 | 修改信息 | 退出
检举帖 | 全文检索 | 关闭广告 | 捐赠
技术论坛
 用户名
 密  码
自动登陆(30天有效)
忘了密码
≡技术区≡
DELPHI技术
lazarus/fpc/Free Pascal
移动应用开发
Web应用开发
数据库专区
报表专区
网络通讯
开源项目
论坛精华贴
≡发布区≡
发布代码
发布控件
文档资料
经典工具
≡事务区≡
网站意见
盒子之家
招聘应聘
信息交换
论坛信息
最新加入: sprblck
今日帖子: 11
在线用户: 20
导航: 论坛 -> DELPHI技术 斑竹:liumazi,sephil  
作者:
男 emailx45 (emailx45) ▲▲▲▲△ -
普通会员
2022/6/30 0:54:51
标题:
MiTeC System Information X v4.5.0 sources 浏览:1381
加入我的收藏
楼主: https://dl.downloadly.ir/Files/Software/MiTeC_System_Information_X_4.5.0_Downloadly.ir.rar
----------------------------------------------
The higher the degree, the greater the respect given to the humblest!RAD 11.3
作者:
男 magiewang (magiewang) ▲▲▲△△ -
普通会员
2022/6/30 10:04:03
1楼: 请问X和MiTeC System Information Component Suite有啥区别?
----------------------------------------------
-
作者:
男 pp0123 (pp0123) ★☆☆☆☆ -
普通会员
2022/6/30 10:34:47
2楼: Component Suite 是安装在 Delphi 的控件
X 是一般用户可直接执行的程序

楼主那个是执行的程序, 没有 sources 的.
----------------------------------------------
-
作者:
男 kaida (kaida) ★☆☆☆☆ -
盒子活跃会员
2022/7/4 16:43:20
3楼: 谢谢!转存:
MiTeC System Information X 4.5.0.zip (访问密码:2ccc)
----------------------------------------------
http://down.desei.com.cn/down/1041485/MyWeb/VCLs.html
作者:
男 sxqwhxq (步惊云) ★☆☆☆☆ -
普通会员
2022/7/4 17:35:55
4楼: 怎样在linux获得系统信息,如cpu id、hard disk id或分区卷标?
----------------------------------------------
-
作者:
男 emailx45 (emailx45) ▲▲▲▲△ -
普通会员
2022/7/4 21:23:37
5楼: this app-protection it's not more used... try new methods!

old time... new time!
----------------------------------------------
The higher the degree, the greater the respect given to the humblest!RAD 11.3
作者:
男 emailx45 (emailx45) ▲▲▲▲△ -
普通会员
2022/7/4 21:42:19
6楼: MiTec HELP
This code fragment demonstrates how to read Processor version string (10h) and Core count (23h) from SMBIOS table Processor Information (Type 4).

var
  SMBIOS: TMiTeC_SMBIOS;
  idx: integer;
  p: cardinal;
  v,sl: Byte;
  s: string;
begin
  SMBIOS:=TMiTeC_SMBIOS.Create(nil);
  try
    SMBIOS.ReadLocalMemory:=True;
    SMBIOS.RefreshData;
    idx:=SMBIOS.FindTableIndex(SMB_CPU,SMBIOS.StructTables);
    if idx>-1 then
      repeat
        p:=SMBIOS.StructTables[idx].Address;
        if (p>=SMBIOS.StructStart) and (SMBIOS.SMBIOS_DMA.ByteValue[p]=SMB_CPU) then begin
          sl:=SMBIOS.SMBIOS_DMA.ByteValue[p+1];
          if SMBIOS.SMBIOS_DMA.ByteValue[p+$10]>0 then
          s:=SMBIOS.SMBIOS_DMA.StringValue[p+sl,SMBIOS.SMBIOS_DMA.ByteValue[p+$10]];
          v:=SMBIOS.SMBIOS_DMA.Wordvalue[p+$23];
          writeln(Format('%s (%d cores)',[s,v]));
        end;
        idx:=SMBIOS.FindTableIndex(SMB_CPU,SMBIOS.StructTables,idx+1);
      until idx=-1;
  finally
    SMBIOS.Free;
  end;
end;
----------------------------------------------
The higher the degree, the greater the respect given to the humblest!RAD 11.3
信息
登陆以后才能回复
Copyright © 2CCC.Com 盒子论坛 v3.0.1 版权所有 页面执行46.875毫秒 RSS