Wrox Programmer Forums
|
BOOK: Professional SQL Server 2005 Reporting Services ISBN: 0-7645-8497-9
This is the forum to discuss the Wrox book Professional SQL Server 2005 Reporting Services by Paul Turley, Todd Bryant, James Counihan, Dave DuVarney; ISBN: 9780764584978
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Professional SQL Server 2005 Reporting Services ISBN: 0-7645-8497-9 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 6th, 2007, 06:27 AM
Registered User
 
Join Date: Aug 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Problems w/ Chapter 6 250-254 - SSRS

Having problems implementing logic found in Chapter 6 Pages 250-254. can not get customized code to "work". Both using code within <Code \> and using a DLL.

Function = :
Public Shared Function CapsForCities(ByVal strInput As String) As String
Dim i As Integer
Dim strArray() As String = Split(strInput,"")
Dim strReturn As String = String.Empty

For i = 0 To UBound(strArray)
strReturn = strReturn + UCase(Left(strArray(i), 1)) + LCase(Mid(strArray(i), 2)) + " "
Next i

Return strReturn.Trim
End Function

Also put the same function in DLL - Namespace Report_DLLs, strongly named the DLL and registered it in the GAC - Report able to "find" the DLL but DLL not in Object Browser, even after it has been referenced.

In Code case =Code. did not bring up Function - in DLL sense, =Report_DLLs was unrecognized.

What am I doing wrong?

VS = 8.0.50727.867 -- no SP's

Thanks,

Marv






Similar Threads
Thread Thread Starter Forum Replies Last Post
Problems with chapter 1 macuser BOOK: PHP and MySQL: Create-Modify-Reuse ISBN: 978-0-470-19242-9 2 April 2nd, 2009 12:39 PM
Problems in chapter 4 theinscrutable BOOK: Professional Jakarta Struts 0 October 13th, 2004 03:02 PM
Ch. 7 - Policy Form (p. 250) MER78 BOOK: Professional SQL Server Reporting Services ISBN: 0-7645-6878-7 0 September 27th, 2004 03:51 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.