is this a bug??
- Posted by George Walters <gwalters at sc.rr.com> Aug 17, 2001
- 502 views
The beginnings of a program change had the following coded mistake but there was no warning, or error..here's the code snippets, can you see the mistake? It took me quite a while. procedure pickList1() openWindow(pickWindow[1],Normal) end procedure procedure pickLIst2() openWindow(pickWindow[2],Normal) end procedure procedure pickList3() openWindow(pickWindow[3],Normal) end procedure procedure pickList4() openWindow(pickWindow[4],Normal) onClick[pkButton[1]] = routine_id("pickList1") onClick[pkButton[2]] = routine_id("pickList2") onClick[pkButton[3]] = routine_id("pickList3") onClick[pkButton[4]] = routine_id("pickList4") ...george