keith_shoaf
New Member
- Joined
- Oct 8, 2014
- Messages
- 39
Hello Everyone! I am looking for a complete list, if it exists, of all MS Office application function’s constants values. I want to be able to use late binding, but in order to do so, I need to declare all application specific functions as a Const like in the example below.
and also like: xlWB.Selection.PasteSpecial Paste:=-4163, Operation:=-4142
I need to use late binding because within my organization, some people have Office 2010, and some have Office 2013. So if I use early binding when coding in Office 2013, folks using Office 2010 cannot execute the mirco-app due to libraries. Any help on where I can find the proper values for all functions is GREATLY APPRECIATED!
- Const xlTemplate As Long = 17
- Const xlContinuous As Long = 1
- Const xlThin As Long = 2
and also like: xlWB.Selection.PasteSpecial Paste:=-4163, Operation:=-4142
I need to use late binding because within my organization, some people have Office 2010, and some have Office 2013. So if I use early binding when coding in Office 2013, folks using Office 2010 cannot execute the mirco-app due to libraries. Any help on where I can find the proper values for all functions is GREATLY APPRECIATED!