XML

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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 said:
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

I believe, you have to update to Office 2003 Pro.
 
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
 

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

Similar Threads


Back
Top