Jump to content

Lajos Juhász

Members
  • Content Count

    1050
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by Lajos Juhász

  1. Lajos Juhász

    Issue with Color Names Overlay in Object Inspector

    If you enter a bug report without a test case they will close it as works as expected, I've been there a couple of times. Even if you submit a reproducible case the bug can stay opened for a decade.
  2. Lajos Juhász

    Issue with Color Names Overlay in Object Inspector

    I sometimes also get a bug that the selected property shows a value of a different property. I cannot enter a bug report as it's impossible to find out when that can happen. Also search in D12 is working even worse than in Delphi 11.2, here also I have had no time to create an example. I hope we can get a fix for some issues soon as we're moving to beta phase of our application.
  3. Lajos Juhász

    Delphi 12 and *.dsv

    In my opinion It's not a standard Delphi file, you've installed something that creates them. I am using VCL and tried to create an empty fmx file none has produced a file with a dsv extension.
  4. Lajos Juhász

    Encryption (AES)

  5. Lajos Juhász

    Help with Query at run time

    In order to work with jpg image format you must add the jpeg unit to your uses. IF you add a TImage named imgName then you can write: imgName.Picture.LoadFromFile('D:\Delphi_11_Community\MyProjects\Dinobase\dino_images\'+ sName + '.jpg');
  6. Lajos Juhász

    Delphi 12 IDE, cannot create regions

    How? It's broken for days (there is a thread on this forum, you get an: Error creating issue: Could not load FunctionProvider class).
  7. Lajos Juhász

    Delphi 12 IDE, auto-formatter mutilates generics

    Do not try the formatter in source where you've multiline string. They should deprecate also the IDE editor it can't cope with the code. I've a section in my code that I cannot edit inside the IDE (a class with inner types).
  8. Lajos Juhász

    Recent Menu partly hidden

    I believe that's the part of the new Embarcadero policy. 0 bugs in Delphi 12 due to the fact that we cannot report any new bugs.
  9. Lajos Juhász

    "Elusive" joins

    Open a second connection to the database and fill the required fields. Here locate is your friend.
  10. Lajos Juhász

    Help to find database error

    You should read more carefully the error message. You to open the query using the open method of the TFDQuery instead of ExecSQL.
  11. Lajos Juhász

    Help to find database error

    Double click on the FDConnection to open the FireDAC Connection Editor.
  12. Lajos Juhász

    Help to find database error

    while not SQLQuery1.Eof do begin currentLine := ''; for i := 0 to sqlQuery1.fieldcount-1 do currentLine := currentLine + ' ' + sqlQuery1.fields[i].asString; memOutput.Lines.Add(currentLine); SQLQuery1.Next; end; The above code doesn't require the Stringlist to iterate the fields of the query. To add a database the documentation states it should be a form of (https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Using_SQLite_with_FireDAC): Database=<path to SQLite database> While you've tried: SQLConnection1.Params.Add('D:Delphi 11 Community\My Projects\Connecting to SQLite\Data\dat2.sqlite'); You should do SQLConnection1.Params.Add('Database = '); append here the real path to the database. I believe instead of MemOutput.ClearSelection you wanted MemOutput.Clear.
  13. Lajos Juhász

    Upgrading EurekaLog for Delphi 12

    The windows have to find the bpl (dll) to load it and it doesn't know about the library path.
  14. Lajos Juhász

    Upgrading EurekaLog for Delphi 12

    you've to add the folder to the path.
  15. Lajos Juhász

    Accessing protected symbols

    A warning Canvas.TextWidth is valid only during painting, otherwise it's not guaranteed that the canvas has the correct font assigned. To be sure you can use https://docwiki.embarcadero.com/Libraries/Sydney/en/Vcl.Graphics.TCanvas.RequiredState.
  16. Lajos Juhász

    Using Regex for file name matching?

    If you want to compare against file mask you should use https://docwiki.embarcadero.com/Libraries/Alexandria/en/System.Masks.MatchesMask. For example: uses System.Masks; procedure TMainForm.TestClick(Sender: TObject); begin if MatchesMask(edText.Text, EdPattern.Text) then lbData.Insert( 0, 'True' ) Else lbData.Insert( 0, 'False' ); end;
  17. Lajos Juhász

    Using Regex for file name matching?

    A short answer is that *.pas is not a regular expression. In this case: * The asterisk indicates zero or more occurrences of the preceding element. For example, ab*c matches "ac", "abc", "abbc", "abbbc", and so on.
  18. Lajos Juhász

    Can not install Delphi Community Edition 11.2

    You can expect Delphi CE 12 in 2024 or 2025.
  19. The bad news with this change is that the sk4d.dll is not compatible with the dll used by earlier version of delphi. This new version is by default on the path and can cause access violation with older versions of Delphi (for example if SVGIconImageList is installed).
  20. Lajos Juhász

    Delphi 11.3 : FORSAKEN

    In my case I've renamed the folder "C:\Program Files (x86)\Embarcadero\Studio\23.0" to "C:\Program Files (x86)\Embarcadero\Studio\!23.0" started Delphi 11.2 Closed it, renamed back the folder since then I can start both versions.
  21. Lajos Juhász

    Delphi 11.3 : FORSAKEN

    I have had something similair. The solution was to rename the D12 folder started Delphi 11.2 and after that I can start both of them.
  22. Lajos Juhász

    [FMX beginner] Key Handling

    This is off topic but you can try https://appuals.com/how-to-disable-beeping-on-errors-on-windows-7-8-and-10/. Maybe you did: sc stop beep && sc config beep start= disabled
  23. Lajos Juhász

    Email from Delphi using Thunderbird

    If you really have to you can use SMAPI. You can find a code from @Attila Kovacs here:
  24. Lajos Juhász

    Keyboard commad for paste with text controls [not working]

    You should give more details. I've tested a new Delphi 11.2 application with an edit and a memo. Works perfectly when compiled as 32 and 64 bit Windows application.
  25. In my opinion this is the wrong place to report the error. Delphi compiles the code correctly, your environment is giving the wrong result eg. it's not a compiler bug.
×