-
Content Count
243 -
Joined
-
Last visited
-
Days Won
5
Die Holländer last won the day on March 12
Die Holländer had the most liked content!
Community Reputation
83 ExcellentTechnical Information
-
Delphi-Version
Delphi 12 Athens
Recent Profile Visitors
14669 profile views
-
Also for FireDac you need at least Delphi Enterprise. (Professional only FireDac local/embedded databases)
-
There are too much components to add them in a book. There are visual, non-visual and thirth party components. Are you talking about components native delivered in Delphi? (Which version of Delphi?) You have to explain what programming problem you want to solve before you know what components you need to use.
-
Right-Click on the webpage and "Translate to .....". (or where your browser has this option)
-
No, we are in the desktop application business and Delphi is by far the best using databases, reporting and whatever you think of to do. But if you want to step in the AI business and want to automate your calendar appointments, sort your e-mail and let AI book a flight for you then yes.
-
public Constructor Create(aOwner: TComponent; aQty:Integer; aFileName:string; aQuery:String; aTitle:string);reintroduce; end; procedure TStatsGridForm.Create(aOwner:TComponent; aQty:Integer ;aFileName:string; aQuery:String; aTitle:string); begin FsQuery:=aQuery; FiQty:=aQty; FsFileName:=aFileName; FsTitle:=aTitl; Caption := FsTitle + ' - Total records..' + IntToStr(FiQty); JobTickets.SQL.Clear; JobTickets.SQL.Add(FsQuery); JobTickets.Prepare; JobTickets.Open; ... end;
-
In this situation I would pass the parameters to the onFormCreate procedure. procedure TStatsGridForm.FormCreate(Sender: TObject,..,..,aQuery); begin fQuery:=aQuery .... JobTickets.SQL.Clear; JobTickets.SQL.Add(fQuery); JobTickets.Prepare; JobTickets.Open; ... end;
-
Always take care to put things in onShow. That can be called more often than you wish, unlike onCreate.
-
Introducing Delphi++
Die Holländer replied to corneliusdavid's topic in Tips / Blogs / Tutorials / Videos
I like this one very much : All comments must be written in haiku format -
Yes, must be. Just look how much time it takes on the server a 10+GB file (movie or such) is copying from one directory to another.. Here a few GB database backup costs about 20 seconds.
-
AI Rewrite and COBOL Port Announced for Immediate Development
Die Holländer replied to dummzeuch's topic in GExperts
Instead of COBOL, I highly recommend to GExperts the IBM RPG Programming Language RPG is a high-level programming language for business applications, introduced in 1959 for the IBM 1401. It was one of my first professional programming language before using Delphi and it was a delight to program in columns. -
So, if the message is because of a Windows update does that mean Rad studio has always asked for your location without the notification of Windows beforte the update?
-
Maybe you can read the clipboard with a timer and everytime the clipboard has a new "https://www.youtube.com" string you parse, add (see Remy) and start the video.
- 11 replies
-
- delphi xe7
- youtube
-
(and 1 more)
Tagged with:
-
xaml island Ask if Embarcadero will integrate UWP & WinUI in comming Version of Radstudio
Die Holländer replied to bravesofts's topic in Windows API
Which version of Comment-AI are you using? -
No, you can start the implementation.
-
and now you want to Create Delphi Azure functions with Azure SQL database (Delphi webbroker app) Getting Started with Azure Cloud Development with Delphi But I didn't find the proper solution (configuration..)