

Lajos Juhász
Members-
Content Count
1112 -
Joined
-
Last visited
-
Days Won
15
Everything posted by Lajos Juhász
-
OnFieldchange for the field linked with dbCombobox1. I would also compare the field value, not the DBCombobox1.text.
-
The available information can be found at: http://docwiki.embarcadero.com/RADStudio/Sydney/en/Code_Insight_Reference You can always try to enable logging and read the logfiles.
-
I posted a link yesterday to the Webinar where Marco Cantu answered to my question about the Internal Errors in Delphi 10.4.2 most probably it's a bug in the compiler/LSP whatever that causes multiple problems with the IDE. He said that some customers received the hotfix and the feedback is positive. He didn't said anything about when the fix will be available for the public. How much individual issues would I like to see? For every issue that could cause Internal Error, Access Violation or that the IDE dies. I can live with bugs that doesn't crash the IDE. Once again we cannot know what fix is being tested as Idera/Embarcadero will not give information about that to the public (in my opinion it's the wrong choice).
-
A wonder what company would react in a positive way for a quality ticket that nothing is working and the product is falling apart. An individual issue can be investigated and most probably be fixed, but a general statement that the *thing doesn't work* will not help in anyway. We have to wait for the hotfix that should fix the error that slipped into 10.4.2 and then report the new issues.
-
Unfortunately this RSP not even worth to read it there is no information in it it should be rejected.
-
Several F2084 Internal Error on Delphi 10.4.2
Lajos Juhász replied to Davide Angeli's topic in Delphi IDE and APIs
This is most we can know about the current status. -
Several F2084 Internal Error on Delphi 10.4.2
Lajos Juhász replied to Davide Angeli's topic in Delphi IDE and APIs
There was a "problematic" check-in to the codebase before the release of the Delphi 10.4.2 that was not detected in time. Some customers are already testing the hotfix that supposed to fix the bug. Unfortunately there is no public information what will this hotfix fix and if there is still some issues that requires another fix. -
Maybe heroes from the Marvel Universe are capable to read fast enough and click I just get headache when for some reason get to the site.
-
Well they're in the process to make a unique web experience. It will take maybe another 10-15 years. When finished it will be the greatest. I just hope that it will be more static. I wonder who thinks that those sliding topics at https://blogs.embarcadero.com/ is useful! It slides out before you could click. What's wrong with the traditional sites where you can see the links and click on them? (I know most probably they bought this technology and must showcase it everywhere, I will just visit the site only when it is necessary.)
-
There is BDE for RAD Studio 20.4 27.4MB 2020-05-28.
-
You can find on the Registered Products portal - https://my.embarcadero.com/.
-
Several F2084 Internal Error on Delphi 10.4.2
Lajos Juhász replied to Davide Angeli's topic in Delphi IDE and APIs
I have an application that uses packages. Most of the time I can compile and run it and on the second attempt I get internal error. The only solution is to run the application without debugging. -
Application.MessageBox in multiples monitors
Lajos Juhász replied to Nico Preto's topic in Windows API
I've tested using XE5 and 10.4.2 in both versions the message appears on the correct monitor. -
Several F2084 Internal Error on Delphi 10.4.2
Lajos Juhász replied to Davide Angeli's topic in Delphi IDE and APIs
Let's hope Embarcadero will soon finish testing the hotfix and will release it. -
IdGlobal is required for the function IndyTextEncoding_UTF8.
-
This question has nothing to do with VCL and Memo. You should ask it in Delphi Third-Party -> Indy as you're using Indy to decode the data. Most probably your data is mailformed (I've tried to decode it using https://www.base64encode.org/ and the result there is: 如何讓 art-mate 成為) . In order to decode UTF-8 characters you have to add idGlobal to the uses and call DecodeString: s3 := idDecoderMime1.decodeString(s2, IndyTextEncoding_UTF8)
-
Several F2084 Internal Error on Delphi 10.4.2
Lajos Juhász replied to Davide Angeli's topic in Delphi IDE and APIs
You can try to tag @David Millington I guess he can try to find out more about it. -
It's located at https://my.embarcadero.com/.
-
High-DPI is required in order to work with the users DPI settings. Without that the program cannot determine how to scale the svg image or which version of the image to draw at what size.
-
This is the reason I am hoping that there will be a longer then usual beta period for the new release. Even Delphi 10.4.2 still has a large number of problems due to the changes they made (internal errors and Access Violations).
-
How to change background color in a TDbGrid column editor?
Lajos Juhász replied to Tom F's topic in VCL
One way I found to achieve this is to use the fact that in the TCustomGrid.UpdateEdit procedure UpdateEditor will set the color of the editor to match the color of the grid: type TCrackGrid = class(TDBGrid); procedure TForm1.DBGrid1ColEnter(Sender: TObject); begin UpdateEditorColor end; procedure TForm1.FDQuery1AfterScroll(DataSet: TDataSet); begin UpdateEditorColor; end; procedure TForm1.UpdateEditorColor; begin if dbgrid1.SelectedField = fdQuery1Color then begin // Here is the code to setup the color of the inplace editor..... if odd(FDQuery1.RecNo) then dbgrid1.Color:=clRed else dbgrid1.Color:=clWhite; end else dbgrid1.Color:=clWhite; TCrackGrid(DBGrid1).InvalidateEditor; end; -
You define the manifest for the entire application, if it's implemented correctly for everything even the form designer should be DPI sensitive. Unfortunately we will have to wait for the first authorized posts from the beta testers to learn about it. Let's hope the beta will start soon.
-
It's on the roadmap as I wrote for Delphi 10.5 (High DPI IDE Support).
-
Delphi 10.5 should introduce DPI friendly IDE, we have to wait only about 4-6 months to see it.
-
Delphi 10.4.2 Right Click over a word -> Find Declaration, Not working.
Lajos Juhász replied to Juan C.Cilleruelo's topic in Delphi IDE and APIs
Jira is the system portal thet is used (from the wikipedia: Jira (/ˈdʒiːrə/ JEE-rə) is a proprietary issue tracking product developed by Atlassian that allows bug tracking and agile project management). It will take user user name, not your e-mail. https://quality.embarcadero.com/secure/Dashboard.jspa Logging in: Use the same account you use for the Registered Products Portal. Note: use your username as opposed to your email address It is listed as "login" in your user account info Create Account or Reset Password via my.embarcadero.com Still can’t log in? Contact support- 45 replies
-
- 10.4.2
- find declaration
-
(and 1 more)
Tagged with: