Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
User Array fill
#7
Code:
Copy      Help
ARRAY(POINT) a.create(8 8) ;;create 8x8 array

int i j
for i 0 8
,for j 0 8
,,mes- "Click %c%i" "" "OC" 'A'+i j+1 ;;message box
,,wait 0 ML ;;wait for mouse click
,,xm a[i j] ;;get the coordinates into the array

;display what is in the array
for i 0 8
,for j 0 8
,,out "%c%i: x=%i y=%i" 'A'+i j+1 a[i j].x a[i j].y


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)