Re: Screen not updating

2016-11-30 Thread Bob Sneidar
I have commented on the bug for all it's worth. Bob S On Nov 30, 2016, at 14:29 , Ralph DiMola > wrote: If this is in the IDE then it goes back to 6.6.2 rc4. http://quality.livecode.com/show_bug.cgi?id=12508 Drives me crazy. Ralph

RE: Screen not updating

2016-11-30 Thread Ralph DiMola
] On Behalf Of Bob Sneidar Sent: Wednesday, November 30, 2016 4:06 PM To: How to use LiveCode Subject: Screen not updating Hi all. Not sure if this is expected behavior. While running a script, my monitor is not updating with anything that is happening. I am running a script that incrementally

Re: Screen not updating

2016-11-30 Thread Bob Sneidar
Perhaps, but that is not the issue. If you set the dgHilitedLine or dghilitedIndex, the datagrid will scroll if necessary to make the line visible. The form updates because I have a selectionChanged handler in the data grid which does everything necessary, and I dispatch that to the data grid

Re: Screen not updating

2016-11-30 Thread dunbarx
Stephen makes a point. dispatch "ResetList" to group "yourDataGrid" Craig -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Screen-not-updating-tp4710763p4710766.html Sent from the Revolution - User mailing list a

Re: Screen not updating

2016-11-30 Thread Stephen Barncard
I am pretty sure when one makes a change to a datagrid from 'outside', it may need to be refreshed. There's a command. On Wed, Nov 30, 2016 at 1:06 PM, Bob Sneidar wrote: > Hi all. Not sure if this is expected behavior. While running a script, my > monitor is not

Re: Screen not updating

2016-11-30 Thread dunbarx
when it should. Craig Newman -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Screen-not-updating-tp4710763p4710764.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list us

Screen not updating

2016-11-30 Thread Bob Sneidar
Hi all. Not sure if this is expected behavior. While running a script, my monitor is not updating with anything that is happening. I am running a script that incrementally selects a record in a data grid, which will then update the form, then I run some other things that get data from the form

Re: Screen not updating with unlock screen

2012-09-14 Thread Dr. Hawkins
On Tue, Sep 11, 2012 at 6:04 AM, Richard Gaskin ambassa...@fourthworld.com wrote: members of the Dev Program can read Mark Waddingham's thoughtful comments on this here, noting that going forward the update behavior will be made more consistent across platforms:

Re: Screen not updating with unlock screen

2012-09-11 Thread Alex Tweedly
The short answer is that the right way to 'fix' this is to use wait 0 secs with messages (or wait 0 millisecs with messages - same thing :-) Now you said that doing that produced some strange behaviour - can you describe it in more detail, and we'll see if we can figure that out (and / or

Re: Screen not updating with unlock screen

2012-09-11 Thread Richard Gaskin
Gabriel Johnson wrote: I am having an issue getting output to display during a loop. I've tried lock/unlock screen but unlock screen does not seem to cause the screen to update. The only thing that works is wait 0 seconds but this causes bizarre behavior in some cases (mouseDown/mouseUp not

Re: Screen not updating with unlock screen

2012-09-11 Thread Peter M. Brigham
The other consideration is that the loop is likely going so fast that even with the wait 0 line the screen update may be too slow to keep up and the only thing you'll get will be the final number. -- Peter Peter M. Brigham pmb...@gmail.com http://home.comcast.net/~pmbrig On Sep 11, 2012, at

Re: Screen not updating with unlock screen

2012-09-11 Thread Peter M. Brigham
On Sep 11, 2012, at 9:04 AM, Peter M. Brigham wrote: The other consideration is that the loop is likely going so fast that even with the wait 0 line the screen update may be too slow to keep up and the only thing you'll get will be the final number. Belay that. I just tested it, and wait 0

Screen not updating with unlock screen

2012-09-10 Thread Gabriel Johnson
Hey All- Sorry if this is a duplicate, my first version of this email from a few days ago has not been approved yet (I'm assuming I can't attach videos). I am having an issue getting output to display during a loop. I've tried lock/unlock screen but unlock screen does not seem to cause the