-
Content Count
2907 -
Joined
-
Last visited
-
Days Won
169
Posts posted by Uwe Raabe
-
-
Unless you already found it: The word documentation in my comment is a link: https://docwiki.embarcadero.com/InterBase/2020/en/IBConsole_Interface
-
In that case I am unable to help you.
-
Why don't you use it for the documentation? Do you expect me to copy paste it here?
-
-
9 minutes ago, Miguel Jr said:So what replaces Database Desktop for creating tables and interacting with Interbase?
As I already mentioned: IBConsole
-
11 minutes ago, Miguel Jr said:Or is there?
No, there isn't. It is no longer maintained and one of the reasons for its absence is what you are experiencing.
For InterBase you can use IBConsole.
-
Although there is one issue mentioned in this area (RSS-1044: Debug Delphi 12 IDE for Components design time), that issue lacks public access, so we don't know about the details.
A short test here still exposes the problem, but there might be other things involved having influence on it. I would like to hear from others if they could get it working with 12.2.
-
1 hour ago, dummzeuch said:I'm pretty sure installing different versions of CE on the same PC will work.
Yes, that also matches my own understanding. Different main versions are independent.
-
1
-
-
I was more targeting a system on top of the current JIRA Service Desk, not replacing their internal JIRA. After all it is the web interface that sucks, not the fact they use a cloud based JIRA in the first place.
-
2
-
-
4 hours ago, Darian Miller said:But it's too big of a project to add to their overly full plate.
Perhaps an MVP project could do it?
-
1
-
-
Probably depends on the number of source lines. If they exceed 1000 there must be more space to display the line numbers.
-
15 minutes ago, pyscripter said:if you need to support versions before IF was introduced
IIRC, that has been Delphi 6 or 7. One can even test for that with {$IF CONDITIONALEXPRESSIONS}.
-
OK, my setup is Windows (no VM) and IDE Light Theme and that doesn't show any blinking.
-
9 minutes ago, Clément said:the code editor blinks for every key I press.
Can you show a small video of that? Based on your description I cannot reproduce that behavior, so I might got it wrong.
-
7 minutes ago, FreeDelphiPascal said:No wonder their OS is going down
If a market share value goes down, it does not imply that the absolute numbers are going down. If there were only 1 million Windows systems in the world, their market share would be 100%. Now when 4 million iPhones are sold, the Windows market share goes down to 20%, but there are still 1 million Windows systems.
-
1
-
-
Ord returns the ordinal value of the character, not its position in the alphabet.
-
3 hours ago, Vincent Parrett said:It's entirely possible to create large applications without using a single Enterprise/Archtect feature.
The people responsible for the feature matrix obviously have another look at things as we developers.
-
1
-
-
Edit1.Text is a string, which internally is a pointer. So Ord returns the value of the pointer.
Better identify the char you are interested in: Ord(Edit1.Text[1]);
-
1 hour ago, pyscripter said:Did you know that?
Yep! I first made use of that almost 10 years ago in a class holding translation strings. Before that the strings were indexed by an Integer, but later we extended that to string indices.
property Items[Index: Integer]: string read GetItems; default; property Items[const Index: string]: string read GetItems; default;
The interesting part was that both are marked as default properties, which allowed us to simply write something like this:
Label1.Caption := Translations[42]; Label2.Caption := Translations['Error'];
The most benefit came from the fact that we could keep the Integer based translations and simply add the string based ones - all using the same Translations instance.
-
2
-
-
Here with D12.2 that time is less than I need to move my hand from the mouse back to my keyboard.
Scenario:
- create empty VCL application
- save project
- run with debugger (i.e. Start with F9)
- close running application with clicking on close button on form title
- type something in the current editor view
-
RSS-683 is indeed not public - probably because the poster missed to share it correctly.
The other one is: https://quality.embarcadero.com/browse/RSP-42257
-
AFAIK, there is no legal syntax to avoid this warning. The only way I know of is locally suppressing it:
... {$WARN OVERLOADING_ARRAY_PROPERTY OFF} property Items[Index : TColumnIndex] : TVirtualTreeColumn read GetItem write SetItem; default; ... end; {$WARN OVERLOADING_ARRAY_PROPERTY DEFAULT}
-
2
-
-
12 minutes ago, Lajos Juhász said:I cannot find those tickets on the QP portal.
Indeed, the links won't work. You have to manually search for the ID in the corresponding portal.
-
File Open Dialog Preview
in VCL
Posted
TFileOpenDialog supports the same previews as Windows Explorer.