Jump to content

jaromir

uniGUI Subscriber
  • Posts

    83
  • Joined

  • Last visited

Everything posted by jaromir

  1. One more thing. You have to place dll from FastMM bin next to Your exe. It is something like FullDebug...dll.
  2. Hello Stan I’m not at screen at this moment so I give You only brief. First You have to enable FullDebugMode in FastMM configuration file. You have to remove dot at proper line. Next You have to enable „include debug info” at compilator options. After next build You can execute app. During app close, if any leak will be detected You will see detailed log file with code lines whitch makes leaks. Don’t forget to disable including debug info in next builds because it makes exe much more bigger in size. Best regards Jaromir
  3. Hi. For me it is not good idea. What do You want to achive ? Cleaning memory after application close ? For me leak is mistake / error and I want to repair all this mistakes. I use fastmm or similar solution with full debug mode. All leaks should be repaired at place where they appear. Cleaning all leaks at app close is dirty solution. Your app can work long time without restart and it should consume as small amount of memory as possible.
  4. I’m sorry my friend but perhaps You don’t understand what unigui is and what it works. It is a lot of reasons to have unigui at Linux. For me Windows is a bigest disadventage of unigui. We wrote a lot of Unix/Linux deamons in delphi which are compiled at target hosts at FPC. It works like a harm with remobject soap/binary protocols and with zeos database support. I mean quite big production systems working from years.
  5. Thanks Sherzod. Any chance for image combobox control ?
  6. Hello, Question about "Images" property at TUniCombobox control. I desperate need combobox with images at items but this is not what I need. What is property "Images" purpose ? Regards
  7. Hello Gerhard It’s a great news. I begin use Your themes and results are great. When this updates will be abailable ?
  8. I'm using UniGui and I'm scared. The father released code with using UniGui the more "So if…" I'm sorry - I'm very sorry about this approach but what If something wrong happened with Mr. Farshad.
  9. Thanks Delphi Developer. I'll be waiting.
  10. I don’t know. At my system it doesn’t work. The same under ios for example. But it doesn’t matter. How can I set this lang ?
  11. Hello, I know that localization is taken from browser but sometimes it fails. How to localize manually TUniPdfFrame ? Thanks.
  12. Mohammad, Thanks for Your support. In my oppinion live will be beter. But You should think about any fee for this task.
  13. jaromir

    Action OnUpdate

    Yes. It doesn’t work.
  14. Isn't mean end of Sencha upgrade possibility for UniGui ? I understand that current licenses regulations are valid. But I don't belive that new owner will be interested to sell upgrade for market rival.
  15. Hello, It is enough to connect visual components (buttons, panels etc.) with css class name (hardcode) - it is simple. Could You make it please ? Regards
  16. Hello, According above. How to customize Upload File dialog - colors, etc ? Regards
  17. Thank You Marlon. I didn't know autosize. I wanted to forced fit only if all columns could have minimum designed size.
  18. Solved. Thank You. grData.ClientEvents.UniEvents.Values['beforeInit'] := Format('function (sender, config) { if (config.width >= %d) {config.forceFit = true;} }', [grData.Columns.ColumnsWidth]);
  19. Thank You ! It works like expected. I tried to turn on forcefit in code when columns width sum is less or equal than grid size. Columns width sum is easy: TUniDBGridColumnsHelper = class helper for TUniDBGridColumns public function ColumnsWidth: Integer; end; function TUniDBGridColumnsHelper.ColumnsWidth: Integer; var i: Integer; begin Result := 0; for i := 0 to Self.Count - 1 do if Self[i].Visible then Result := Result + Self[i].Width; end; But unfortunately I can't get grid width at code. Grid.width is the same as in design time. Delphi Developer could You help again please ?
  20. ForceFit works for me only when i set up this property in design time. At runtime (in code) set grid.forcefit := true doesn't work. So it is possible to change forcefit in code ?
  21. Hello, Is it possible to change grid forcefit property at runtime ? If so how i can achieve this. I tried this but without luck: function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { sender.headerCt.forceFit=true } Regards
  22. You have to install run time package (or upgrade if You have old version).
  23. My report is here: http://forums.unigui.com/index.php?/topic/8149-change-mainmodule-servermessages-templates-at-runtime/&do=findComment&comment=41632
  24. It doesn't work. I put reqeuest to bug section but without luck.
×
×
  • Create New...