Hiding Personal.xls using Novell Groupwise integration

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,

I use Excel in Novell Groupwise integration. Trying to hide and save
Personal.xls the GW Save macro stops with runtime error 91 at
ActiveWorkbook.Save
line,
the GW Close macro at
If Application.ActiveWindow.WindowNumber = 1 Then
line.
Obviously, the integration macros are not prepared for saving a hidden
workbook. Has anybody heard that this bug has been fixed?
Stefi
 
I'm not sure how much else will break, but maybe you could code around it:

If Application.ActiveWindow Is Nothing Then
'do nothing
Else
If Application.ActiveWindow.WindowNumber = 1 Then
MsgBox "hi"
End If
End If

Or even add a dummy workbook.

Workbooks.Add
If Application.ActiveWindow.WindowNumber = 1 Then
MsgBox "hi"
End If
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top