-
Content Count
147 -
Joined
-
Last visited
-
Days Won
4
Everything posted by haentschman
-
Code completion not supplying variable names
haentschman replied to Tom F's topic in Delphi IDE and APIs
Hi... ...bevore LSP yes. With SLP (D11) not so good. Sometimes Ok, sometimes fail...π PS: i am a fan of this code completion π ...but so not. π -
Hi... ...always try/finally! In case of error IdHTTP.free is not executed because skipped to the end Better: IdHTTP := TIdHTTP.Create(nil); try try S := IdHTTP.Get(Link); result := S; except ShowMessage('Could not get VERSION information'); end; finally IdHTTP.Free; end;
-
TidHTTP [SSL], SSL errors is production, not in developement
haentschman replied to mvanrijnen's topic in Network, Cloud and Web
i had problems with this...Windows Defenderο»Ώ is imho good and enough... ...but now back to the topic. -
TidHTTP [SSL], SSL errors is production, not in developement
haentschman replied to mvanrijnen's topic in Network, Cloud and Web
...why? π€’ (only my opinion) -
TidHTTP [SSL], SSL errors is production, not in developement
haentschman replied to mvanrijnen's topic in Network, Cloud and Web
Hi... ...location of the dll? -
MessageDlg, mtConfirmation Wrong After Delphi 10.4
haentschman replied to stacker_liew's topic in VCL
Hi...π How about using a own TForm as a MessageDlg? ...own design, formatted texts (TStringlist etc.), own icons? π -
Hi... NOT with WITH: with TFDQuery.Create(self) do
-
Hi... ...+1
-
What is good replacement for FastReports?
haentschman replied to GreatDayDan's topic in General Help
...nothing. π Why you want to change? -
Hi...π ...not query?
-
Hi...π ...always! Per table or better per database. π Per database = the ID is complete unique. id varchar(10) not null primary key, ... never string! ID int not null primary key,
-
Hi...welcome here. First: ...why ACCESS and ADO? π€’ ...π For the future: can you change the database? π const ISQL = 'INSERT INTO JobCard (ID ,OrderNo ,JobName) VALUES ( :ID :OrderNo, :JobName)'; ...better than the ADD orgy. It is even better to store the SQL outside the "form" or "datamodule" as SQL file. π ...i know. No problem. Learning by doing... π
-
wuppdi Welcome Page for Delphi 11 Alexandria?
haentschman replied to PeterPanettone's topic in Delphi IDE and APIs
Two month...What is the status? Which MVP? Imho 10% uses high-dpi. ...make a version without high-dpi. All waiting! Please... PS: why don't you publish it on github or something...? -
Hi...π ...which database?
-
π Remember: sometimes it is required to load the complete project, including DPR, DFM...then the ZIP format is your choice. Background: if the external server is closed, the thread here is incomplete.
-
Please at the next Thread: Attach files HERE...not at a external server ZIP, PAS, PNG ... thats all what you want.
-
https://www.sqlmanager.net/products/ibfb/datapump
-
Hi...π once...https://dbeaver.io/ What tool do you have with Interbase?
-
Hi... I hope this SQL is only for you in the development? For editing SQL by users...have you heard of SQL Injection? https://en.wikipedia.org/wiki/SQL_injection
-
Hi... try aDatabase.Starttransaction; ... aDatabase.Commit except on edatabaseerror do begin aDatabase.Rollback; end; end; Please use the "Code Tags" </>
-
Hi... via SQL or code?
-
Is it possible to see Git current working branch in IDE?
haentschman replied to Mike Torrettinni's topic in Delphi IDE and APIs
Everyone says no...but alternatives can solve the problem. -
Is it possible to see Git current working branch in IDE?
haentschman replied to Mike Torrettinni's topic in Delphi IDE and APIs
Hi... Is it possible to use TortoiseGit instead of SoureTree? Since TortoiseGIT looks at the local repository, it can mark the current path. -
FireDac Firebird and scroll to bottom or press End on DBGrid
haentschman replied to adyble's topic in Databases
Hi... ...why? Why do you want to possibly fall into the license trap? https://searchitchannel.techtarget.com/feature/Using-MySQL-licensing-Open-source-license-vs-commercial-license https://www.mysql.com/de/products/ or MyDAC / UniDAC without loading libmysql.dll (the dll is the problem) info in german: https://entwickler-ecke.de/topic_libmysqldll+lizenz_68186,0.html totally free databases: Firebird, PostgreSQL ... -
Gladly...but the most important thing is not to resolve the variable in debugging mode. FieldByName(Column).Value ...at the breakpoint...the debugger says: Value = ???