Modal Window with dynamic nstextfield

2010-04-05 Thread Jeremy Matthews
I have a modal window with code to update both a progress bar and corresponding text...the progress bar gets updated just fine but the textfield never does (except if I re-run the method the last string I pushed to the textfield from the previous run does appear).My understanding was that if

Re: Modal Window with dynamic nstextfield

2010-04-05 Thread Kyle Sluder
On Mon, Apr 5, 2010 at 10:15 AM, Jeremy Matthews jeremymatth...@mac.com wrote:        for (mmm=0;mmm150;mmm++)        {                [progressIndicator displayIfNeeded];                [progressIndicator setDoubleValue:mmm];                NSString *temp222 = [NSString

Re: Modal Window with dynamic nstextfield

2010-04-05 Thread Jeremy Matthews
Oh dear? Sent from my iPhone On Apr 5, 2010, at 4:47 PM, Kyle Sluder kyle.slu...@gmail.com wrote: On Mon, Apr 5, 2010 at 10:15 AM, Jeremy Matthews jeremymatth...@mac.com wrote: for (mmm=0;mmm150;mmm++) { [progressIndicator displayIfNeeded];

Re: Modal Window with dynamic nstextfield

2010-04-05 Thread Kyle Sluder
On Mon, Apr 5, 2010 at 3:12 PM, Jeremy Matthews jeremymatth...@mac.com wrote: Oh dear? Yeah. It's a pretty heavy topic. Your use of a for loop inside a modal runloop to perform a lengthy operation leads me to believe you'll be starting at the ground level. Please read through the Threading

Re: Modal Window with dynamic nstextfield

2010-04-05 Thread Jeremy Matthews
On Apr 5, 2010, at 6:18 PM, Kyle Sluder wrote: On Mon, Apr 5, 2010 at 3:12 PM, Jeremy Matthews jeremymatth...@mac.com wrote: Oh dear? Yeah. It's a pretty heavy topic. Your use of a for loop inside a modal runloop to perform a lengthy operation leads me to believe you'll be starting at