0

Using Delphi 11.1 FireMonkey Hello I would like to change the keyboardtype of a stringgrid column to mumeric (for Android). Could someone please help me with that? Thanks! Ad

user741461
  • 49
  • 7

1 Answers1

0

IDE or Runtime ?

  • IDE use another column type

  • Runtime if you create the column then create it as a TIntegerColumn, TcurrencyColumn or TFloatColumn (depending of "mumeric" ;-) means for you) and not a simple TColumn (default is TStringColumn).

By the way, if somebody knows the way to change a TColumn to a specific type at runtime I should appreciate the tip

SergeGirard
  • 261
  • 1
  • 2
  • 8