摘要:
******在脚本中根据字段名改变Tfrxmemoview的内容 假设有数据表“用户”,字段ID为用户标识,Name为用户名,打印时要求,如果用户名为空,则打印“无用户名”,否则打印出“用户名:实际的用户”,则可以在ID的Tfrxmemoview控件的OnAfterData事件中写如下脚本。 if ='' then Memo2.Text:='无用户名' else Memo2.Text:='用户名:... 阅读全文
摘要:
select a.imageno, b.imagetypename from imageproperty_t a left join imagetype_t b on a.imagetype=b.imagetype where a.archno=(select archno from archflow_t where archbcid='' ) 'exec GetImage '' ' + A... 阅读全文
摘要:
uses Jpeg procedure BitmapToJpeg(Bitmap: TBitmap; Jpg: TJPEGImage; Compress: Integer); begin Jpg.Assign(Bitmap); if Compress>0 then begin Jpg.CompressionQuality:= Compress; Jpg.Compr... 阅读全文