1

I want to make it so that the user with himself changes the properties of the TDBGrid columns at columns editor in run time and then save columns properties (font name, font size, column width, etc). I need show TDBGrid columns editor at run time.

Aleks
  • 35
  • 2
  • there are third-party controls that can do lot of what you ask. Sure they cost some money but can you get it all programmed and tested for less ? – GuidoG Oct 25 '18 at 07:22
  • Third party controls usually called some variant of inspector control can mimic what is the the IDE and show properties of an object. – Brian Oct 25 '18 at 12:04

1 Answers1

2

This is not possible, because that editor is part of a design-time only package that is not redistributable. If you want to do this, you'll need to either find a third-party replacement (which you can't ask about here) or write your own.

Ken White
  • 123,280
  • 14
  • 225
  • 444