Excel version compatibilities

W

Wonder

Hi there,

Will there be any difference between excel 97 which runs
in Windows 98 and excel 97 which runs in Windows
2000/2002?

Thanks.
 
K

keepitcool

Sheela Wonder... :)

For normal excel vba or functions there are no differences.

There may be differences if you're planning to use API functions,
(for advanced programmers' use, they interact directly with the OS)


keepITcool

< email : keepitcool chello nl (with @ and .) >
< homepage: http://members.chello.nl/keepitcool >
 
W

Wonder

How would I know if it using API functions. Actually,
this file was created by another person and I'm
simplfying it.

Thanks,
sheela
 
K

keepitcool

Sheela,

Api functions are always listed in the top of a module
and you'll recognise them by the "declare" keyword

They look like:

Private Declare Function GetClipboardData Lib "user32.dll" ( _
ByVal wFormat As Long) As Long


Most of these (90% ?) will function without problems in either
win98 or win2k, but there may be differences (in most cases
with stuff written for win2k that wont function on win98)



keepITcool

< email : keepitcool chello nl (with @ and .) >
< homepage: http://members.chello.nl/keepitcool >
 

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

Top