Viewing 15 posts - 361 through 375 (of 541 total)
OK, here is what I tried:
Page Header (textbox63)
=IIF(Left(ReportItems!RefText2.Value,3)="PUR","PURCHASE ORDER","RETURN ORDER")
textbox63 is in the Page Header. A second textbox in the page header references a textbox in the main body:
Page Header
=...
November 13, 2008 at 4:44 am
The requirement changed (surprise, surprise) so this thread is no longer valid.
Regards,
Phil.
November 12, 2008 at 11:15 am
Thanks to all that have given time to this request.
Kind Regards,
Phil.
November 8, 2008 at 2:47 am
Thanks guys. All sounds complex 🙂
Many Thanks,
Phil.
November 7, 2008 at 11:21 am
Thanks for the update, I will see if I can work out how to modify from your example.
Many Thanks,
Phil.
November 7, 2008 at 5:19 am
Thanks for the reply. Maybe I do not follow but I would not be able to hard code the SalesOrderId values?
Many Thanks,
Phil.
November 7, 2008 at 4:51 am
Thanks John I will take a look. I used the standard controls available within MS VWD 2008(no coding on my part!).
Many Thanks,
Phil.
October 31, 2008 at 6:29 am
Hi John / Chris. It appears it was a setting on MS Visual Web Developer 2008. On the grid view when configuring the parameters there is an option to display...
October 30, 2008 at 11:02 am
Chris here are a few results:
exec bsp_intranet_productdesc_search @ProductId=N'FAL',@ProductDescription=N' '
exec bsp_intranet_productdesc_search @ProductId=N'FAS',@ProductDescription=N' '
exec bsp_intranet_productdesc_search @ProductId=N' ',@ProductDescription=N'TRANSMITTER'
exec bsp_intranet_productdesc_search @ProductId=N'FAS175C',@ProductDescription=N' '
If I enter a ProductID but leave the Product Description blank (i.e. no...
October 30, 2008 at 10:21 am
OK, I will give that a go and report back.
Phil.
October 30, 2008 at 10:03 am
Hi Chris that is better than it was but I am unable to leave one of the fields blank. If I do the query does not return any values, however...
October 30, 2008 at 9:49 am
Hi Chris, I will give that a go. I thought it was going to be simple 🙂
Thanks,
Phil.
October 30, 2008 at 9:39 am
OK still trying to get this working. My stored proc is as follows:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER PROC [dbo].[bsp_intranet_product_search]
@ProductIdNVARCHAR(100),
@ProductDescription NVARCHAR(300)
AS
SELECT DISTINCT TOP 100 ProductId,ProductDescription,CrossReference,ISNULL(CONVERT(VARCHAR,SUM(QuantityOutstanding)),'0')AS Quantity,'£' + CONVERT (VARCHAR(12),StandardPrice,1)AS StandardPrice
FROM Products...
October 30, 2008 at 7:45 am
I used the default instance.
Phil.
October 16, 2008 at 5:11 am
Viewing 15 posts - 361 through 375 (of 541 total)