?? Array of Pen

  • Thread starter Thread starter Jakub Otahal
  • Start date Start date
J

Jakub Otahal

Hi there,
is possible to make an array of the pen?
this doesnot work
thanks jakub
public Pen[] BarvyKanalu;

BarvyKanalu=new Pen()[32];
 
thanks, surely it works
i am stupid ............ :-)

thanks jakub

Mikael said:
Hi,

Jakub Otahal said:
Hi there,
is possible to make an array of the pen?
this doesnot work
thanks jakub
public Pen[] BarvyKanalu;

BarvyKanalu=new Pen()[32];
Change this to: Barvykanalu = new Pen[32];
/Mikael
 
Back
Top