Jump to content

mvanrijnen

Members
  • Content Count

    455
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by mvanrijnen

  1. Hi folks, We have a new developer at out team, he got C# & Python at his study, and has to learn Delphi now to be productive in our team 🙂 What sites you recommend to start out with Delphi, we have him now looking to Learn Delphi, and the links mentioned there.
  2. mvanrijnen

    How to rearrange projects in projects group file?

    just drag and drop in the projects list of the group?
  3. mvanrijnen

    REST Web Service

    also check: GitHub - andrea-magni/MARS: MARS-Curiosity Delphi REST Library
  4. We have one application which since a few months gives problems on most of the workstation here. (not all, ofcourse not on the dev machines 🙂 ) The application goes into high cpu constantly without doing anything (wanted). We noticed that this was causes by a thread which uses/started because TMethodImplementationIntercept so we fixed thats this method was not exported, then the troubles moved to __dbk_fcall_wrapper. It's only in one of the many applications we have here that this problem occurs, anyone any idea or direction we should search in?
  5. mvanrijnen

    indy https error 10061

    haha, you have stocks in that ? 😉 (i still have to compare it to mitm)
  6. mvanrijnen

    Access multiple Outlook calendars

    if they are o365 accounts, you could take a look at the Microsoft Graph API instead. maybe worth instead of doing it the "old way".
  7. then he get's an AV, cause he's freeing the CustomButtons in his Clear method.
  8. i have a ini helpers for this ....
  9. mvanrijnen

    Delphi 12 is available

    But WHY 🙂 The whole purpose of the CE licenses is to attract developers, not scare them away ?
  10. mvanrijnen

    Removing String

    double trouble 🙂
  11. mvanrijnen

    Removing String

    and now try this ) with this ( text as it )() fill fail (sometimes) 😉
  12. mvanrijnen

    Removing String

    Use this: System.SysUtils.TStringHelper.IndexOf - RAD Studio API Documentation (embarcadero.com) How to use the above to solve your problem is your job as a developer 😉
  13. mvanrijnen

    Can not install Delphi Community Edition 11.2

    How do you get the CE version of 12 ? Delphi IDE for Native Apps: Community Edition - Embarcadero States its still 11.x ?
  14. mvanrijnen

    Delphi CE application accesses unknown IPs

    Ah see, little bit strange that a site as virustotal does not take this to consideration or report it with the found ip's.
  15. In D11.3, with search (ctrl-f and/or ctrl-shift-f), the checkbox for "Whole words only", goes randomly to checked state in my IDE. Somebody who knows why this is, and/or how to fix this ? (i want it not checked by default)
  16. mvanrijnen

    Delphi CE application accesses unknown IPs

    You can check this also with procmon: Process Monitor - Sysinternals | Microsoft Learn as said, i'm gonna check this now 🙂 (private laptop i have CE installed, will do the same tomorrow with the Enterprise edition). procmon does not detect any network connectivity simple console app: (and just for fun i attached the ip trace from procmon, running bds-> start project1 -> close bds) Virustotal result: Link: VirusTotal - File - 956317d6f12af53a4c97db41807e9dd51fd37c30057607cecb969fc9214ccb99 Scanning: Bkav Pro W32.AIDetectMalware RisingTrojan.Generic@AI.100 (RDML:gihstO5MCnK0eVlOewg5Rw) SecureAgeMalicious VBA32 TScope.Trojan.Delf IP Traffic When executing the file being studied, it generated the following IP traffic. 192.229.211.108:80 (TCP) 20.99.184.37:443 (TCP) program Project1; {$APPTYPE CONSOLE} {$R *.res} uses System.SysUtils; begin try try Writeln; Writeln('This is just a test'); except on E: Exception do Writeln(E.ClassName, ': ', E.Message); end; finally Writeln; Write('press enter...'); Readln; end; end. bds ip trace.txt
  17. i'm out of idea, very strange that you get a statuscode 200, visible content in the proxy but not content in the delphi object.
  18. mvanrijnen

    Spring4D dictionary and record values

    litlle bit offtopic, just curious, but what would be the (big) advantage of using Spring4D for collections instead of the "Built In" generics/collections from Delphi?,.
  19. but there is clearly JSON data in the response, i really would not know where your response content is empty
  20. ah ok. You can see that there is content (348 bytes) but i think i know the problem, probably your accept header is not ok. more will follow in a minute, i check something..... you have this RESTProfileRequest.Params.AddItem('Accept', '*/*', TRESTRequestParameterKind.pkHTTPHEADER); somewhere? change the '*/* in 'application/json' or better just use the constant: CONTENTTYPE_APPLICATION_JSON (is declared in the Rest.Types unit) i use: req.AddParameter('Accept', ctAPPLICATION_JSON, pkHTTPHEADER, [TRESTRequestParameterOption.poDoNotEncode]);
  21. mvanrijnen

    Delphi 12 is available

    could be that we had the same problem, therefore we only use the pure/clear $(Auto)
  22. mvanrijnen

    Delphi 12 is available

    Just set it to auto in de Project options for the package: Lib suffix: $(Auto)
  23. mvanrijnen

    Delphi 12 is available

    Yes, they should turn it around, first release the CE as a preview,, get the community to work for you, they will if you provide them a free IDE. Go more to a system as MS does, you need to have a payed license if you have $xxx in annual revenue.......
×