How to Increase the size of a cell text in string grid of delphi? -


i using string grid has 5 column, want in crease text font size of 3 rd column how that?

 while not sqlquery.eof   begin      stringgrid1.cells[0,rowcount] := sqlquery.fieldbyname('elementname').asstring ;     stringgrid1.cells[1,rowcount] := sqlquery.fieldbyname('elementtype').asstring ;     stringgrid1.cells[2,rowcount] := sqlquery.fieldbyname('elementstring').asstring ;     stringgrid1.cells[3,rowcount] := sqlquery.fieldbyname('blockname').asstring ;     stringgrid1.cells[4,rowcount] := sqlquery.fieldbyname('attributes').asstring;      rowcount := rowcount + 1;     stringgrid1.rowcount := stringgrid1.rowcount + 1;     sqlquery.next;   end; 

this quite old example, suspect nothing has changed http://www.delphipages.com/forum/showthread.php?t=142691


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -