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
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 DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode

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 archive at Nabble.com.

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
Hi. If you really have never locked the screen, (did you search for "lock" in all scripts?) can you place a few bogus lines, like: answer random(999) here and there in key places and see if and where they pop up? I do this sort of thing all the time to flag important changes or unwanted

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