Rob Truby
Members-
Content Count
11 -
Joined
-
Last visited
Community Reputation
4 Neutral-
How to enter unicode symbols into the Delphi IDE
Rob Truby replied to Dave Novo's topic in Delphi IDE and APIs
Microsoft PowerToys has a Quick Accent feature that also includes Greek symbols etc. You may find it useful. -
I've had issues in the past (exception on exiting); I tracked it down to auto loading the desktop when starting/auto saving the desktop on exiting.
-
Refactor menu grayed out for Rename...
Rob Truby replied to Mr. Daniel's topic in Delphi IDE and APIs
Somewhat related, but for a different refactoring. Using the inline var definition breaks the extract method refactoring. procedure Test; var Value: Integer; begin Value := 0; for var i := 0 to 10 do Inc(Value); end; For the above you can't extract Value := 0; as a method. If i is defined in the var section you can. procedure Test; var i, Value: Integer; begin Value := 0; for i := 0 to 10 do Inc(Value); end; I have submitted a report for this RSP-33176 -
How to set version number for all the projects in a project group
Rob Truby replied to Soji's topic in Delphi IDE and APIs
Thanks Uwe!- 11 replies
-
- build version
- configuration manager
-
(and 3 more)
Tagged with:
-
How to set version number for all the projects in a project group
Rob Truby replied to Soji's topic in Delphi IDE and APIs
Depending on your Delphi version you can use DDevExtensions. Unfortunately it's not available for 10.4.- 11 replies
-
- build version
- configuration manager
-
(and 3 more)
Tagged with:
-
"Disconnected Session" in Delphi 10.3.3 Rio
Rob Truby replied to A.M. Hoornweg's topic in Delphi IDE and APIs
I also sometimes encounter this issue. Deleting my debug watches seems to help. -
Restore to maximized: strip to the right missing.
Rob Truby replied to stijnsanders's topic in Delphi IDE and APIs
Has this been logged Emb Quality Portal? -
Restore to maximized: strip to the right missing.
Rob Truby replied to stijnsanders's topic in Delphi IDE and APIs
I'm also experiencing this. 4K monitor. -
Thank you so much for all your efforts; they are appreciated. I wanted to report a bug that I found; the Use Units dialog theming is not working correctly.
-
Managing Version Information Across Builds
Rob Truby replied to Nathan Wild's topic in Delphi IDE and APIs
I had the same issue. I'm using DDevExtensions which adds a menu Item Project > Set version info...; it allows you to apply the same version information to all configurations. -
Ever wondered why Shift+Ctrl+Alt+P (Sync Prototypes) sometimes stops working?
Rob Truby replied to Attila Kovacs's topic in Delphi IDE and APIs
I have similar behavior with Shift Ctrl T (add to-do item) if the project is set to auto load (autosave Project Desktop) and CN Pack (and some other add-ins) is installed. The to-do dialog is displayed but the to do item is not added to the editor unless I first right click to display the context menu. I'm not sure it's in any way related.