Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 538
Default 2000 - 2007: gotchas?

I've acquired a copy of Office 2007. Up to now, I've been using Office 2000.
As far as VBA goes, are there any major "gotchas" I need to be aware of? Or
should my 2000 code "just work" under 2007? (Specifically Excel; I don't
usually program for the rest of the Office suite, but I program the hell out
of Excel.)

--
Everyone slaps one another with fish.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,514
Default 2000 - 2007: gotchas?

Auric__ pretended :
I've acquired a copy of Office 2007. Up to now, I've been using Office 2000.
As far as VBA goes, are there any major "gotchas" I need to be aware of? Or
should my 2000 code "just work" under 2007? (Specifically Excel; I don't
usually program for the rest of the Office suite, but I program the hell out
of Excel.)


Given the support for backward compatibility that XL12 has, your XL9
projects will work just fine. My first VBA projects were XL9 and they
still work in XL12. I don't service those early projects much anymore,
but later editions have been upgraded to make use of Excel's evolving
features/functionality.

However, there's a lot of changes beyond XL9 that you'll most likely
WANT to code for so your projects can take advantage of the newer
features and functionality.

The only 'gotcha' I encountered was dictator apps no longer replacing
the menubar since it was replaced by the Ribbon. Another 'gotcha' is
that XL12+ doesn't support 'floating' toolbars and so you'll need to
rework how to handle those if your projects use them. All custom
toolbars/menus will be allocated to the Addins tab of the Ribbon. You
may want to make your own custom tabs or manipulate the Ribbon to suit
your project needs. In this case, I strongly recommend Ron De Brun's
MSO Ribbon solutions.

Best wishes in your endeavours...

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,514
Default 2000 - 2007: gotchas?

I apologize for the mispelling...

...I strongly recommend *Ron de Bruin's* MSO Ribbon solutions.

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 538
Default 2000 - 2007: gotchas?

GS wrote:

Auric__ pretended :
I've acquired a copy of Office 2007. Up to now, I've been using Office
2000. As far as VBA goes, are there any major "gotchas" I need to be
aware of? Or should my 2000 code "just work" under 2007? (Specifically
Excel; I don't usually program for the rest of the Office suite, but I
program the hell out of Excel.)


Given the support for backward compatibility that XL12 has, your XL9
projects will work just fine. My first VBA projects were XL9 and they
still work in XL12. I don't service those early projects much anymore,
but later editions have been upgraded to make use of Excel's evolving
features/functionality.

However, there's a lot of changes beyond XL9 that you'll most likely
WANT to code for so your projects can take advantage of the newer
features and functionality.


