Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!
Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.
Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!
Posts with their shortened content |
|
RE: Lazarus - How to fix a Database field showing as (memo) in a DBGrid
By Hans, 3 days ago
|
|
Thank you for chiming in ... 😊
In SQLite the TEXT field can be either text or even a binary blob. I wish Lazarus Pascal would just have a property TFields that allows one to toggle it to actu... |
|
RE: Pascal - How to remove an array element
By Hans, 3 days ago
|
|
Note that with the recent FPC versions (I believe as of FPC 3.2.0) we can use the Delete function, making things super easy, no matter what kind of dynamic array you're working with.
procedure Delete(... |
|
RE: Lazarus - How to fix a Database field showing as (memo) in a DBGrid
By djpintunayak584, 4 days ago
|
|
If you're seeing (memo) in your DBGrid instead of the actual content, it's likely because the field type in your dataset is a Memo (or TEXT/CLOB depending on your DBMS), which DBGrid doesn't display f... |
|
RE: Welcome me Tweaking 4 All Community
By Hans, 6 days ago
|
|
Welcome to the forum! |
|
Welcome me Tweaking 4 All Community
By faizanrauf612, 6 days ago
|
|
I m new in this forum. |
|
RE: Lazarus - How to fix a Database field showing as (memo) in a DBGrid
By Hans, 2 weeks ago
|
|
p.s. if you use a DataModule, then you could consider using this. We will automatically assign the string conversion to any TMemoField in your TDatamodule, so it will save time to assign an OnGetText ... |
|
macOS - What XCode Commandline tools do I have installed?
By Hans, 4 weeks ago
|
|
To find where your Xcode commandline tools are installed:
xcode-select -p
This should show (if you have Xcode installed) this:
/Applications/Xcode.app/Contents/Developer
Older versions or stand-alone ... |
|
RE: Windows 10/11 - How to read S.M.A.R.T. from USB drive
By paltek, 4 weeks ago
|
|
Hey Famed Member, thanks for sharing your WMIC output, it’s super helpful. You can also use PowerShell Get-PhysicalDisk | Select FriendlyName, HealthStatus for a quick health check or install WSL and ... |