哪位 FW 知道Tpassthroughdata是在哪个单元定义的?急!!!(100分)

  • 主题发起人 主题发起人 jammi
  • 开始时间 开始时间
J

jammi

Unregistered / Unconfirmed
GUEST, unregistred user!
哪位 FW 知道Tpassthroughdata是在哪个单元定义的?急!!![:D][:(!]
 
uses Windows, Printers<br>向打印机发指令的。
 
是GDI中passthrough吗,在windows中
 
我在uses 中加入这两个单元啦,但是编译时还是提示Tpassthroughdata 没有定义.
 
贴上代码:<br>Procedure DirectPrint(s : String); <br>var &nbsp;PTBlock : TPassThroughData; <br>Begin <br>&nbsp; PTBlock.nLen := Length(s);<br>&nbsp; StrPCopy(@PTBlock.Data,s);<br>&nbsp; Escape(printer.handle, PASSTHROUGH,0,@PTBlock,nil);<br>End;<br>
 
自己定义一下吧<br>type PrnBuffRec: = record<br>&nbsp; BuffLength : word;<br>&nbsp; Buffer : array [0..255] of char;<br>end;<br>Buff : TPrnBuffRec;<br><br>StrPCopy(Buff.Buffer, s);<br>Buff.BuffLength := StrLen(Buff.Buffer);<br>Escape(Printer.Canvas.Handle,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PASSTHROUGH,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;@Buff,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nil);<br>
 
to wagxu: TPrnBuffRec在哪个单元定义?
 
你们用过没有?<br>谁能在 Windows, Printers里找到Tpassthroughdata我把我的分全给他!
 
那是我写错了,就是PrnBuffRec<br>TO:savenight,我可没说有Tpassthroughdata,我只是说有passthrough :)
 
在DELPHI帮助中都找不到Tpassthroughdata啊<br>你是从哪里知道它的?会不会是在DELPHI中根本没这个东西的定义?或者它就是第三方ocx<br>控件中的方法?
 
感谢各位光临,来了就不能空手回去。请关注我的另一个问题:<br>http://www.delphibbs.com/delphibbs/dispq.asp?lid=741550
 
后退
顶部