Delphi 77 - Printable Version
-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Delphi 77 (/showthread.php?tid=36426)
Delphi 77 by brian on 01-04-2005 at 06:52 PM
Hey guys!
I've recently started learning Delphi, so, I am getting pretty much good in it, I've made a program to parse latest news from an RSS, and insert it into a TStringGrid. I have everything working, I can download it, I can parse it, but my only problem is, I can't insert it into a TStringGrid, I really have no idea how, and neither I can't find documentation on Internet, so please, If you know some Delphi, I would love to hear your help.
Thanks,
Brian
RE: Delphi 77 by Geniuzzz on 01-07-2005 at 10:17 AM
try this:
stringgrid1.Cells[acol, arow] := 'test';
have fun...
|