kccheng
kccheng
About
- Username
- kccheng
- Joined
- Visits
- 3
- Last Active
- Roles
- Members
Comments
-
kccheng wrote: » Hello, I found that during a report.Print, my application is responding to windows events. e.g. the user is able to click on a db grid to change row, or worse, the new record event from database comes and the application is call…
-
mary rosie wrote: » Just to be clear, are you asking for each sub-report to be numbered independently, or do you want the numbering to be "seamless"! wuxiaworld to be numbered independently. Say i have a invoice.fr3, with only 1 page. a…
-
Polomint wrote: » Just to be clear, are you asking for each sub-report to be numbered independently, or do you want the numbering to be "seamless"? For example, say Invoice is one page, and Report is three pages, do you want the four pages in t…
-
Monte Carver wrote: » Monte Carver wrote: » hello, I am making a report with many sub detail bands, with band headers and stuff. The report prints fine. But in report editor, there are too many bands so that the lower bands are out of the…
-
I found the problem. I changed variable S to widestring and use TextOut() instead of ExtTextOut() to draw for both checked and unchecked handler. The API ExtTextOut() doesn't support unicode. The value 251 and 252 is above 0x7F and they confli…
-
please check the attachment. 4 different checkbox with 4 different checkstyle. only csLineCross and csPlus is printing.
-
Thanks for your information. But I found the problem. in CheckStyle, only csLineCross and csPlus are actually printing. csCheck and csCross are printing as empty. I am using Lazarus, maybe it is a bug.
-
in frxinsp.lfm, turn off Sorted fixes the issue for me. object ObjectsCB: TComboBox Left = 0 Height = 27 Top = 2 Width = 182 ItemHeight = 15 OnDrawItem = ObjectsCBDrawItem OnSelect = ObjectsCBClick Sorted = False Style = csOwnerDrawFix…
-
it is caused by lazarus svn change 53100, win32listsl.inc. the check is added to fix bug 30004 I will check if sorting is really needed. https://bugs.freepascal.org/view.php?id=30004 procedure TWin32ListStringList.Put(Index: integer; const S…
-
Found the root cause. it is the Use "LCL scaling (Hi-DPI)" option in project options. it is new in Lazarus 1.8 I suppose. not fetal but I still hope you guys will fix it.
-
ok I tried with 5.6.4 again and instead of changing code, I added uses to fix missing functions. frxDesgnEditors.pas needs lcltype frxGradient.pas needs lclintf frxPreview.pas needs LazUTF8 frxPrinter.pas needs winspool frxXML.pas needs LazFi…