德尔福 Xe,Win7x64
如何检测不完整的 Windows 版本 N 或 K (Win XpSp3-Win7x64)?没有IE,Wmp。
例子:
Function isWinKNedition:bool;
begin
result:=?????
end;
...
procedure TForm1.FormCreate(Sender: TObject);
begin
if isWinKNedition then begin showmessage('This program can work only on full versions OS Windows');Halt;end;
end;