Jump to content

limelect

Members
  • Content Count

    922
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by limelect

  1. limelect

    How do I synchronize two TMemo scrolling? [Solved]

    @Uwe Raabe Tested and up and down keys work but not the left and right or HOME and END keys to be perfect D10.2.3 MemoScrol.zip
  2. limelect

    Problem using SpinEditEx in Delphi 12.1

    @Anders Melander Why are you not polite? and besides the guy says he works for years Sorry it bothers me
  3. limelect

    How do I synchronize two TMemo scrolling? [Solved]

    Great but out of curiosity I added procedure WMVScroll(var Message: TMessage); message WM_VSCROLL; procedure WMHScroll(var Message: TMessage); message WM_HSCROLL; @JohnLM But not with arrow up or down
  4. limelect

    BIG changes

    Well sorry to say that my opinion is different. I have been with Delphi since #1 and before that (even with assembler) I still actively work with coding all day and I do not see myself getting code from a machine (computer) I love my work and enjoy coding which gives me a lot of satisfaction when I achieve my goal. Brean quizzing is the ultimate
  5. limelect

    A TComboBox alternative not based on WinAPI

    @ThomasRiedelDk It has BetterComboBox.Text:='abc'; this is a find in the list As for that, I made an issue on GitHub
  6. limelect

    [Open Source] Delphi Youtube Downloader

    Enjoy https://limelect.com/downloads/youtube_downloader_shell/
  7. Use pip on command line for example pip install pandas
  8. Ok, I tried to fix all values of newer Delphi but got stacked as too much work; on file ccTextFile line 335 no s:= Stream.ReadStringA(1024*KB); so I do not feel like going on. P.S. I fixed 4 files by now but stopped. So good luck.
  9. It seems you don't read carefully still missing cbAppDataFmx Well I do not presume to be the debugger OK it seems you added the file later But now you use newer Delphi and mine is 10.2.3 so good luck. There are out there even Delphi 5 Stop guys using NEW (above 10) as not everybody has the luxury of buying every year a new Delphi. P.S I have been with Delphi since #1
  10. why save is in the middle of the form?
  11. @GabrielMoraru Missing still cbAppDataFmx, ccCore maybe more
  12. @GabrielMoraru You are missing cbAppDataFmx in your source and ccCore, too missing CR, LF not define and what is that? AppData:= TAppData.Create('MyCollApp'); AppData.CreateMainForm(TfrmMain, frmMain, False, True); // Main form
  13. limelect

    TEdit problem capital letters (Delphi 12, Android)

    D10.2.3 no problem
  14. limelect

    ListBox language sorting

    ListBox language sorting I have 2 languages in listbox Hebrew and English When sorting I get 3 sections Hebrew English Hebrew I tried with TStringList same effect Any Idea? thanks
  15. limelect

    ListBox language sorting

    I found some strings where with space in the front It OK now
  16. limelect

    Create an animated gif from a set of bitmaps?

    @Anders Melander Have a look here https://limelect.com/downloads/avi2gif-program-decode-avi-into-gif/
  17. limelect

    Create an animated gif from a set of bitmaps?

    This is mine see link not nobady
  18. limelect

    Create an animated gif from a set of bitmaps?

    I found the source on D6
  19. limelect

    Create an animated gif from a set of bitmaps?

    If this might help you get in touch It is so old 2014 and I think it was done with D6 And I have to find the source. https://limelect.com/downloads/avi2gif-program-decode-avi-into-gif/
  20. limelect

    Chrome link detection

    I want your help Chrome (google) stopped finding a search amount of 100 As for that, I would like to make a small application that adds &num=100 to the search link. (I checked and it works). I would like some sources for 1. find the active search link on my Chrome 2. most importantly, write it back to the link after adding the above. 3. I do not care for the others as I work only with Chrome Any idea?help?
  21. limelect

    Chrome link detection

    This is what I came up to now and I do not get the inside text function GetActivePageUrlFromChrome(Handle: HWnd; Param: LParam): Bool; stdcall; var List: TStrings; hWndChrome, hWndChromeChild: HWND; Buffer: array[0..255] of Char; begin List := TStrings(Param); hWndChrome := FindWindowEx(0, 0, 'Chrome_WidgetWin_1', 0); if hWndChrome <> 0 then begin hWndChromeChild := FindWindowEx(hWndChrome, 0, 'Chrome_RenderWidGetHostHWND', 0); if hWndChromeChild <> 0 then begin SendMessage(hWndChromeChild, WM_GETTEXT, Length(Buffer), integer(@Buffer)); List.Add(Buffer); end; end; Result := True; end;
  22. limelect

    Chrome link detection

    I have added this to Chrome https://chromewebstore.google.com/detail/google-search-100/dbnmpiokdhpgjdimidpaggnkcdmbdmmi?hl=en But it still nice to get help
  23. limelect

    Some new projects...

    Thanks
  24. limelect

    Some new projects...

    I tried some projects to compile with D10.2.3 and all had errors all kind so I gave up. Only your about component compiled OK P.S no FMX.fhtmledit
  25. @DelphiUdIT as per https://docwiki.embarcadero.com/RADStudio/Athens/en/Compiler_Versions It does not have 12.1 or 2 May be 37 or 38?
×