Jump to content

Lajos Juhász

Members
  • Content Count

    1050
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by Lajos Juhász

  1. It's TPythonInputOutput as the property is definied: property IO: TPythonInputOutput read FIO write SetIO;
  2. Lajos Juhász

    key is temporary

    You have to define the primary key in create table statement. Index on query component will not add a PK on database.
  3. Lajos Juhász

    key is temporary

    You can simply achieve that by changing that option and then recompile your source. Seriously you believe we can see your monitor and to read what you're doing?! You should give enough information. We don't know which database you're using and what you're doing. In SQL there is no concept of temporary primary key. You have only two options when you create a database table. The table has a key or it doesn’t (you can also create a primary key and later drop it).
  4. Lajos Juhász

    FireDAC + TableNames with '$'

    You can fill a QP ticket - https://quality.embarcadero.com/secure/Dashboard.jspa. This is the only possible way to get response from Embarcadero.
  5. Lajos Juhász

    Is FireDAC extensible?

  6. Lajos Juhász

    Is FireDAC extensible?

    When it was released it was not only Embarcadero could create a new driver. As far as I know this is still the case. If you have a support you can put a feature request for a new driver.
  7. Lajos Juhász

    bitmap to jpeg compression

    I would disagree here, my test bmp was 2.55MB in jpeg it's 277Kb. You should give more details. For example what is the error message or exception you receive. Please do not forget we are no hackers and have no access to your environment (cannot hack into your computer to see your display). If it's possible always post a minimal test case that we can copy and compile. I've tested with this code: procedure TForm1.Button1Click(Sender: TObject); var NewBitmap: TBitmap; CodecParams : TBitmapCodecSaveParams; MS1 : TMemoryStream; Surf: TBitmapSurface; JpgQuality : TBitmapCodecSaveParams; begin ms1:=TMemoryStream.Create; try newBitmap:=Tbitmap.Create; newBitmap.LoadFromFile('d:\original.bmp'); JpgQuality.Quality := 100; MS1.Position := 0; Surf := TBitmapSurface.Create; try Surf.assign(NewBitmap); // use the codec to save Surface to stream if not TBitmapCodecManager.SaveToStream( MS1, Surf, '.jpg', @JpgQuality) then raise EBitmapSavingFailed.Create( 'Error saving Bitmap to jpg'); ms1.Position:=0; ms1.SaveToFile('d:\original_bmp.jpg'); finally Surf.Free; end; finally ms1.Free; end; end;
  8. Lajos Juhász

    Default(TMyRec) usage

    I used Default on record maybe once or twice. On the other side I rarely have a chance to use records. Nowdays it's almost always a class I am working with. Generally speaking, when it's important for readability I do like to initialize a variable/field/record just to have a cleare code when I have to revisit it.
  9. Lajos Juhász

    DBGrid1.Columns[1].Font.Color

    In the event you should change the color of the font on canvas not the column.
  10. Lajos Juhász

    Canvas.Font not equal Font?

    As in the documentation it's going to be set in the paint event. Otherwise it's not guaranteed to be the same.
  11. Google returns that usually this error message occurs when the Exchange server is low on disk space. In any case you should incorporate a delay. Nowdays servers usually has a hard limit how many e-mails you can send in an hour.
  12. Lajos Juhász

    Dynamically Created Label Font Change

    Most probably you've changed the Label1.StyledSettings property. I've tried with the default settings of the TLabel you cannot change the style from the code. In order to work you have to add: L.StyledSettings:=L.StyledSettings-[TStyledSetting.Style];
  13. Lajos Juhász

    Enterprise Coderage 2022

    You can watch it on Youtube.
  14. Lajos Juhász

    Get method's name as string from the code inside that method

    Could be Windows ASLR?
  15. Lajos Juhász

    Delphi beta testing a "premium" privilege?

    Yes of course. Also that they find no interest in publishing when we can expect a point release (including bug fixes). You bought what you bought (without support you get 0 bugfix) if there is a bug you're a developer and should write your code that will overcome the bugs. This is not acceptable for Windows but it's working as updates/new version from MS doesn't requires changes in the toolchain. On the other side mobile platforms with every new version require an update in the toolchain they cannot support new OS releases. If you're using Delphi for an application you just have to figure out your developing cycle without knowing when you can expect bug fixes or new version with updates that you could use.
  16. Lajos Juhász

    Delphi beta testing a "premium" privilege?

    No, there is no reason to publish it anymore.
  17. Lajos Juhász

    Enterprise Coderage 2022

    I was able to register roughly 8 hours ago.
  18. Lajos Juhász

    Delphi beta testing a "premium" privilege?

    Why not? It's a priviledge to get access to some kind of "road map information". Their task is also to help to complete the version. This it's premium service of the customers towards the company!
  19. You should place the nodes after a copy in a list, during the copy operation you have to skip those nodes.
  20. Lajos Juhász

    Centered message?

    In order to calculate the required space you can use windows API DrawTextEx with format option DT_CALCRECT.
  21. Lajos Juhász

    Delphi 11.1 + patches - No debug source / breakpoints?

    I don't know please tell us. I have had a situation when I was unable to debug a package with one exe. Changed the application that is used for debugging (host application) then the break point worked every time. Next week I was able to debug with both applications.
  22. Lajos Juhász

    Code completion failure

    You will have to wait for a future version of the Delphi. Maybe the new IDE will resolve this issue (or an improved LSP server).
  23. Lajos Juhász

    Naming FireDac Connection Weird

    you have a local variable fdc. Try self.fdc.Connected:= True;
  24. Lajos Juhász

    Regex help please..

    This is an excellent suggestion. I doubt it is a must in Europe, I still receive sensitive information for other people in my e-mail account.
  25. Lajos Juhász

    Zeos on Delphi 11.2

    you should double check the path of the file the package tries to load. If the name of the dll is same for 32 and 64 bits there is always a possibility that windows first locates the 32 bit version.
×