Board index » delphi » Two Dimensional arrays
j...@hotmail.com (justin)
![]() Delphi Developer |
Sun, 09 Oct 2005 10:38:00 GMT
Two Dimensional arrays
Hie I want to create a two dimensional array for creating a cd wall.
But I m unsure on how to go abou this exactly. What this array is suppose to be able to do , is allow entry of data in the array however it will only be able to store a maximum of 15 items/entries at each location (eg 15 cds in row 1 column 3) how do i go about doing this? Furthermore this will be displayed on a stringgrid. So far my codes are in a newly created processunit unit CDMRKTProcessUnit; interface const type var procedure Initialisation; function AddCd(aCDCode,CDTitle,CDManufacturer,CDDescription: string; implementation procedure Initialisation function AddCd(aCDCode,CDTitle,CDManufacturer,CDDescription: string; this is as much as i have done and i am unsure on how to go on? Could |