R
Randy
In ASP I used the following Code to get the table name
from a XL db. I have been looking how to do this in .NET
and can't seem to find it. Can any of you guys help me
out.
strTable = getXLName(XLConn)
Function getXLName(obj)
SET RsN = obj.OpenSchema(20)
getXLName = RsN("TABLE_NAME")
RsN.Close
End Function
from a XL db. I have been looking how to do this in .NET
and can't seem to find it. Can any of you guys help me
out.
strTable = getXLName(XLConn)
Function getXLName(obj)
SET RsN = obj.OpenSchema(20)
getXLName = RsN("TABLE_NAME")
RsN.Close
End Function