Message-ID: From: Shawn Hargreaves To: djgpp AT delorie DOT com Subject: Re: (Allegro) Listbox Question 2 Date: Tue, 4 Jan 2000 14:47:47 -0000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Reply-To: djgpp AT delorie DOT com bcc14 AT ufu DOT br writes: > Someone (I don't remember who) told-me to change the d1, but it > did't work... The d1 field is the way to do this, so if that doesn't work, you must be doing something wrong. Maybe you could post some (small) example code to show your problem? > I put a variable in place of d1 (say position_selector), and i > changed the value of it If you mean that you assigned dialog[objectnumber].d1 = position_selector, that makes a copy of the value, so later changing the value of position_selector won't have any effect on dialog[objectnumber].d1. You should alter the dialog field directly instead. Shawn Hargreaves.