Tuesday, March 20, 2012

Report Style Library

I found this GREAT posting earlier this week but having problems
getting it to work. It am getting an error at the s.Split function.
Has anyone else gotten this to work?
http://groups.google.com/group/microsoft.public.sqlserver.reportingsvcs/browse_frm/thread/3ff51b1a93b98d87/a6b124d4161834d4?lnk=gst&q=template&rnum=11#a6b124d4161834d4Split is likely new in 2.0. Are you using .NET 1.1 ?
--
Patrice
"DodgeMagnumGuy" <tonystoker@.comcast.net> a écrit dans le message de news:
1158079868.203218.54140@.p79g2000cwp.googlegroups.com...
>I found this GREAT posting earlier this week but having problems
> getting it to work. It am getting an error at the s.Split function.
> Has anyone else gotten this to work?
> http://groups.google.com/group/microsoft.public.sqlserver.reportingsvcs/browse_frm/thread/3ff51b1a93b98d87/a6b124d4161834d4?lnk=gst&q=template&rnum=11#a6b124d4161834d4
>|||No I am using VB 2005...
Patrice wrote:
> Split is likely new in 2.0. Are you using .NET 1.1 ?
> --
> Patrice
> "DodgeMagnumGuy" <tonystoker@.comcast.net> a =E9crit dans le message de ne=ws:
> 1158079868.203218.54140@.p79g2000cwp.googlegroups.com...
> >I found this GREAT posting earlier this week but having problems
> > getting it to work. It am getting an error at the s.Split function.
> > Has anyone else gotten this to work?
> >
> > http://groups.google.com/group/microsoft.public.sqlserver.reportingsvcs=
/browse_frm/thread/3ff51b1a93b98d87/a6b124d4161834d4?lnk=3Dgst&q=3Dtemplate=&rnum=3D11#a6b124d4161834d4
> >|||Try changing :
Dim arrValue As String() = s.Split("=", 2)
To:
Dim arrValue As String() = s.Split("=".ToCharArray(), 2)
Steve MunLeeuw
"DodgeMagnumGuy" <tonystoker@.comcast.net> wrote in message
news:1158089117.446596.52630@.b28g2000cwb.googlegroups.com...
No I am using VB 2005...
Patrice wrote:
> Split is likely new in 2.0. Are you using .NET 1.1 ?
> --
> Patrice
> "DodgeMagnumGuy" <tonystoker@.comcast.net> a écrit dans le message de news:
> 1158079868.203218.54140@.p79g2000cwp.googlegroups.com...
> >I found this GREAT posting earlier this week but having problems
> > getting it to work. It am getting an error at the s.Split function.
> > Has anyone else gotten this to work?
> >
> > http://groups.google.com/group/microsoft.public.sqlserver.reportingsvcs/browse_frm/thread/3ff51b1a93b98d87/a6b124d4161834d4?lnk=gst&q=template&rnum=11#a6b124d4161834d4
> >|||And the error is ?
--
"DodgeMagnumGuy" <tonystoker@.comcast.net> a écrit dans le message de news:
1158089117.446596.52630@.b28g2000cwb.googlegroups.com...
No I am using VB 2005...
Patrice wrote:
> Split is likely new in 2.0. Are you using .NET 1.1 ?
> --
> Patrice
> "DodgeMagnumGuy" <tonystoker@.comcast.net> a écrit dans le message de news:
> 1158079868.203218.54140@.p79g2000cwp.googlegroups.com...
> >I found this GREAT posting earlier this week but having problems
> > getting it to work. It am getting an error at the s.Split function.
> > Has anyone else gotten this to work?
> >
> > http://groups.google.com/group/microsoft.public.sqlserver.reportingsvcs/browse_frm/thread/3ff51b1a93b98d87/a6b124d4161834d4?lnk=gst&q=template&rnum=11#a6b124d4161834d4
> >

No comments:

Post a Comment