![]() |
| |||||||
| Sponsored Links |
![]() | « Previous Thread | Next Thread » |
| | LinkBack | Thread Tools | Display Modes |
|
#1
| ||||
| ||||
| hi through my stored procedure i m returning such a string Code: SET @vsResult = 'SUPPLIER CODE / ' + ISNULL(CONVERT(VARCHAR,@vnSupplierID),'<BLANK>') SET @vsResult = @vsResult + ' ' + 'PRODUCT CODE / ' + ISNULL(CONVERT(VARCHAR,@vsProductCode),'<BLANK>') SET @vsResult = @vsResult + ' ' +'GL CATEGORY CODES / ' + ISNULL(CONVERT(VARCHAR,@vsGLCategoryCode),'<BLANK>') SET @vsResult = @vsResult + ' ' + 'RESULT: ' Code: With mobjDatabaseReader
.SPRun msMsgStoreConnection, _
SP_BULKIMPORT_PRODUCTGLCATEGORYDATA, _
.MakeParameter("@vnMemberID", adtInteger, apdParamInput, , vlSender), _
.MakeParameter("@vnSupplierID", adtInteger, apdParamInput, , asLineCols(lCount, 0)), _
.MakeParameter("@vsProductCode", adtVarChar, apdParamInput, 50, asLineCols(lCount, 1)), _
.MakeParameter("@vnIsStock", adtInteger, apdParamInput, , IIf(asLineCols(lCount, 2) = "Y", 1, 0)), _
.MakeParameter("@vsGLCategoryCode", adtVarChar, apdParamInput, 1000, asLineCols(lCount, 3)), _
.MakeParameter("@rsResult", adtVarChar, apdParamOutput, 1000), _
vsResult
End With
thanks
__________________ Love is physical attraction and mental destruction |
| Sponsored Links |
|
#2
| ||||
| ||||
| How are you displaying it in VB?
__________________ jmurrayhead If you agree with me... click the icon! If my post solved your problem, click the button in the lower right-hand corner of the post.Join our Folding team: DeveloperBarn Folding |
|
#3
| ||||
| ||||
| like this vsAllResults = vsAllResults & vsResult & vbNewLine |
|
#4
| ||||
| ||||
| Okay, but how is it output to the user? popup box? Is it assigned to a Visual Basic form value? Is this being used in conjunction with ASP? What happens if you replace '<blank>' in your stored procedure with 'testing'? |
|
#5
| ||||
| ||||
| this output goes to in a txt file.and let me check for this What happens if you replace '<blank>' in your stored procedure with 'testing'? |
|
#6
| ||||
| ||||
| yeah JMH u are rite What happens if you replace '<blank>' in your stored procedure with 'testing'? i chnaged <blank> with 'testing' but even testing also not getting.but in analyzer i m getting.what the hail going on? Any idea? thanks |
|
#7
| ||||
| ||||
| guys gotted now.actaully from my dll i was passing blank and in my procedure checking for null. now changed in vb blank to null. JMH thanks a lot |
![]() |
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Webchart Control not displaying in Firefox | richyrich | .Net Development | 1 | June 2nd, 2008 01:43 PM |