Jump to content

Cristian Peța

Members
  • Content Count

    412
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Cristian Peța

  1. You can. But it will be drawn after the control is returned to UI.
  2. Cristian Peța

    10.3.1 has been released

    I can live with Error Insight garbage but when I tried inline variables in a 300k LOC project I removed them immediately because Ctrl-Click stopped working.
  3. You haven't told what exactly is wrong and for me is working as expected. Sincerely I don't have an hour to lose to identify what's wrong. Specifically what should be expected? There is only one "Huh?" at "s.LastDelimiter('Hello')" but it returns 53 that is good. What's wrong? P.S. The truth is that Delphi's LastIndexOf is not documented and is working but not as implemented in other languages.
  4. Cristian Peța

    Delphi 5 FOR Loop problem (W10-64bit)

    Is EntryAge and RetireAge floating-point?
  5. Cristian Peța

    (Mis-)Behaviour of TStringHelper

    Wrong test case. s.LastIndexOf('Hello', 38) will search starting from 38 to the left. That means in this string 'Hello how are you, Hello how are you, H'. First occurrences is at 19 so it "Works As Expected". I know this is not as other implementations but you must specify this in report if you want a change. And this change can brake old code so it must be strongly justified.
  6. Cristian Peța

    10.3.1 has been released

    Steps should be something like: 1. Install RAD Studio from ISO image with Delphi iOS Platform and without OSX Platform. 2. PAServer20.0.pkg file is missing
  7. Cristian Peța

    10.3.1 has been released

    https://quality.embarcadero.com/browse/RSP-14452 P.S. Probably only GetIt was fixed...
  8. Cristian Peța

    How to identify problem remotely

    madExcept does have a "check for frozen main thread" option. You can set the timeout in seconds. You will have a call stack.
  9. Cristian Peța

    Delphi 10.3 and the NOX emulator running Android 7

    Search for Logcat. But looks like starting from Android 4.1 reading logcat is no longer working without root access.
  10. Cristian Peța

    ANN: StyleControls VCL 4.26 released!

    Is there is a list of DevExpress controls that can be styled with VCL styles?
  11. Cristian Peța

    Delphi 10.3 and the NOX emulator running Android 7

    If adb connection is not working then installing a Log visualizer from the market is the easiest solution to see the log.
  12. Cristian Peța

    Delphi 10.3 and the NOX emulator running Android 7

    I used "Andoid Device Monitor" from SDK that installed with Delphi (starting \sdk\tools\monitor.bat) but it doesn't start with Rio installed SDK. At least for me. You either install Android Studio and use Logcat: https://developer.android.com/studio/debug/am-logcat Or other solutions: https://android.stackexchange.com/questions/14430/how-can-i-view-and-examine-the-android-log
  13. Cristian Peța

    Delphi 10.3 and the NOX emulator running Android 7

    Time to look in the log.
  14. Cristian Peța

    Delphi 10.3 and the NOX emulator running Android 7

    Is this emulator also emulating ARM code to x86?
  15. Cristian Peța

    Is [weak] available in win32/win64

    Yes, for interfaces, like article says. What help are you reading? Maybe it was not revised.
  16. Change "%minSdkVersion%" with "23"
  17. Cristian Peța

    Linux + Delphi + Apache problem on 10.3

    Just tested on Ubuntu and now I see that you already tested console app. Looks like under Apache (supposing ICU is available) collation Strength or Case_Level is other that expected. See "Case Ordering" here: http://userguide.icu-project.org/collation/concepts
  18. Cristian Peța

    Linux + Delphi + Apache problem on 10.3

    I have an Ubuntu installation that I tested in 10.2. But have you tested a simple console app? uses System.SysUtils; begin Writeln(AnsiCompareText('PARAMname','paramNAME')); Readln; end.
  19. Cristian Peța

    Single Instance of Dephi IDE?

    After I run for the first time an app I often use I pin it to the taskbar (Windows 10) and then I click only on this icon. Left click will open it, if it's closed, and switch to if it's open. Middle click will open every time a new instance.
  20. Cristian Peța

    pixel-perfect bitmap FMX app

    Actually I changed my code some years ago and now I'm painting on a bitmap scaled with Canvas.Scale (an UI Canvas) and then use Canvas.DrawBitmap() to draw UI.
  21. Cristian Peța

    pixel-perfect bitmap FMX app

    If you meant using TCanvas, this was possible at least when mobile compilers rolled out. The way to do this changed a little over time but now you need to apply a transformation matrix to the canvas to reverse scaling and all you paint using canvas will match 1:1. There was needed also a translation of (-0.5, -0.5) in that matrix because you needed to use (0.5, 0.5) to use only one pixel. I don't know if this is the case also now.
  22. @Schokohase if you are speaking about my suggestion to read bigger chunks from DB then this is not exactly parallelization. And the second suggestion was about what to optimize. If reading from DB takes 10ms and rendering 0.1ms per piece then I would not care about rendering.
  23. First you need to know much time takes GetTitleFromDB and RenderTitleToBitmap32. Then you will know where to optimize. For SQL servers hawing many small requests is costly. I don't know how much KB GetTitleFromDB is asking but generally reducing the number of requests (bigger data chunks) is better for client and for server also.
  24. If GetTitleFromDB() is using more DB connections and is multi-threaded and if this function is the main bottleneck then it makes sense to parallelize this for loop. Otherwise you can test but I think it will be no gain or even worse because LargeImage will not execute anything in parallel. Looking is per instance and you have only one instance.
×