P
Peter
I am currently developing an addin which can be used under 2003 and 2007.
Does anyone have any information on the relative market of 2003 vs 2007?
Where might I find this information. The specific market I am interested in
is higher education and secondary education. Currently it works EXACTLY the
same under both 2003 and 2007 and I am trying to work out how long I need to
support 2003.
For those who are intersted below are the main things I have done to exist
in the 2003 and 2007 universes:
* use userforms for the interface rather than toolbars or ribbon
* stay away from features that exist in only in 2003 or 2007
* different instructions for each vervision
If Val(Application.version) >= 12 Then
Prompt = "going to the 'Add-Ins' ribbon and clicking 'Show eMarking
Assistant toolbar'"
Else
Prompt = Prompt & "using the 'View menu' > 'Toolbars' > 'Show
eMarking Assistant toolbar'"
End If
* if I need to use a 2007 only feature then testing the version and calling
it using CALLBYNAME so the application does not break in 2003 (even though
the statement is not run e,g,
If Val(Application.version) >= 12 Then
CallByName Options, "ContextualSpeller", VbLet, True
End If
*distributing it in a .doc file
The application avaiable at http://emarking-assistant.baker-evans.com
PeterEvans
Does anyone have any information on the relative market of 2003 vs 2007?
Where might I find this information. The specific market I am interested in
is higher education and secondary education. Currently it works EXACTLY the
same under both 2003 and 2007 and I am trying to work out how long I need to
support 2003.
For those who are intersted below are the main things I have done to exist
in the 2003 and 2007 universes:
* use userforms for the interface rather than toolbars or ribbon
* stay away from features that exist in only in 2003 or 2007
* different instructions for each vervision
If Val(Application.version) >= 12 Then
Prompt = "going to the 'Add-Ins' ribbon and clicking 'Show eMarking
Assistant toolbar'"
Else
Prompt = Prompt & "using the 'View menu' > 'Toolbars' > 'Show
eMarking Assistant toolbar'"
End If
* if I need to use a 2007 only feature then testing the version and calling
it using CALLBYNAME so the application does not break in 2003 (even though
the statement is not run e,g,
If Val(Application.version) >= 12 Then
CallByName Options, "ContextualSpeller", VbLet, True
End If
*distributing it in a .doc file
The application avaiable at http://emarking-assistant.baker-evans.com
PeterEvans