

mvanrijnen
Members-
Content Count
489 -
Joined
-
Last visited
-
Days Won
1
Everything posted by mvanrijnen
-
2022 StackOverflow dev survey - salary results
mvanrijnen replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
i'v had one year Cobol (like 20years ago), wrote my own mousehandling and menusystem for it (was not available in the standard cobol we had at class then). what i remember, programming Cobol is like writing a book, COMPUTE blalblblbl GIVING etc etc, sections, columns pff. (we did the programming exams with pen and paper then, imagine) -
2022 StackOverflow dev survey - salary results
mvanrijnen replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
so, i can earn around 15000 more when i dust this thing of and start reading it again 🙂 : (take it to work tomorrow, put it on my desk;) ). -
[wrong topic]
-
fgxnative FGX Native - crossplatform mobile native development
mvanrijnen replied to Yaroslav Brovin's topic in Delphi Third-Party
How much can you code for $549, and get the bugs fixed the year on for $249 ? First impression, is it looks good, and if development is smoother than with FMX, it might be something for us. Were planning to create our first app(s), IOS (iPhone & Tablets). We first have to setup the dev enviornments for this, but i will be glad to take a look at this. Trial goes to a page only in russian language? (ah, click on the thread there :! ) -
Does anyone know how to get the filesystem for usb mass storage?
mvanrijnen replied to wilsonning's topic in FMX
ah, did not see the screenshot 🙂 -
Does anyone know how to get the filesystem for usb mass storage?
mvanrijnen replied to wilsonning's topic in FMX
take a look at: Sinisa-Vuk_Mtp10 - Pastebin.com -
You sure you rebuild all the runtime packages, and put them in the right place? Also maybe there are packages in an other folder where they are found first?
-
Several F2084 Internal Error on Delphi 10.4.2
mvanrijnen replied to Davide Angeli's topic in Delphi IDE and APIs
Problem is that many of these type of errors, expose only in larger projects. -
Systemic failing of Embarcadero development and support or am I just paranoid ?
mvanrijnen replied to CyberPeter's topic in General Help
Someone at EMB or IDERA should communicatie then why problems are not solved as expected. But communication besides sales spam is the biggest problem for EMB. (this is again a plus point for moving to another dev platform, the minus points are not holding it for many years i think) -
They have the same with the Delphi IDE 🙂
-
Am I using threads correctly?
mvanrijnen replied to AlexQc's topic in Algorithms, Data Structures and Class Design
Why not override DoTerminate? (leave the events for users of the class (owners/creators) TMyClass = class(TThread) private ......... protected procedure DoTerminate; override; .............. procedure TMyClass.DoTerminate; begin {TODO -oOwner -cGeneral : My Code } inherited; end; -
Showing a warning form to some users
mvanrijnen replied to Henry Olive's topic in RTL and Delphi Object Pascal
Or in case of Interbase database, you could fix something with changeviews also. Link1: ChangeViews - InterBase Link2: InterBase (embarcadero.com) (currently not working) -
Queries are shortened from the real query's. (the problem is in the underlined lines of code) SELECT DISTINCT slm.sma2_log_merged_idno FROM sma2_log_merged slm INNER JOIN sma2_message sm ON (sm.sma2_message_idno = slm.sma2_message_idno) AND ((sm.ignore=FALSE) OR (slm.is_alarm=TRUE)) INNER JOIN sma2_plant sp ON (sp.sma2_plant_idno = slm.sma2_plant_idno) AND ((sp.ignore_untill IS NULL) OR (sp.ignore_untill<CURRENT_DATE)) --AND (sp.deleted_for_me=FALSE) AND (NOT (sp.deleted_for_me=TRUE)) WHERE ((slm.forget_until IS NULL) OR (slm.forget_until<CURRENT_DATE)) AND (slm.deleted=FALSE) AND (slm.afgehandeld=FALSE) AND (((slm.datetime_end>= '2021-12-03') AND (slm.leeftijd_in_dagen>=2)) OR (slm.is_alarm=TRUE)) Prepared in: 0.825 sec Processes in: 0.0190 sec SELECT DISTINCT slm.sma2_log_merged_idno FROM sma2_log_merged slm INNER JOIN sma2_message sm ON (sm.sma2_message_idno = slm.sma2_message_idno) AND ((sm.ignore=FALSE) OR (slm.is_alarm=TRUE)) INNER JOIN sma2_plant sp ON (sp.sma2_plant_idno = slm.sma2_plant_idno) AND ((sp.ignore_untill IS NULL) OR (sp.ignore_untill<CURRENT_DATE)) AND (sp.deleted_for_me=FALSE) --AND (NOT (sp.deleted_for_me=TRUE)) WHERE ((slm.forget_until IS NULL) OR (slm.forget_until<CURRENT_DATE)) AND (slm.deleted=FALSE) AND (slm.afgehandeld=FALSE) AND (((slm.datetime_end>= '2021-12-03') AND (slm.leeftijd_in_dagen>=2)) OR (slm.is_alarm=TRUE)) Prepared in: 0.823 sec Processed in: 21.851 sec ?? So here's a big differnce between "AND (sp.deleted_for_me=FALSE)" and "AND (NOT (sp.deleted_for_me=TRUE))" deleted_for_me is a not null field so always contains a TRUE or a FALSE value. (performed in Database WorkBench 4)
-
Special Offer for Documentation Insight
mvanrijnen replied to baoquan.zuo's topic in Delphi Third-Party
going a little bit offtopic, but what are the better alternatives ? -
Special Offer for Documentation Insight
mvanrijnen replied to baoquan.zuo's topic in Delphi Third-Party
yes we use it also, (my collegue somewhat more than me). -
thhx, i was tested positive last week (pcr test), no serious complaints, but have to keep the quarantaine time. few more days. @TimCruise We don't get to know which variant, only Positive/Negative for corona, the variants are determined by sampling the positive results i believe.
-
will take a little longer, tested positive with selftest for corona this morning, so in quarantaine@home now. (PCR-Test @GGD/healthcare test this afternoon)
-
Online examples of Android & iOS apps programmed by RAD Studio
mvanrijnen replied to TimCruise's topic in Cross-platform
Ok, and what would be the minimum hardware for this, Apple Mini (2014 ??) ? Or are there virtual solutions for this (legal ones) ? -
No it's not what i mean, probably i pointed to the wrong example 🙂 I'll try to make a simple example tomorrow, of what i mean, already created ticket with EMB support for it, but for now no solution. When you log a user on to the RadServer, you get an EMB-X-Token, for further use with the restcallss (a session token), you can not have multiple session tokens for one username. (go into the db of radserver, and it explains itself). If else, then we got the wrong explanation from EMB self. (i can look that up also).
-
just try the example: Tutorial: RAD Server Client Application to Manage RAD Server Users - RAD Studio (embarcadero.com) simultanously from 2 different computers.
-
have you tried to login as the same user twice ? with the same applicationid ? Of course in pure REST you would not have to logon, but everyone uses sessions, you can't get a second sessionid for a user with RADServer at the moment. So I (we) have implemented our own sessions and authorisation within appserver, skipping the provided ones. That said, it's a good start of to get started with web/micro services and the rest idea. We are no a month in production with the first application and it runs ok., in januari we launch our 2nd (inhouse) application for this. We run it on a IIS Server, for outside world we put a nginx server in between wich does the client/server certificate authentication and the routing to (possible) different in house servers. (we could do this also on IIS, but felt saver with this solution)
-
This discussion is every time a new delphi version is released it seems. And there are people with no problems at all, and there are people with mediocre problems, and there are (as am i and my collegue) people who get frustrated with every update/ugrade 🙂 Maybe EMB would do good to investegate why some (i don't know how many) people have still such big problems with Delphi, is it some specific component, but i do not see any efford from EMB to fix some problems for once and for all (LSP anyone) We did upgrade every 6months/year, but we are waiting with upgrading to D11 now, to few bugfixes for us to go over. keep noted, that this is just my opinion and i do not speak for the whole world.
-
I do know that yes, why the question, are you speaking for everyone ?
-
nah, it's not too expensive, upgrading just does not solve enough problems for existing customer, nor give it enough bugfree new feautures. The price is right for good tooling, it just does not live up to the price 🙂
-
It's a webserver with a "framework" around it to make it a little easier to develop and deploy your webservices. It's not too bad, but has some shortcomings, most pain is the fact that there is almost no documentation. What did you thought it was?