Archive: Interesting Banner Problem...


Interesting Banner Problem...
I have an interesting problem... I am showing two banners, one right after the other... the first one seems not to set the text for 54, yet the seconed one does??? Here is the code clip...



Banner::show /NOUNLOAD /set 76 "Please Wait..." /set 54 "Installing ODBC.Net"
ExecWait "msiexec /i $EXEDIR\odbc_net.msi /q"
Banner::destroy
Banner::show /NOUNLOAD /set 76 "Please Wait..." /set 54 "Installing Crystal Reports Runtime"
ExecWait "msiexec /i $EXEDIR\cr_net.msi /q"
Banner::destroy


Try
Banner::show /NOUNLOAD /set 76 "Please Wait..." "Installing ODBC.Net"

-Stu


You must always push the main string, if you don't do so Banner will not function properly.