You are not logged in.
I am using Delphi 7, Windows 8.1, and I need to show the greater than or equal to sign in a caption (TLabel).
I can't type this sign, and the IDE don't accept using copy and past. I don't know what to do.
Offline
You need an Unicode label for that.
Under Delphi 7, the TLabel is not able to do that, since >= is not part of the default code page.
You need an Unicode TLabel component.
See e.g. https://github.com/rofl0r/TntUnicode
or http://www.yunqa.de/delphi/doku.php/pro … rols/index
Offline