I'll probably want it to still work under 2000, since I have multiple copies
of that, but only one copy of 2007. (If necessary, I will use the methods
from the current "Compiling Error in Earlier Version of Excel" thread, but I
don't expect to need to.)

The only 'gotcha' I encountered was dictator apps no longer replacing
the menubar since it was replaced by the Ribbon. Another 'gotcha' is
that XL12+ doesn't support 'floating' toolbars and so you'll need to
rework how to handle those if your projects use them. All custom
toolbars/menus will be allocated to the Addins tab of the Ribbon. You
may want to make your own custom tabs or manipulate the Ribbon to suit
your project needs. In this case, I strongly recommend Ron De Brun's
MSO Ribbon solutions.


As it happens, my VBA in Excel deals almost exclusively with number crunching
and displaying the results. What little remains typically deals with
crunching non-numeric data, custom sorting, and the like, and *nothing* of
mine involves custom menus, toolbars, etc. Not even forms. (I don't even make
custom whatevers for my own use.)

Best wishes in your endeavours...


Same to you, sir.

--
This is between us and the chickens, Ma'am,
and I'm going to ask real nicely that you stay out of it.
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,549
Default 2000 - 2007: gotchas?

Also, the color system is different, many colors are going to look strange.
For instance, ColorIndexes have been sabotaged - using "Color" not "ColorIndex" will get you further
along.
Please don't ask me to explain the new system, I can't.
'---
Jim Cone
Portland, Oregon USA
http://www.mediafire.com/PrimitiveSoftware
(free and commercial excel programs)





"Auric__" wrote in message
44.100...
I've acquired a copy of Office 2007. Up to now, I've been using Office 2000.
As far as VBA goes, are there any major "gotchas" I need to be aware of? Or
should my 2000 code "just work" under 2007? (Specifically Excel; I don't
usually program for the rest of the Office suite, but I program the hell out
of Excel.)

--
Everyone slaps one another with fish.





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 538
Default 2000 - 2007: gotchas?

Jim Cone wrote:

"Auric__" wrote in message
44.100...
I've acquired a copy of Office 2007. Up to now, I've been using Office
2000. As far as VBA goes, are there any major "gotchas" I need to be
aware of? Or should my 2000 code "just work" under 2007? (Specifically
Excel; I don't usually program for the rest of the Office suite, but I
program the hell out of Excel.)


Also, the color system is different, many colors are going to look
strange. For instance, ColorIndexes have been sabotaged - using "Color"
not "ColorIndex" will get you further along.
Please don't ask me to explain the new system, I can't.


That good, huh?

Luckily, I can't think of any instances where my code uses any specfic
colors. About the only text formatting I do use are Bold and (rarely) Italic.
I might bump the font size up, but that's *very* rare.

--
No one ever conquered the world using a beta version.
  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 230
Default 2000 - 2007: gotchas?

On 13/12/2011 02:20, Auric__ wrote:
I've acquired a copy of Office 2007. Up to now, I've been using Office 2000.
As far as VBA goes, are there any major "gotchas" I need to be aware of? Or
should my 2000 code "just work" under 2007? (Specifically Excel; I don't
usually program for the rest of the Office suite, but I program the hell out
of Excel.)


A longish list but they are mostly pretty obscure features that you may
not actually use. Certain dialogues for file find withdrawn etc.

Main ones that forced me to fork the code are gratuitous changes to
graphics objects coordinates and colours together with a bunch of
interesting race conditions if you ever draw large numbers of graphs
from VBA. Basically stuff that works fine before XL2007 is broken in the
later versions and for good measure some of the improvements in XL2010
put it back to how it was before. There are work arounds for all of it.
XL2007 can be glacially slow for larger datasets and now has to display
an estimated time to completion to stop users thinking it has crashed.
The same operations on XL2003 took under 5 seconds.

It is better now after the SPs than it was out of the box originally.

Defaults for charts are awful in XL2007 unless you like the drawn by a
kid with a wax crayon look for your business graphs. And to add insult
to injury customising charts makes them *even* slower to draw.

The macro recorder in XL2007 is wrecked and completely FUBAR.

I expect others will chime in with more examples of gotchas.

Why move to 2007 at this stage when XL2010 is out?

Regards,
Martin Brown
  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 538
Default 2000 - 2007: gotchas?

Martin Brown wrote:

On 13/12/2011 02:20, Auric__ wrote:
I've acquired a copy of Office 2007. Up to now, I've been using Office
2000. As far as VBA goes, are there any major "gotchas" I need to be
aware of? Or should my 2000 code "just work" under 2007? (Specifically
Excel; I don't usually program for the rest of the Office suite, but I
program the hell out of Excel.)


A longish list but they are mostly pretty obscure features that you may
not actually use. Certain dialogues for file find withdrawn etc.

Main ones that forced me to fork the code are gratuitous changes to
graphics objects coordinates and colours together with a bunch of
interesting race conditions if you ever draw large numbers of graphs
from VBA. Basically stuff that works fine before XL2007 is broken in the
later versions and for good measure some of the improvements in XL2010
put it back to how it was before. There are work arounds for all of it.
XL2007 can be glacially slow for larger datasets and now has to display
an estimated time to completion to stop users thinking it has crashed.
The same operations on XL2003 took under 5 seconds.

It is better now after the SPs than it was out of the box originally.


....interesting.

Defaults for charts are awful in XL2007 unless you like the drawn by a
kid with a wax crayon look for your business graphs. And to add insult
to injury customising charts makes them *even* slower to draw.


Fortunately, I only have 2 spreadsheets with any kind of charts, and those
are both just simple line graphs. Actually... I use one of them to estimate
future needs. I'll have to see if that's changed any.

The macro recorder in XL2007 is wrecked and completely FUBAR.


Luckily, I rarely need it.

I expect others will chime in with more examples of gotchas.

Why move to 2007 at this stage when XL2010 is out?


Money. I don't spend my own on office software; I use what I have until
someone else pays for a new version for me. Usually it's work, but this time
my sister-in-law got 2010 for herself, so I got her copy of 2007.

--
You never keep any of your promises.
  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 114
Default 2000 - 2007: gotchas?

Changed in XL2007: copying a sheet via code no longer makes the copy
the ActiveSheet.

That's the only issue I've encountered which broke older code.

Tim


On Dec 12, 6:20*pm, "Auric__" wrote:
I've acquired a copy of Office 2007. Up to now, I've been using Office 2000.

  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 538
Default 2000 - 2007: gotchas?

Tim Williams wrote:

Changed in XL2007: copying a sheet via code no longer makes the copy
the ActiveSheet.

That's the only issue I've encountered which broke older code.


Not something I do via code anywhere, but I'll bear it in mind. Thanks.

--
If the law is not upheld equivalently it is worthless, as are its upholders.


  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 829
Default 2000 - 2007: gotchas?

"Auric__" wrote:
I've acquired a copy of Office 2007. Up to now, I've
been using Office 2000. As far as VBA goes, are there
any major "gotchas" I need to be aware of? Or should
my 2000 code "just work" under 2007?


Although you seem to be interested in __program__ incompatibility, I want to
forewarn you of a __programming__ (i.e. usage) "incompatibility".

Bottom line: Do not get rid of your copy of Excel 2000. Instead, custom
install Office 2007 so that you can retain Office 2000.

I am fortunate to have done that when I installed Office 2010 on a system
that had (still has) Office 2003.

I discovered that the F1 help information in Excel 2010 VBA is nowhere near
as good as Excel 2003 VBA. Fortunately, I still have the latter to go back
when I need help.

I don't know if the same can be said of Excel 2000 VBA v. Excel 2007 VBA.
But you might be sorry if you assume otherwise.

  #12   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 538
Default 2000 - 2007: gotchas?

joeu2004 wrote:

"Auric__" wrote:
I've acquired a copy of Office 2007. Up to now, I've
been using Office 2000. As far as VBA goes, are there
any major "gotchas" I need to be aware of? Or should
my 2000 code "just work" under 2007?


Although you seem to be interested in __program__ incompatibility, I
want to forewarn you of a __programming__ (i.e. usage)
"incompatibility".

Bottom line: Do not get rid of your copy of Excel 2000. Instead,
custom install Office 2007 so that you can retain Office 2000.

I am fortunate to have done that when I installed Office 2010 on a
system that had (still has) Office 2003.

I discovered that the F1 help information in Excel 2010 VBA is nowhere
near as good as Excel 2003 VBA. Fortunately, I still have the latter to
go back when I need help.

I don't know if the same can be said of Excel 2000 VBA v. Excel 2007
VBA. But you might be sorry if you assume otherwise.


I'll keep that in mind, but I can usually find what I want in MSDN if I can't
find it in the help files.

(Also, I'd rather not have 2 versions of *anything* installed without a
*very* good reason, and "inadequate helpfiles" aren't good enough for me.)

--
I'm not going to write that article again, because it's not true.
  #13   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 621
Default 2000 - 2007: gotchas?

At a minimum find and save all the 2000 version VBA???.chm files.

You can d-click to open them when you really need help.

Or...........if brave enough...............rename the 2007 *.chm files

Back them up first.


Gord

On Wed, 14 Dec 2011 14:39:19 -0800, "joeu2004"
wrote:

"Auric__" wrote:
I've acquired a copy of Office 2007. Up to now, I've
been using Office 2000. As far as VBA goes, are there
any major "gotchas" I need to be aware of? Or should
my 2000 code "just work" under 2007?


Although you seem to be interested in __program__ incompatibility, I want to
forewarn you of a __programming__ (i.e. usage) "incompatibility".

Bottom line: Do not get rid of your copy of Excel 2000. Instead, custom
install Office 2007 so that you can retain Office 2000.

I am fortunate to have done that when I installed Office 2010 on a system
that had (still has) Office 2003.

I discovered that the F1 help information in Excel 2010 VBA is nowhere near
as good as Excel 2003 VBA. Fortunately, I still have the latter to go back
when I need help.

I don't know if the same can be said of Excel 2000 VBA v. Excel 2007 VBA.
But you might be sorry if you assume otherwise.

  #14   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,514
Default 2000 - 2007: gotchas?

Auric__ formulated on Wednesday :
(Also, I'd rather not have 2 versions of *anything* installed without a
*very* good reason, and "inadequate helpfiles" aren't good enough for me.)


I have XL9 through XL12 installed on my development machine for testing
purposes. While XL10 is the earliest version I now use, I did have as
far back as XL8 on my former development machine. Fortunately, noone I
do work for is using that version any longer. You might find it
interesting and eye-opening to build projects in XL11 and see how they
behave in XL12. Testing alone is a very good reason to have multiple
versions installed on the same machine<IMO!

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


  #15   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 538
Default 2000 - 2007: gotchas?

Gord Dibben wrote:

On Wed, 14 Dec 2011 14:39:19 -0800, "joeu2004"
wrote:

"Auric__" wrote:
I've acquired a copy of Office 2007. Up to now, I've
been using Office 2000. As far as VBA goes, are there
any major "gotchas" I need to be aware of? Or should
my 2000 code "just work" under 2007?


Although you seem to be interested in __program__ incompatibility, I
want to forewarn you of a __programming__ (i.e. usage)
"incompatibility".

Bottom line: Do not get rid of your copy of Excel 2000. Instead,
custom install Office 2007 so that you can retain Office 2000.

I am fortunate to have done that when I installed Office 2010 on a
system that had (still has) Office 2003.

I discovered that the F1 help information in Excel 2010 VBA is nowhere
near as good as Excel 2003 VBA. Fortunately, I still have the latter to
go back when I need help.

I don't know if the same can be said of Excel 2000 VBA v. Excel 2007
VBA. But you might be sorry if you assume otherwise.


At a minimum find and save all the 2000 version VBA???.chm files.

You can d-click to open them when you really need help.


Is there *that* little info in the 2007 helpfiles to warrant it?

Or...........if brave enough...............rename the 2007 *.chm files

Back them up first.


I've got 2000 on my server's Windows install; I can copy them over if-and-
when.

--
Many can understand.
What people do with understanding is another matter.
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
special characters, other multi-language gotchas? Jeff Norville Excel Programming 0 November 16th 10 11:15 PM
excel 2000 over 2007 colin 007[_2_] Excel Discussion (Misc queries) 7 April 21st 09 07:44 PM
working with Hex numbers.... A few gotchas I need help with... Phillip[_7_] Excel Programming 2 February 24th 09 06:29 AM
Solver gotchas G.R. Toro Excel Discussion (Misc queries) 4 February 7th 09 01:59 PM
Excel 2003 to 2007 Gotchas ... so I can be prepared Barb Reinhardt Excel Programming 2 April 29th 08 05:01 PM


All times are GMT +1. The time now is 04:35 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"