/幾乎每一個提取資源的例子都用到了 HInstance, 做個對比測試:
var
h,a,f: Cardinal;
begin
h := HInstance;
a := Application.Handle;
f := Self.Handle;
ShowMessage(IntToStr(h)); {4194304}
ShowMessage(IntToStr(a)); {13107942}
ShowMessage(IntToStr(f)); {4260652}
end;
通過測試看出: HInstance、Application.Handle、Self.Handle 不是一回事.
Self.Handle 是窗體的句柄;
Application.Handle 也是個窗口的句柄, 不過這個窗口很小, 在任務欄上;
HInstance 是程序實例的句柄; 同一個程序可能會有幾個副本同時允許, 每個副本當然會有不同的句柄.