View Single Post
  #1  
Old 08-03-2011, 10:33 AM
jincheker jincheker is offline
Member
 
Join Date: Oct 2009
Posts: 15
viz.info message delay

Hi, everyone

I have a question. I define a function in which, a dll file was called, but before calling dll, i would like to display a message on screen.

The code structure is like this:

Code:
status_field=vizinfo.add('Ready')

def foo():
    status_field.message("Dll Called")
    ans = load_dll.calculate()

foo()
The problem is, the message is always displayed AFTER all calculation in dll was done. But I want message shown BEFORE load dll

Can anyone give me an idea how can I solve this problem? Thanks
Reply With Quote