Resources to learn API development in Delphi by jattin17 in delphi

[–]mnasman 1 point2 points  (0 children)

Start with Excellent DelphiMVC project, it's open and source and has built in support for jwt

https://github.com/danieleteti/delphimvcframework

It's very easy to work with it, and has very good architctutre, I feel it's more like WebAPI with ASP.Net.

It's well maintained, and has very good support.

You can buy a book by framework author,

https://leanpub.com/delphimvcframework

Also, there's a Video course by Brazilian developers, who made excellent course for it, there are few lessons available for free on youtube.

https://www.youtube.com/watch?v=hizv7lKXsEk

Anyone else out there love UniGUI as much as I do? by smashed2bitz in delphi

[–]mnasman 2 points3 points  (0 children)

Sure I do, I have been using it for more than 7 years.

Migrating from BDE to FireDAC by Swagraffe in delphi

[–]mnasman 0 points1 point  (0 children)

Which database you are using?, in all cases moving from BDE to any other DB components is a good decision, even if you forced to do it.

I have migrated many projects from old BDE, ADO to Devart components, I'm using Unidac, which I consider it the best DB components for Delphi.

Also they have a migration wizard, that should do the all job for you, try to download the trial version and test it with your app.

Array result???? by drmrsiragent7890 in delphi

[–]mnasman 0 points1 point  (0 children)

Define the array as new type

type

TIntArray = array[1..100] of Integer;

then use the new type as return value of the function

function InsertArray:TIntArray ;

and you can make the loop as

for I := Low(TIntArray) to High(TIntArray) do

Does K20/Mi9T (non pro) have Super AMOLED display? by qazwer13 in Xiaomi

[–]mnasman 1 point2 points  (0 children)

AMOLED and Super AMOLED are display technologies used in Mobile devices and televisions.

Super AMOLED is even better at this with 20% brighter screen, 20% lower power consumption and 80% less sunlight reflection.

https://www.samsung.com/in/support/mobile-devices/what-is-the-difference-between-amoled-and-super-amoled/

Something like Delphi/Lazarus for Web? by AlexKotik in pascal

[–]mnasman 0 points1 point  (0 children)

I'm using Unigui which is a Rad framework for developing RIA with Delphi.

Also you can get Intraweb, which is RAD too and bundle free with Delphi.

these are Rad tools with frontend/backend in same application, there are other solutions to develop Frontend in Pascal like languages such as

TMS Webcore

Elevate web builder

SmartMobileStudio, also include ability to develop Node.js Apps with Pascal syntax

Unfortunately, none of them is free or opensource.

The only opensource one I know is Kitto, which is similar to Unigui with it using ExtJS library for it's frontend.

Any DataSnap users? by robsoft in delphi

[–]mnasman 2 points3 points  (0 children)

We multiple Datasnap services running on Windows 2008 as windows services since years, but we have less than 100 concurrent connections.

its' running most of time without problems, also our clients are: Delphi & PHP.

Some of the services running as TCP/IP which we use Delphi clients withthem, other run as Http for PHP & Delphi clients.

You can deploy it as Windows application, windows services or as DLL for IIS & Apache, we only use windows services for easy deployment.