thisXDocument object

M

Mattia Saccotelli

Hi,
I would like to browse functions and members of the thisXDocument object
using the visual studio's object browser or Reflector, but XDocument
it's an interface. Which class is actually instantiated at startup?

public void _Startup(Application app, XDocument doc)
{
thisXDocument = doc;
thisApplication = app;

// You can add additional initialization code here.
}


--

How to convert such a javascript:

strSqlCommand =
XDocument.DataObjects.Item("SalesSummary").QueryAdapter.Command;
strSqlCommand = strSqlCommand.replace(/@Ending_Date='[^']+'/,
"@Ending_Date='" + SqlDateTime(dtEnd) + "'");
XDocument.DataObjects.Item("SalesSummary").QueryAdapter.Command =
strSqlCommand;

to C# code? QueryAdapter property has no Command Member

thanks in advance
 
K

kprendergast

I am having the same problem. Did you find a solution for the C#
version of QueryAdapter.command?

Thanks.
 

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

Top