vcl

C++ Builder - Problem with TShape component

Hi, sorry for my bad english :D I have this piece of code: TShape* T[256]; /* Other code ... */ for (int i = 255; i > 0; i--) { T[i]->Brush->Color = T[i - 1]->Brush->Color; T[i]->Pen->Color = T[i - 1]->Pen->Color; }; The cycle is executed by a TTimer each 100 milliseconds and the Color of the first TShape change each 100...

vcl.net to delphi prism

i have some vcl.net apps(delphi 2006 , .net 1.1 ) and i like to port them to delphi.net 2007 . but i like to port it to delphi prism as it has mono support so i can port it on liux and support to latest .net framework(but i know mono supports full .net 1.1),as prism is completely new and vcl is deprecated how to upgrade my app to prism. ...