How to Hide StiDataBase
How to Hide StiDataBase
Hello,
I used this code in win in order to hide some StiDataBase, but in web I can't do this. Can you help me this is very urgent
Stimulsoft.Base.Services.StiServiceContainer services = Stimulsoft.Report.StiConfig.Services.GetServices(typeof(Stimulsoft.Report.Dictionary.StiDatabase));
foreach (Stimulsoft.Base.Services.StiService service in services)
{
if (service is Stimulsoft.Report.Dictionary.StiXmlDatabase) continue;
service.ServiceEnabled = false;
}
I used this code in win in order to hide some StiDataBase, but in web I can't do this. Can you help me this is very urgent
Stimulsoft.Base.Services.StiServiceContainer services = Stimulsoft.Report.StiConfig.Services.GetServices(typeof(Stimulsoft.Report.Dictionary.StiDatabase));
foreach (Stimulsoft.Base.Services.StiService service in services)
{
if (service is Stimulsoft.Report.Dictionary.StiXmlDatabase) continue;
service.ServiceEnabled = false;
}
How to Hide StiDataBase
Hello,
On the current moment it is not possible to hide this services in Web version. This will be possible to do in the version 2011.1 that will be available in the end of March.
Thank you.
On the current moment it is not possible to hide this services in Web version. This will be possible to do in the version 2011.1 that will be available in the end of March.
Thank you.
How to Hide StiDataBase
Thanks for your answer
How to Hide StiDataBase
Hello,
Let us know if you need any additional help.
Thank you.
Let us know if you need any additional help.
Thank you.
How to Hide StiDataBase
Please I need to add my model xsd directly in WebDesign whith Dictionnary-->new Connexion --> XMLConnection
But I can not display tables of model. Can you help me please?
But I can not display tables of model. Can you help me please?
How to Hide StiDataBase
Hello,
If we understand your task correctly, you can use the following code:
Thank you.
If we understand your task correctly, you can use the following code:
Code: Select all
DataSet data = new DataSet();
data.ReadXmlSchema("e:\\demo.xsd");
report.RegData(data);
report.Dictionary.Synchronize();
How to Hide StiDataBase
Hello,
If we understand your task correctly, you can use the following code:
Thank you.
If we understand your task correctly, you can use the following code:
Code: Select all
DataSet data = new DataSet();
data.ReadXmlSchema("e:\\demo.xsd");
report.RegData(data);
report.Dictionary.Synchronize();