Viewing 11 posts - 1 through 11 (of 11 total)
I will try it.
You guys are good. I have a lot to learn.
Thanks- to all.
November 7, 2006 at 11:01 am
I don't understand your response. If the word 'QUOTATION' is not found then @Counter = 0.
The answer to my original problem, as it turns out, was because I was not...
November 6, 2006 at 7:29 pm
Yes, if the word 'QUOTATION' is not found, this is common.
November 6, 2006 at 5:03 pm
Sure enough - they show up as new lines!
Thanks.
November 6, 2006 at 3:06 pm
That's what I'm thinking. When I copy and paste it, it must change a CR or LF to a space.
Jim
November 6, 2006 at 2:51 pm
I'm not getting an error, just not the expected results. When I run the function sending it a text string it works. When I run it and pass it the...
November 6, 2006 at 9:45 am
It's a scalar function. Here is the sql:
CREATE FUNCTION GetQuoteNumberFromUserText
(@UserText TEXT)
RETURNS VARCHAR(12)
AS
BEGIN
DECLARE @TempUserText VARCHAR(255)
DECLARE @Result VARCHAR(12)
DECLARE @Var CHAR(1)
DECLARE @Counter TINYINT
IF @UserText IS NULL
SET @Result = ''
ELSE
BEGIN
SET @Var = ''
--Check to...
November 6, 2006 at 9:38 am
what is the 'dateadded' field?
Thanks
May 12, 2006 at 8:18 am
Thanks for the article. I just upgraded to VB.net 2005 from VB6 and started using TableAdapter objects to connect to SQL Server and stored procedures. It seems to work OK. ...
February 3, 2006 at 6:32 am
Thanks! I knew there must be an easy way.
January 25, 2006 at 8:05 am
Viewing 11 posts - 1 through 11 (of 11 total)