P
phreud
Hello,
I'm totally lost. I've been searching through these forums and th
internet for an answer, but I can't solve this problem. I have a splas
screen (userform) from which users can open different forms in m
application. The splash screen also has a quit button which is suppose
to close Excel down, but it still apperas in the task manager.
From what I've read, I think I understand the problem, but I have n
idea how to solve it. I'm not creating new instances in my code? No
sure if I should? Anyway, I'll give a brief explanation of what I'
doing:
I have 1 workbook with 3 sheets. I have a userform acting as a splas
screen. The first thing I do when someone opens my xls file is (cod
for ThisWorkbook):
Code
-------------------
Private Sub Workbook_Open()
Application.Visible = False
frmSplash.Show
End Sub
-------------------
On my splash screen, I have a quit button with the following code:
Code
-------------------
Private Sub btnQuit_Click()
For Each w In Application.Workbooks
w.Close False
Next w
Workbooks(1).Saved = True
ThisWorkbook.Close False
Application.Qui
-------------------
Clicking this still leaves the Excel process running. Can someon
please point me in the right direction?
Thankyou in advance
I'm totally lost. I've been searching through these forums and th
internet for an answer, but I can't solve this problem. I have a splas
screen (userform) from which users can open different forms in m
application. The splash screen also has a quit button which is suppose
to close Excel down, but it still apperas in the task manager.
From what I've read, I think I understand the problem, but I have n
idea how to solve it. I'm not creating new instances in my code? No
sure if I should? Anyway, I'll give a brief explanation of what I'
doing:
I have 1 workbook with 3 sheets. I have a userform acting as a splas
screen. The first thing I do when someone opens my xls file is (cod
for ThisWorkbook):
Code
-------------------
Private Sub Workbook_Open()
Application.Visible = False
frmSplash.Show
End Sub
-------------------
On my splash screen, I have a quit button with the following code:
Code
-------------------
Private Sub btnQuit_Click()
For Each w In Application.Workbooks
w.Close False
Next w
Workbooks(1).Saved = True
ThisWorkbook.Close False
Application.Qui
-------------------
Clicking this still leaves the Excel process running. Can someon
please point me in the right direction?
Thankyou in advance