Jump to content

limelect

Members
  • Content Count

    888
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by limelect

  1. limelect

    I solved my problem but

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

    I solved my problem but

    @Dalija Prasnikar Out of curiosity I tried your suggestion and it worked too.
  3. 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
  4. limelect

    I solved my problem but

    Thank but that is not MY QUESTION
  5. 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
  6. 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
  7. limelect

    What happened to Felix Colibri

    And finally, does anyone knows what happened to Felix Colibri?
  8. 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
  9. 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?
  10. 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
  11. limelect

    GameVision Toolkit

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

    GameVision Toolkit

    @tinyBigGAMES see my errors on git
  13. and you did not read my comment If it is not open source not useful !!!!!
  14. Component "TplsController" is missing. If it is not open source not useful
  15. 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
  16. limelect

    INI problem

    @Remy thanks you are correct
  17. limelect

    INI problem

    Let's just clarify the point I am with Delphi since #1 and have never seen such a thing.
  18. 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.
  19. 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
  20. limelect

    Using COM to update Word docx files

    @tgbs thanks
  21. limelect

    Using COM to update Word docx files

    @Remy Lebeau what will be the same idea word := CreateOleObject('Word.Application'); for OPEN OFFICE?
  22. 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.
  23. 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;
  24. limelect

    Locked SQlite

    @Serge_G Thanks, serge however to use your program I needed to move the database to debug and change to Database=madb.sdb DriverID=SQLite While running I got date encode error recovery error D10.2.3 maybe because our date is different?
  25. limelect

    Locked SQlite

    Ok what you all say is that it is ONLY a problem with 2 Applications running but In my case, it was only under 1 development. It seems that somehow the computer used to have access to more than one (same)database. (for that I have a program called "unlocker.exe.) well now I cannot check the problem as somehow it was fixed by itself So maybe you are all right.
×