use of regex removed.

for (local i=1;i<52;i++)
  win.debug("iteration:", i)
;  local ov
;  if (vec.exists(ov))
;    ov.destroy
  local ov=vec.create(10,1)
  if (vec.exists(ov)==1) do
    win.debug("ov vector handle created")
  else
    win.debug("ERROR!! NO VECTOR CREATED!")
  endif
endfor
quit


Above works if the three commented lines are uncommented. Otherwise it
fails to create a vector on the 51st iteration.

Reply via email to