cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Johannes_T
Level 6

Better StatusWindow

Hi Folks,
I'm looking for a status window to show a list of messages. SdShowInfoList would be nice if it would be possible to update it. I remeber someone asking the same question here but can't find it.
Any ideas how I could get this done?
Thanks
Johannes
Labels (1)
0 Kudos
(3) Replies
J_anitha
Level 8

I guess it would be better to create a custom dialog and update the the texts to be displayed on it.
You can add progress bar on to it, if you need status display too.
0 Kudos
Johannes_T
Level 6

Hi,
thanks for your answer. One question I could't find an answer for: How can I update any control on a custom dialog when the function to show the dialog is blocking? You know what I mean? When I show a dialog, the function waits until the user does anything with the window, but this is unpractical for a status window.
Any ideas?
Thanks
Johannes
0 Kudos
J_anitha
Level 8

Will this help you?

szStatusMsg = msg1
SetStatusWindow(10,szStatusMsg);
Enable(STATUSEX);
StatusUpdate(ON, 29);

szStatusMsg = msg2
SetStatusWindow(30,szStatusMsg);
Enable(STATUSEX);
StatusUpdate(ON, 50);

something like this...
0 Kudos