

mvanrijnen
Members-
Content Count
492 -
Joined
-
Last visited
-
Days Won
1
Everything posted by mvanrijnen
-
The creator of Delphi WebSockets Binance API (esegece.com) is also on this forum, find him or buy his product. (i think i gonna buy it for trading on binance)
-
I will be less active for a few weeks
mvanrijnen replied to Lars Fosdal's topic in Community Management
Being dutch living in the netherlands, i estimate a vaccin around Christmas 🙂 -
Starting soon, but have todo a total rewrite, with the knowledge of the client at work in mind. Ideas are already there, there will be an swaggger (json) import, a standard baseclient to work with, and a possibility to generate against your own baseclients (self made or emb's). Will be working with some kind of template then. Already made a github repo for this, we can fill ideas overthere or here for starters first till the project is at a minimum usable level. I found a simular C# project which does this, maybe i fork that so i only have to create the delphi generator.
-
Running .Net Standard Assembly
mvanrijnen replied to rcaspers's topic in RTL and Delphi Object Pascal
I find it always much more easier to just write the needed code in .Net, and expose the functionallity through a COM DLL to delphi;. -
i have a minmax and maxmin function 🙂
-
Several F2084 Internal Error on Delphi 10.4.2
mvanrijnen replied to Davide Angeli's topic in Delphi IDE and APIs
maybe EMB has to do some more interaction with their customers. I don't find the "blogs" they promote not very useful as communication about problems with Delphi, it's more like commercial shit. (i unsubscribed the news from EMB because of the shitload of promotional material they send, but now i mis product updates 🙂 ) -
Several F2084 Internal Error on Delphi 10.4.2
mvanrijnen replied to Davide Angeli's topic in Delphi IDE and APIs
Maybe EMB has to visit some clients, and see what the problems are. They then can send an engineer who (maybe) can figure out why some clients keep getting problems. The current system for the big problems there are is just not working at the moment (my feeling), too many big bugs keeps coming back, or are never resolved,. -
Somebody knows how to get the clients ip address from within a radserver resource method?
-
And if we go to the documentation: Vcl.Forms.TApplication Methods - RAD Studio API Documentation (embarcadero.com) there is no link to: Vcl.Forms.TApplication.UpdateMetricSettings - RAD Studio API Documentation (embarcadero.com) @Embarcadero, update documentation please !, or do we have to guess the methods? 😉
-
here is some (old) explanation (don't know it's current though): winforms - Using .NET desktop application with DevExpress over Remote Desktop - Stack Overflow (someone known to all of us here, has responded there also back then : ) ).
-
Delphi service in a domain controlled environment
mvanrijnen replied to thomh's topic in Network, Cloud and Web
-
Delphi service in a domain controlled environment
mvanrijnen replied to thomh's topic in Network, Cloud and Web
I usually use a seperate .exe located next to the service dll. The exutable stops the serive, does the updates, and restars the service. The executable is ofcourse called by the service. Another options is to create a seperate maintance service. -
I still have the feeling that the CodeinSight/ErrorInsight has problems when you use $IFDEF's and/or {$I myfile.inc} , can not prove it, just a feeling i have when i see when there are problems with the *Insight parts.
-
Because my IDE does not use OIL, and i want to keep the things it's doing to an absolute minimum. What it does not do, it can not do wrong 🙂
-
Then it still does the loading for ErrorInsight when you open the project.
-
Does anyone know how to disable ErrorInsight in 10.4.2 With a large project i see the loading fiirst for CodeInsight and then for ErrorInsight. Since i don not use ErrorInsigt, it's a little bit shame, for the memory used. There is also 2x LSP process for each IDE instead of 1.
-
No sorry, did not had time to startup the project (except creating an empty github repos). I think i will be starting this month with it.
-
10.4.2 Released today - available to download
mvanrijnen replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
This is a little odd in the installation notes: You must install the Adobe Flash Player ...... because: Adobe Flash Player End of Life Since Adobe no longer supports Flash Player after December 31, 2020 and blocked Flash content from running in Flash Player beginning January 12, 2021, Adobe strongly recommends all users immediately uninstall Flash Player to help protect their systems. -
10.4.2 Released today - available to download
mvanrijnen replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
Why not a simple update process instead of every time a full uninstall and install ? -
Blogged : Advice for Delphi library authors
mvanrijnen replied to Vincent Parrett's topic in Tips / Blogs / Tutorials / Videos
Where is this documented, i search a couple of times where these things are documented but could not find anything at embarcadero. -
Blogged : Advice for Delphi library authors
mvanrijnen replied to Vincent Parrett's topic in Tips / Blogs / Tutorials / Videos
$(Auto) exists? where can i find things like this? -
ANN: Sempare Template Engine for Delphi
mvanrijnen replied to darnocian's topic in Delphi Third-Party
Will do from now on, thnx for the support though 👍 -
Delphi Event-based and Asynchronous Programming eBook complete version released
mvanrijnen replied to Dalija Prasnikar's topic in Tips / Blogs / Tutorials / Videos
Ordered epub, will order paper too. Talked last weeks with collegue about how we learned programming (only) from books in the paste, so we have to support the writers more i think, get rid of the "google /stackoverflow search" programming trend 🙂. Hell, i'v done Cobol programming exams on paper (no computer for the exams 🙂 ). Maybe something for a subforum, "Delphi Books" where people can give hints for good books? -
First question, do you have source code from the program and or bpl files ? Second, are you able to compile these?
-
ANN: Sempare Template Engine for Delphi
mvanrijnen replied to darnocian's topic in Delphi Third-Party
New problem 🙂 Template: Longitude1: AdrLongitude Longitude2: <%AdrLongitude%> Longitude3: <%fmt('%7.4f', AdrLongitude)%> Longitude4: <%fmt('%7,4f', AdrLongitude)%> Output: Longitude1: AdrLongitude Longitude2: 5,92406892776489 Longitude3: -?,?<E3523 Longitude4: Question: How to get fmt to work properly? (using Dutch Windows, EU-VS-Keyboard, Dutch Settings, som the decimalsep is a comma on this system) see also <%x := 5%> X=<%x%> <%y := 5.1234%> Y=<%y%> the part with y can not be evaluated/parsed, wether i use a comma (,) or a dot (.)