Default Avatar

thinkdif

thinkdif

About

Username
thinkdif
Joined
Visits
0
Last Active
Roles
Members

Comments

  • ok. But can you support an event after printer setting dialog? I want to get PrinterSetting's copies and check if user can print continue, because we set a max print copies that user can print.
  • wrote: I've added the Report.Operation property. You will able to use it in the next daily build. Thanks. Another problem: I want to call PrintSetting's Dialog alone, not show the dialog when each print. yes, i can set PrintSetting's …
  • 1. When using ManualBuild event, TableCell's Printable is no use, it is still printed when Printable = False. 2. I want to draw different text when output to printer or preview, I use TableCell's IsPrinting property in MyFormat 's FormatValue (…
  • I found the reason, some fonts(like chinese fonts) has no space on top, but some fonts has space. I think when you call Graphics.DrawString in rect, suppose it's RectangleF(0, 0, 200, 200), should be RectangleF(0, 1, 200, 200), rect.Top add 1 Poi…
  • It's no use to increase the Padding.Top property value, text is clipped a little however when using MingLiu(chinesd font) font. If you use Arial font, it's ok. But windows forms control is ok using same font when call Application.SetCompatibleTe…
  • Hello, In fact, i want Text is vertically aligned. using StringFormatFlags.DirectionVertical when Graphics.DrawString, thus space char is not ignored. I hope text object has this property.
  • Hi. If i use Chinese font MingLiu(細明體), set font size = 11pt, export to pdf is ok, But when i design or preview report, text will be clipped a little on top edge. It's like that drawing text using GDI not GDI+, but i call follow statement …
  • Hi, I use traditional chinese operating system, I export to pdf, the chinese characters is ok when text object's font name is MingLiu(chinesd font name is '細明體'), but it is blank when text object's font name is Arial(default font). repor…
  • AlexTZ wrote: » Hello, Tool windows behavior was changed some time ago (when we move to another docking library). I need to correct something to make it work. I'll let you know when I done. Thank you very much.
  • I think you can support the feature, because MyTableCell is also TableCell, it's inherited from TableCell. TableBase class can add virtual method like following: protected virtual TableCell CreateTableCell() { return new TableCell(); } I…
  • Excellent, It's what I want to have. I also want TableObject can create MyTableCell inherited from TableCell, thus MyTableCell can add my project's special properties. Thank you very much.
  • Hi, If report have an event when creating object in designer, I can create MyObject and set it's property in event. I think it will be more flexible if you can support more event, such as dragdrop, dragover events in designer, I can provide m…
  • I also found a new problem associate with this, i add my assembly in script's ReferenceAssemblies, But if any expression in TextObject is error, I found my assembly in ReferenceAssemblies will be lost.
  • AlexTZ wrote: » Hello, Could you prepare a simple demo and send it to tz@fast-report.com? Hello, my demo is very simple, I modify FastReport.Net's Demo Form1 like following, add three line code, then i use new source in any report, but …