改变Windows的缺省打印机

2008-04-09 04:24:33来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

如果你想要改变Windows的缺省打印机,你必须在Windows的WIN.INI中改变设备键。
发送一条 WM_WININICHANGE 消息:

var
strIni: array[0..MAX_PATH] of Char;
arrWindows: array[0..64] of Char;
begin
GetWindowsDirectory(strIni, SizeOf(strIni));
StrCat(strIni, ''''\win.ini'''');
with TIniFile.Create(strIni) do
try
WriteString(''''windows'''', ''''device'''', ''''HP LaserJet 4 Plus,HPPCL5MS,LPT1:'''');
finally
Free;
end;

StrCopy(arrWindows, ''''windows'''');
SendMessage(HWND_BROADCAST, WM_WININICHANGE, 0, LongInt(@arrWindows));
end;

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:生成GBK码表

下一篇:如何在Delphi中使用正则表达式