Jump to content

Lajos Juhász

Members
  • Content Count

    986
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by Lajos Juhász

  1. Lajos Juhász

    Current state of the Embarcadero services

    "Customers who have installed RAD Studio 12 using the online installation process won’t have the ability to add new platforms and core features to the product via the Manage Features dialog. In order to do this, they will need to uninstall and then reinstall using the new inline release." It's not about the GetIt or Welcome page.
  2. Lajos Juhász

    Current state of the Embarcadero services

    That's not possible. The Welcome page is working fine for me (installed from the ISO image). I doubt that the ISO and online installer has different setup for the GetIt.
  3. Lajos Juhász

    TForm Destroys are not called when target is macOS ARM 64-bit

    1.) Log into https://quality.embarcadero.com/ 2.) Enter RSP-26436 into search (you can find it at the upper right corner of the page) and you cannot copy paste it from the text above as it contains unicode characters. https://quality.embarcadero.com/browse/RSP-26436
  4. Unfortunately the parser that the IDE uses is not up to date. I also have some cases where the editor messes up my code I have to pay attention what I am doing. In one class I can add a property only if I paste it from the clipboard entering using the keyboard is not possible. Embarcadero might replace the IDE in near future (5-10 years from now).
  5. Lajos Juhász

    Delphi 12 Update 1 is not displayed in the IDE About dialog

    Interesting I've the patch installed but the IDE thinks it's not installed......
  6. Lajos Juhász

    Delphi 12 Update 1 is not displayed in the IDE About dialog

    This is a patch, not an update it should only change the Version.
  7. (In case of Delphi 12 patch 1 (it's not officially 12.1) a clean all was required before I could compile a project group. I have tried before to uninstall design time packages that was not enough to remove the Access Violation when I tried to compile. After clean all I was able to compile.)
  8. In that case you was lucky or you are not using packages often. This error can appear at no reason, you have to recompile the packages and everything should work fine.
  9. Since a long time Windows 10 is reuqired to install the Delphi IDE. You can compile applications for older versions of Windows but the dev. machine should be at least Windows 10. I am not aware if there a possibility to install it on Windows 7.
  10. Lajos Juhász

    64bit designtime firedac

    There should be 32 bit clients for every database server. I doubt that every application that is connecting to database has moved to 64 bit.
  11. Lajos Juhász

    64bit designtime firedac

    You should be able to do so. I've done for Informix. At design time I use the 32bit ODBC driver while when compiled as 64 bit application runtime the 64bit driver.
  12. Lajos Juhász

    Filtering ListBox Items

    procedure TForm1.Edit1Change(Sender: TObject); Var i: Integer; lFilteredList: TStringList; Begin lFilteredList:=TStringList.create; try if trim(Edit1.text)<>'' then begin for i := 0 to list_global.Count - 1 do if pos(Edit1.text, list_global[i]) > 0 then lFilteredList.Add(list_global[i]); end; if lFilteredList.count=0 then listbox1.items.assign(list_global) else listbox1.items.Assign(lFilteredList); finally lFilteredList.Free; end; End;
  13. Lajos Juhász

    Filtering ListBox Items

    procedure TForm1.Edit1Change(Sender: TObject); Var i: Integer; Begin listBox1.Clear; if trim(Edit1.text)='' then listbox1.items.Assign(list_global) else begin for i := 0 to list_global.Count - 1 do if pos(Edit1.text, list_global[i]) > 0 then listBox1.Items.Add(list_global[i]); end; End;
  14. Lajos Juhász

    Filtering ListBox Items

    It is a general algorithm. For search you loop to the items. While for search you have to maintain the data in order to insert into the components the values that match the criteria.
  15. Lajos Juhász

    Delphi 12: Invalid class typecast

    I would bet on the contact information at https://www.mmx-delphi.de/ there is a link legal notice with contact details.
  16. There was a discussion about this function already at this forum:
  17. Lajos Juhász

    Delphi 12 Application showing two windows on the taskbar?

    I cannot reproduce your bug using Delphi 12.
  18. Lajos Juhász

    Wrong hex code

    You can fix it by changing your code.
  19. Lajos Juhász

    Is there a way to create a photo capture toobar?

    Delphi is strongly typed language you cannot modify the signature of an event. In order to find out which button was clicked you should the sender parameter of onClick: procedure TForm1.btnClick(Sender: TObject); var c : TComponent; begin if Sender is TButton then // <--- the name of the class of the button begin c:=Self.FindComponent('IM_'+TButton(Sender).Tag.ToString) ; ........ You should never use Form1 inside a method of the TForm1 that's a bad design you're locking the implementation to that one reference instead you can write Self.FindCompoent or leave out self and write FindComponent. Please try not to use With it's an evil language contruct that has no place in modern code.
  20. Lajos Juhász

    PPPoW simply for Delphi XE Starter

    it's a comment for other users of the forum. In case you don't want to communicate for others you don't have to write anything.
  21. Lajos Juhász

    Advice: Compiling with a friend's Delphi

    An issue could be also that a newer version of Delphi could require source code changes to be able to work with newer version of Android. Please do remember that nor platform support (due to changes at platform level) and fmx are not solid. From version to version there are required changes in order to get a correct output.
  22. Lajos Juhász

    Could this be an Indy Error?

    This is really not enough information to help you. You should post some code and the error messages that you recieve.
  23. In Delphi components are not binary compatible between major releases. You will have to modify your existing components or obtain the version for Delphi 11. After that you have to compile and install runtime packages. That's the main reason why there is no automatic option to obtain installed components from a previous versions. PS. Usually it requires a minimal change in the source to move a component to the next version of the Delphi. In case of the same version of the Delphi in 2 separate computers there is a migration tool, I've never used it.
  24. Lajos Juhász

    Opensource scripting language?

    Regex is a new requirement in this thread.
×