

Frickler
Members-
Content Count
41 -
Joined
-
Last visited
Community Reputation
14 GoodRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
xaml island Ask if Embarcadero will integrate UWP & WinUI in comming Version of Radstudio
Frickler replied to bravesofts's topic in Windows API
Joel Spolsky has written about this some 23 years ago in his famous "Fire and Motion" article. In short, Microsoft "invents" new technology, and while devs try to adapt to that, Microsoft just drops that for a "newer, better" technology. And so on, and so on. -
The "real" server can also be easily installed: just unpack the zip file and call the included batch file which installs the windows service. You can slim down that zip file in advance by removing docs and examples folders, edit the config files (firebird.conf, databases.conf, security5.fdb) and maybe even create your own batch files to name your instance. You can even have multiple firebird servers on the same machine (e.g. for your app and a foreign app) by choosing another port number (in firebird.conf).
-
[BUG] Mouse wheel no longer scrolls when highlighting
Frickler replied to Willicious's topic in Delphi IDE and APIs
"Wiggle it" - Bob Ross -
[BUG] Mouse wheel no longer scrolls when highlighting
Frickler replied to Willicious's topic in Delphi IDE and APIs
Not on Windows 10 and 11. It scrolls, but doesn't expand the selection. But PSPad (written in Delphi IMHO) does. -
The Delphi Parser - FIBPlus, BDE, legacy Migration
Frickler replied to Jasonjac2's topic in Delphi Third-Party
As you always need to acquire the newest Delphi version in order to get bugs fixed on FireDAC, why not try a third party DAC? DevArt IBDAC can convert from BDE, IBX and FibPlus. Never needed to convert, so I cannot say how well this works though. But you can download a trial version and try it for yourself.- 18 replies
-
There is a commercial add on to Indy called YuOpenSSL, that replaces OpenSSL DLLs with Delphi DCUs.
-
Backup the FirebirdSQL database from ext server locally
Frickler replied to msd's topic in Databases
IBX2 for Lazarus can do that. DevArt IBDAC can't. -
"Death to WITH" in your Delphi Code
Frickler replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
Syntactic sugar. It does nothing more than that begin-end, but makes it clear (to me) that "B" is defined only for the purpose of abbreviating that expression. -
"Death to WITH" in your Delphi Code
Frickler replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
Do you really need A? As you can have for var i:=1 to 10 do ... why not with var B := dmStoreInventoryData.tblUpdateItemForStore do begin B.AppendRecord([1,'foo','bar',3.1415]); end; and "B" would only be visible inside the "with" block, not outside of it. Currently you have to "fake" it by begin var B := dmStoreInventoryData.tblUpdateItemForStore B.Edit; B.FieldByName('Qty').AsInteger := NewQty; B.Post; end; -
WebUI framework: Technical preview. Part 1.
Frickler replied to Alexander Sviridenkov's topic in I made this
Both compile Pascal to javascript using pas2js. This seems to be more like UniGUI, Kitto or even IntraWeb, where your program itself is a webserver. -
Avoid parameter evaluation
Frickler replied to Maxime Janvier's topic in RTL and Delphi Object Pascal
You mean Simula. Modula had no classes. Btw. Anonymous functions have been a feature of programming languages since Lisp in 1958. That was really a long time ago. -
Incorrect SQLDA version interbase express firebird 3
Frickler replied to thomedy's topic in Databases
Maybe this is why it's named "Interbase Express" and not "Firebird Express"... Do you do low level access to Firebird? There is a low level Firebird interface API for Delphi and Lazarus from MWA Software (https://www.mwasoftware.co.uk/fb-pascal-api). It provides comprehensive documentation including a guide to write UDRs with pascal.- 4 replies
-
- sqlda
- interbase express
-
(and 2 more)
Tagged with:
-
DevArt UniDAC supports MongoDB (dunno how well, never tested it). mORMot supports it too (https://github.com/synopse/mORMot2).
-
Until 2005 we used to use QuickReport Pro with QuickReport Designer, which was very buggy at that time. So we tried ReportBuilder Pro. It was very stable, had great documentation and lots of useful features. But it was so slow. Printing a report took more than ten times as long as with QR. Then we tried FastReport - and never looked back.
-
Hmm... 50 columns? So why not concatenate all of them and get the combined length, subtract this from 50 * 5 (length of "False") and you get the count of "true".