Monday, March 26, 2012
is there a calendar control for custom parameter? Thanks
"VNN" <VNN@.hotmail.com> wrote in message
news:%233vBp8OCFHA.2072@.TK2MSFTNGP10.phx.gbl...
>|||Here's something posted earlier by Brian Welcker
----
No, but this is something we are planning for the next release of Reporting
Services.
--
Brian Welcker
Group Program Manager
Microsoft SQL Server Reporting Services
----
--
Adrian M.
MCP
"VNN" <VNN@.hotmail.com> wrote in message
news:%233vBp8OCFHA.2072@.TK2MSFTNGP10.phx.gbl...
>|||Adrian M. wrote:
> Here's something posted earlier by Brian Welcker
> No, but this is something we are planning for the next release of
> Reporting Services.
Meanwhile you can use the viewer from:
http://www.codeproject.com/useritems/SQLRSViewer.asp
It uses exclusively the RS SOAP API. So you can implement your own calendar
control. It's quite easy.
We are using this method for a rich reporting-application in some
customer-solutions.
regards
Frank
www.xax.de|||If you can not wait for Yukon, prepare an html page which shows the
datepicker, and pass the parameters in to the report URL...
--
Wayne Snyder, MCDBA, SQL Server MVP
Mariner, Charlotte, NC
www.mariner-usa.com
(Please respond only to the newsgroups.)
I support the Professional Association of SQL Server (PASS) and it's
community of SQL Server professionals.
www.sqlpass.org
"VNN" <VNN@.hotmail.com> wrote in message
news:%233vBp8OCFHA.2072@.TK2MSFTNGP10.phx.gbl...
>
Wednesday, March 21, 2012
is that possible to prevent modifying the name of an IDTSInputColumn90?
Hi,
I'm building a custom SSIS data flow component and I create myself input and output columns from a custom property of my pipeline component. That's why I don't want the user to modify the name of the input and output columns by using the advanced editor.
Is there a way either to make input/output column properties - at least the name - readonly or to override any PipelineComponent method to throw an exception like we do when we want to prevent the user from adding/removing input/output colulmns with methods like PipelineComponent.DeleteOutputColumn?
Thanks for your help,
David
Have you tried SetInputColumnProperty? The name is a property, but I have vague recollection that you cannot use that method to set the name, and end up having to do it on the IDTSInputColumn90 reference directly.
Can you detect a change, and pick this up in Validate? If you can detect a change you could return VS_NEEDSNEWMETADATA, and then correct the problem in ReinitializeMetaData. Not as proactive as preventing a change, but maybe it is better than nothing?
|||I've tried SetInputColumnProperty but it is called only for custom properties...and the name is not a custom property.
I any case, like you said, when the user modifies the name of an input column, Validate is called and I can detect the error...
Thanks