Posted to microsoft.public.office.developer.automation,microsoft.public.office.developer.com.add_ins,microsoft.public.excel.programming
|
|
Huge bug of Saved property in Excel2000
XL2000 with all service packs applied:
I see .Saved property responding correctly.
NickHK
"LF" wrote in message
...
Dennis,
Thanks for confirming this mess. I just found out that the same problem is
also present in PowerPoint 2000, but it got resolved with some service
pack.
Why is this not solved in Excel 2000 too? I am disperate for a solution,
can
anyone please help?!?
Regards,
Levente
"XL-Dennis" wrote in message
...
Levente,
I'm running Swedish version of Excel 2000 with SP-3 installed on a
Windows
XP platform (Unfortunately I have only access to English version of
2002,
2003, 2007 but not for 2000).
I have done the following two tests:
Option Explicit
Sub test()
Dim wbBook As Excel.Workbook
Set wbBook = ActiveWorkbook
wbBook.Saved = True
'The following line gives 'True'
MsgBox wbBook.Saved, vbOKOnly, "Status 1"
wbBook.Saved = False
'The following line gives 'False'
MsgBox wbBook.Saved, vbOKOnly, "Status 2" '
End Sub
Sub Test2()
Dim wbBook As Excel.Workbook
Set wbBook = ActiveWorkbook
wbBook.Saved = False
'This gives 'False'
MsgBox wbBook.Saved, vbOKOnly, "Status 1"
'This gives also 'False'
'The same output is achieved when setting it to True, i e it gives the
same
msg.
MsgBox wbBook.Saved, vbOKOnly, "Status 2"
End Sub
In general I would advise to avoid the use of 'ActiveWorkbook' as it can
refer to the wrong workbook.
I must admit I'm confused why You have this issue...
I've made some online searches and noticed that the issue have been
discussed several times but no solution is given in any of the cases.
It would be great if someone from MSFT could comment it but I'm not sure
if
they still support 2000 or not.
---------------
With kind regards,
Dennis
Weekly Blog .NET & Excel: http://xldennis.wordpress.com/
My English site: http://www.excelkb.com/default.aspx
My Swedish site: http://www.xldennis.com/
|