G
Guest
Hello,
I have a message box that appears b4 a thread is started off, however
when Yes or No is answered to the message box the message box does not
dissappear, in fact it appears with a ghost like image in the foreground. is
there anyway of getting around this issue and getting rid of the pesky
message box in the first place. The msgbox is not kicked off in a form but in
a module if this makes any difference.
If MsgBox("would you liek to restore the db", MsgBoxStyle.YesNo, Title) =
MsgBoxResult.Yes Then
Me.Refresh()
thrRestore = New Thread(AddressOf RestoreDb)
thrRestore.IsBackground = True
thrRestore.Start()
thrRestore.Join()
I have a message box that appears b4 a thread is started off, however
when Yes or No is answered to the message box the message box does not
dissappear, in fact it appears with a ghost like image in the foreground. is
there anyway of getting around this issue and getting rid of the pesky
message box in the first place. The msgbox is not kicked off in a form but in
a module if this makes any difference.
If MsgBox("would you liek to restore the db", MsgBoxStyle.YesNo, Title) =
MsgBoxResult.Yes Then
Me.Refresh()
thrRestore = New Thread(AddressOf RestoreDb)
thrRestore.IsBackground = True
thrRestore.Start()
thrRestore.Join()