<XP以前とVista以降で処理を分岐する>
if(//.sys.OS_VERSION >= 6){
MessageBox("これはVista以降のOSです。");
}else{
MessageBox("これはXP以前のOSです。");
}
<各OSで処理を分岐する>
if(find(//.sys.OS,"Windows XP",0) != -1){
MessageBox("これはWindows XPです。");
}else if(find(//.sys.OS,"Windows Vista",0) != -1){
MessageBox("これはWindows Vistaです。");
}else if(find(//.sys.OS,"Windows 7",0) != -1){
MessageBox("これはWindows 7です。");
}else if(find(//.sys.OS,"Windows 8",0) != -1){
MessageBox("これはWindows 8です。");
}else if(find(//.sys.OS,"Windows 10",0) != -1){
MessageBox("これはWindows 10です。");
}else{
MessageBox("不明なOSです。");
}
|