Jump to content

limelect

Members
  • Content Count

    915
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by limelect

  1. limelect

    I solved my problem but

    Going to put a new leak problem
  2. limelect

    I solved my problem but

    @David Heffernan This is the minimal. Only that I have added FastMM4 to DPR
  3. limelect

    I solved my problem but

    @Virgo may I should change my debugger because it does free. So simple code try it
  4. limelect

    I solved my problem but

    @Dalija Prasnikar Out of curiosity I tried your suggestion and it worked too.
  5. limelect

    I solved my problem but

    Sorry to be misunderstood But in the above this is my question using IdHTTP := TIdHTTP.Create(nil) <<<< give me great amount of LEAKS, using IdHTTP := TIdHTTP.Create(Form1); <<< it is OK Ver simple question
  6. limelect

    I solved my problem but

    Thank but that is not MY QUESTION
  7. limelect

    I solved my problem but

    @haentschman I thought that too but i double checked It does free http at list on the single step I made a link error for that
  8. limelect

    What happened to Felix Colibri

    What happened to Felix Colibri His site does not exist anymore I am looking for https://web.archive.org/web/20220119203051/http://www.felix-colibri.com/scripts/fcolibri.exe?a=1?filename=zip_delphi_dropbox_rest_client.zip https://web.archive.org/web/20220119203051/http://www.felix-colibri.com/scripts/fcolibri.exe?a=1?filename=zip_delphi_dropbox_indy_rest_client.zip It is from http://www.felix-colibri.com/papers/web_services/rest_web_services_oauth2_tutorial/rest_web_services_oauth2_tutorial.html On way back
  9. limelect

    What happened to Felix Colibri

    And finally, does anyone knows what happened to Felix Colibri?
  10. limelect

    What happened to Felix Colibri

    @Fr0sT.Brutal Thanks I thought to shorten the process. Why invent the wheel? I think after 30+ years of Delphi I can have some help. P.S I just gave someone (who needed help) sources
  11. limelect

    What happened to Felix Colibri

    @Fr0sT.Brutaldo you have a demo for downloading/loading files to dropbox. The ones I have do not work. Using only key and secret?
  12. limelect

    auto code formatting

    1. this is a Delphi community 2. evaluating which Windows-based IDE to use 3. it formats every... 2 and 3 have nothing to do with each other
  13. limelect

    GameVision Toolkit

    @tinyBigGAMES you wanted errors you got them on git I guess there are more Good luck
  14. limelect

    GameVision Toolkit

    @tinyBigGAMES see my errors on git
  15. and you did not read my comment If it is not open source not useful !!!!!
  16. Component "TplsController" is missing. If it is not open source not useful
  17. limelect

    INI problem

    Crazy but true. I have a solution moved to TMemIniFile but need your help to understand var TIFFileini: TIniFile; begin TIFFileini:= TIniFile;.Create('ComPortServer.ini'); if TIFFileini.SectionExists('Tst0') then Label1.Caption:='yes' else Label1.Caption:='No'; INI file [Tst0] HardFlow=0 ANY IDEA WHY I GET NO ???????????? D10.2.3 never had such a problem
  18. limelect

    INI problem

    @Remy thanks you are correct
  19. limelect

    INI problem

    Let's just clarify the point I am with Delphi since #1 and have never seen such a thing.
  20. limelect

    INI problem

    1. current folder is where execution is. 2 first I checked in the IDE 3 then I executed outside the ide (in the folder) 4 a few hours it was NO. it seems something with Windows as this is the only explanation since now it is OK. Or Delphi compilation no other explanation.
  21. limelect

    INI problem

    @Der schöne Günther 2 lines this is the INI Crazy as it sounds I gave a full path I got yes then I deleted the full path I got yes. Well now I am buffeled Is it Delphi that gives me a beautiful day? What I think there might have been hidden characters although no reason for it
  22. limelect

    Using COM to update Word docx files

    @tgbs thanks
  23. limelect

    Using COM to update Word docx files

    @Remy Lebeau what will be the same idea word := CreateOleObject('Word.Application'); for OPEN OFFICE?
  24. limelect

    Locked SQlite

    My problem is not Delphi but.... I am using SQLite. I have these lines ProjectsFDTable.Edit; ProjectsFDTable.FieldByName('ProjectName').AsString :='1111'; ProjectsFDTable.Post; While developing I found I get locked situation I could not get rid off. It took me some time to understand the problem is within the DATABASE itself!!! not my program. Somehow while developing I made a locked database. So my main question is can someone give me some link for source or guideline to build a small program to fix such problems within a database. Although I have a "GOOD" database I still would like to have such a program P.S During my "good old days" D6 ,D7, and before we had a program to fix the database records in BDE.
  25. limelect

    Locked SQlite

    @Serge_G I do not know if what I have applied to your case but I have 2 functions in my table and sql that work 1. ProjectsFDTable.Filtered := false; ProjectsFDTable.FilterOptions := [foCaseInsensitive]; ProjectsFDTable.Filter := 'MyDateTime > {dt ' + FormatDateTime('yyyy-mm-dd ', AdvDateTimePicker2.Date) + ' 00.00.00 }' + ' and MyDateTime < {dt ' + FormatDateTime('yyyy-mm-dd ', AdvDateTimePicker2.Date) + ' 23.59.59 }'; ProjectsFDTable.Filtered := True; 2. FDQuery2.Close; FDQuery2.SQL.Clear; FDQuery2.SQL.Add('Select * from Projects'); FDQuery2.SQL.Add('WHERE {fn CONVERT(MyDateTime,DATE)}=:MyDate'); FDQuery2.SQL.Add('ORDER BY MyDateTime'); //=''03/10/2021'''); FDQuery2.Params.ParamByName('MyDate').AsDate := AdvDateTimePicker1.Date; FDQuery2.Open;
×