Thread: XML
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Michel Pierron Michel Pierron is offline
external usenet poster
 
Posts: 214
Default XML

Hi kelly,
You can try:

Sub XML_Support_Available()
Const Msg1$ = "XML feature is"
Const Msg2$ = "available in this Excel version !"
MsgBox Msg1 & xmlSupport & Msg2, 64
End Sub

Private Function xmlSupport() As String
xmlSupport = IIf(Application.ArbitraryXMLSupportAvailable, " ", " not ")
End Function

MP

"kelly" a écrit dans le message de news:
...
I have MS Office Basic Ed 2003, (11,8105,8107)SP2. I need to have "xml" as
an
option on my data menu in my Excel program. Is this possible?
--
Kelly