2023年3月29日 星期三

Delphi 要如何取得DLL的檔案名稱

 
var
  DLLFileName: array [0..MAX_PATH] of Char;
begin
  GetModuleFileName(HInstance, DLLFileName, Length(DLLFileName));
  ShowMessage(DLLFileName);
end;

CharGPT 的回應

沒有留言:

張貼留言