Jump to content

limelect

Members
  • Content Count

    775
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by limelect

  1. limelect

    Simple FFT

    And another one for Fourier ObjMath.zip
  2. limelect

    Simple FFT

    This is what i have for FFT Old One .Good luck fft_source.zip
  3. I did not check for FMX In VCL Easy use OgFirst in free "ONGUARD" in DPR begin if TogFirst.IsFirstInstance then begin xxxxxxxxxx xxxxxxxxxx xxxxxxxxxxx end else TogFirst.ActivateFirstInstance;
  4. limelect

    comport output

    @kvk1989 I wander what is Fungsi.pas?
  5. limelect

    comport output

    @kvk1989 It seems you do not understand Your link does not work PUT your picture here
  6. limelect

    comport output

    Put the picture here so we can see what you are talking about. Cannot download the picture
  7. I made this component years ago so I cannot help By the way, independence day is not there it is only religious days
  8. This is an Hebrew calendar with my component
  9. Will my free library/component will help you? https://limelect.com/downloads/hebrew-holydays-delphi-components/ I also used it with D10 If you need my help drop an Email
  10. limelect

    My Experience with D10.4

    I did not know where to write my experience so here it is I downloaded Delphi Community Edition 10.4.2 for evaluation. Now I work with 10.2.3 I manly downloaded it for the Android work. I have an application that works on phones under S21. In Galaxy S21 it does not work so I wanted to compile and install it with 10.4. So for my experience which was awful. First, I compiled a form button and label and saw that it works. Next, I made a virtual phone that I spent hours installing until I got to the point that it load but have a black screen. I abandoned the task and went to the evaluation on my phone s21. I took my source (worked with D10.2.3 ) loaded it into the 10.4 application. some files are needed. to be included in the search path. So I looked into the Delphi option to find that there is no global search for files. Left that. Go to the project option and put the files directory there. To my amazement no matter what I did Delphi did not find the files. I ended adding the files into the project!!! With a lot of work I compiled. A new problem icons error. why? So I ended up doing the next thing. Made a new form and project with the same name I needed and copied all my files to that project. Now it compile and loaded to my phone. Remember I do not have a virtual phone black screen. Ok now for the worst experience. My Android program gets stuck on the splash screen. So next debug. On form create to see what is going on. Break. See with cntr F7 information.Nothing.An error within F7. Great. Next run with F8. Well, this is the best. On each F8 it compiles again. What do you think guys? Should I buy such a product?
  11. limelect

    My Experience with D10.4

    @Dalija PrasnikarLet me point a few things In the old days, ver 7 was very stable and I am still happy to use it on some old projects. As of today, 10.2.3 is very stable and I am glad to use it. As for Android "Android Studio" give me a solution even with the old OS on the new phone. I do not need to have the new update (although I do) to work on a new phone. With Embarcadero I have to pay lots of $ and still not satisfied. Android Studio is free. And works almost without a glitch. After my experience with D.4.2 I will definitely not evaluate 11 (maybe I will change my mind) to be sure that the product is not perfect. I do not expect 100% as we are all in the software business and we know what is all about. But to have a bad product like D4.2 is totally unacceptable.
  12. limelect

    My Experience with D10.4

    No, sorry to say that what you think is that 10.4 is buggy that why we have 11? Sorry, I do not agree. With all those software guys it should have been almost good. I do not say that a big company is free of bugs. But to have such a product (10.4) from Embarcadero is bad practice. And they will not survive.
  13. limelect

    My Experience with D10.4

    Let me clarify some things. First, I love Delphi. I am with it since #1 Yes, I am grown by now. For windows, it is a great product. However, for Android it is bad. Huge application size. I love its IDE. I have been working with Android Studio and I hate its IDE However small application size and it works without a glitch. No matter which phone I take it works. Its software language (java) is fairly complicated. Not the java itself. Java is OK but its use for Android development is complicated. But compere to Delphi it works without any problem. I which Embarcdero takes some of us, users, into consideration and thinks of the future if they want to keep existing.
  14. limelect

    document projects

    Whoever downloaded the document projects There is VER 3 with lots of fixing and new pages that I added All for my need and yours. https://limelect.com/downloads/document-projects/
  15. limelect

    document projects

    @Anders Melander Got it finally thanks. Until next time
  16. limelect

    document projects

    @Anders Melander In the third party list there is no way to add mine. See for yourself. Try to add something. "I made this" sound more logical.
  17. limelect

    document projects

    @Anders Melander There no way to put it there. see for yourself
  18. limelect

    Firebird Admin Tool

    On portableApss free and great SQLiteDatabaseBrowserPortable https://sqlitebrowser.org/
  19. limelect

    Date Time with filter in FDTable

    Return to my filter but with date and time My basic statement that worked is ProjectsFDTable.Filter :='MyDateTime = {d ' +FormatDateTime('yyyy-mm-dd ',AdvDateTimePicker2.Date)+'}'; The problem I want to filter only date AdvDateTimePicker2.Date BUT MyDateTime has date and time. !!! I know of {fn CONVERT(MyDateTime,DATE)} I did not know where to place it in my basic function. My solution that works (BUT I DO NOT LIKE IT) is: 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 }'; Which is date+time > and date+time < in beetwin. Any better idea? In SQL the above {fn CONVERT(MyDateTime,DATE)} works.
  20. limelect

    Date Time with filter in FDTable

    @Hans J. Ellingsgaard It is a fairly large program with many sections Some with SQL and some table. I did not want to start to redesign a large portion (maybe stupid but factual). @Serge_G Thanks
  21. limelect

    Date Time with filter in FDTable

    @Serge_G As per your suggestion with D10.2.3 ProjectsFDTable.Filtered := false; ProjectsFDTable.FilterOptions := [foCaseInsensitive]; decodedate(advdatetimePicker2.date,yy,mm,dd); ProjectsFDTable.filter:=Format('MyDateTime=%d',[yy*10000+mm*100+dd]); from f7 'MyDateTime=20211003' for 03/10/2021 Do not forget MyDateTime has date and time in it
  22. limelect

    Date Time with filter in FDTable

    @Hans J. Ellingsgaard read last line of my topic.
  23. limelect

    Date Time with filter in FDTable

    @ergeka I do not understand. The problem is "MyDateTime" which I have to get from it the date only. AdvDateTimePicker2.Date has nothing to do with the problem. AdvDateTimePicker2.Date has DATE only
  24. limelect

    FDTable filter problem

    I have done filtering in other databases with no problem. This time I am using FDTable, My tries ProjectsFDTable.Filtered:=false; ProjectsFDTable.Filter:='Category =' +QuotedStr('Tools'); OR ProjectsFDTable.Filter:='Category = Tools'; ProjectsFDTable.Filtered:=True; Category is the column Tools is the data The errors are mainly - Tools cannot be found as the Column <<<< how come? With the QUERY component I have no problem but for my reasons I want to do it with FDTable. Any idea PS. I tried with ProjectsFDTable.SQL nothing worked.
  25. limelect

    FDTable filter problem

    Read my comments above. It answers your question. It is in my question With the QUERY component I have no problem but for my reasons I want to do it with FDTable.
×