潮 潮州人 Unregistered / Unconfirmed GUEST, unregistred user! 2001-12-11 #1 即好像WORD中的关于中的系统信息点击后弹出系统信息窗口出来,这个应该是有API可以调用, 应该怎么样写?
潮 潮州人 Unregistered / Unconfirmed GUEST, unregistred user! 2001-12-11 #2 我要弹出来的是WINDOWS中的 开始->程序->附件->系统工具->系统信息,这个窗口.
B bluerain Unregistered / Unconfirmed GUEST, unregistred user! 2001-12-11 #3 就是运行这个MSINFO32.EXE东东啦,在你的windows目录下搜索一下就行了. 然后用winexec.
B bluerain Unregistered / Unconfirmed GUEST, unregistred user! 2001-12-11 #5 败给你了.看 winexec( 'C:/Program Files/Common Files/Microsoft Shared/MSInfo/MSINFO32.EXE', 0); 其中C:/Program Files/Common Files/Microsoft Shared/MSInfo/最好还是从注册表 中获得.自己到注册表里找一下吧.
败给你了.看 winexec( 'C:/Program Files/Common Files/Microsoft Shared/MSInfo/MSINFO32.EXE', 0); 其中C:/Program Files/Common Files/Microsoft Shared/MSInfo/最好还是从注册表 中获得.自己到注册表里找一下吧.
D dingbaosheng Unregistered / Unconfirmed GUEST, unregistred user! 2001-12-11 #8 给你个简单的:) ;ShellExecute(Handle,'open','MSINFO32.EXE',nil,nil,sw_showNormal); 不过记得要 uses shellapi;