Private Sub UserForm_Initialize()
Application.WindowState = xlMinimized
Workbooks("Enter Comments").Sheets("Main").Select
DeptBox.Enabled = True
DeptBox.SetFocus
End Sub
I think you should look into opening a new insance of excel (that will
only hold the workbook in question). You can have code running in this
instance, while the user works in the other instance. Here is some
code to get you pointed in the right direction. If you need
clarification, just ask. Hope this helps
Ducky
_______________________Code Below______________________
Dim XLapp As Excel.Application
Dim xlbook As Excel.Workbook
Set XLapp = New Excel.Application
XLapp.Visible = True
Set xlbook = XLapp.Workbooks.Open("C:\Documents and Settings\areesex\My
Documents\Output\Output_EmpData.xls ")
Set XLapp = Nothing
Set xlbook = Nothing