Click here to Skip to main content
15,915,508 members
Home / Discussions / C#
   

C#

 
GeneralRe: Delete selected attribute in HTML Pin
trinm198719-Jan-09 5:37
trinm198719-Jan-09 5:37 
GeneralRe: Delete selected attribute in HTML Pin
Parwej Ahamad19-Jan-09 5:39
professionalParwej Ahamad19-Jan-09 5:39 
GeneralRe: Delete selected attribute in HTML Pin
trinm198719-Jan-09 5:44
trinm198719-Jan-09 5:44 
QuestionReturn Multiple Rows of the same Student Id (PK) Pin
ferronrsmith19-Jan-09 4:28
ferronrsmith19-Jan-09 4:28 
AnswerRe: Return Multiple Rows of the same Student Id (PK) Pin
Christian Graus19-Jan-09 4:33
protectorChristian Graus19-Jan-09 4:33 
GeneralRe: Return Multiple Rows of the same Student Id (PK) Pin
ferronrsmith19-Jan-09 4:36
ferronrsmith19-Jan-09 4:36 
AnswerRe: Return Multiple Rows of the same Student Id (PK) Pin
Herman<T>.Instance19-Jan-09 4:43
Herman<T>.Instance19-Jan-09 4:43 
GeneralRe: Return Multiple Rows of the same Student Id (PK) Pin
ferronrsmith19-Jan-09 6:17
ferronrsmith19-Jan-09 6:17 
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[sp_getTransfer] (@TRANSFER_ID int)  AS
-- Declare variables
DECLARE @rc Int
SELECT TransferDetails.IMID,TransferDetails.[DESCRIPTION], TransferDetails.AMOUNT,TRANSFERS.AMOUNT_TRANSFER, TRANSFERS.CONSIDERATION, TRANSFERS.TRANSFER_ID, 
TRANSFERS.[DATE], TransferDetails.CURR,  CUSTOMERS.CMF_NAME_1, CUSTOMERS.CMF_NAME_2, 
CUSTOMERS.CMF_ADDR_1, CUSTOMERS.CMF_ADDR_2, CUSTOMERS.CMF_ADDR_3, CUSTOMERS.CMF_ADDR_4, 
CUSTOMERS.CMF_POSTAL_CODE, TRANSFERS.Cons_Curr
   FROM 
("FGBInvestment"."dbo"."TransferDetails" "TransferDetails" INNER JOIN "FGBInvestment"."dbo"."TRANSFERS" "TRANSFERS" ON "TransferDetails"."TRANSFER_ID"="TRANSFERS"."TRANSFER_ID") INNER JOIN "FGBInvestment"."dbo"."CUSTOMERS" "CUSTOMERS" ON "TRANSFERS"."CUSTODIAN"="CUSTOMERS"."CMF_ACCOUNT"
   WHERE "TRANSFERS"."TRANSFER_ID"= @TRANSFER_ID


Ferron

AnswerRe: Return Multiple Rows of the same Student Id (PK) Pin
Wendelius19-Jan-09 7:49
mentorWendelius19-Jan-09 7:49 
GeneralRe: Return Multiple Rows of the same Student Id (PK) Pin
ferronrsmith19-Jan-09 9:08
ferronrsmith19-Jan-09 9:08 
GeneralRe: Return Multiple Rows of the same Student Id (PK) Pin
Wendelius19-Jan-09 9:15
mentorWendelius19-Jan-09 9:15 
GeneralRe: Return Multiple Rows of the same Student Id (PK) Pin
ferronrsmith20-Jan-09 14:37
ferronrsmith20-Jan-09 14:37 
GeneralRe: Return Multiple Rows of the same Student Id (PK) [forum redirect] Pin
Wendelius20-Jan-09 17:58
mentorWendelius20-Jan-09 17:58 
QuestionPrint Multiple instances of the same form Pin
ferronrsmith19-Jan-09 4:16
ferronrsmith19-Jan-09 4:16 
AnswerRe: Print Multiple instances of the same form Pin
Christian Graus19-Jan-09 4:34
protectorChristian Graus19-Jan-09 4:34 
AnswerRe: Print Multiple instances of the same form Pin
#realJSOP19-Jan-09 4:41
professional#realJSOP19-Jan-09 4:41 
GeneralRe: Print Multiple instances of the same form Pin
ferronrsmith19-Jan-09 9:10
ferronrsmith19-Jan-09 9:10 
GeneralRe: Print Multiple instances of the same form Pin
#realJSOP19-Jan-09 9:16
professional#realJSOP19-Jan-09 9:16 
QuestionProblem with com creation in C# Pin
Arish rivlin19-Jan-09 3:00
Arish rivlin19-Jan-09 3:00 
AnswerRe: Problem with com creation in C# Pin
Not Active19-Jan-09 3:20
mentorNot Active19-Jan-09 3:20 
QuestionHow to get the list of Href Links From HTML Pin
wasimsharp19-Jan-09 2:39
wasimsharp19-Jan-09 2:39 
AnswerRe: How to get the list of Href Links From HTML Pin
Paddy Boyd19-Jan-09 2:42
Paddy Boyd19-Jan-09 2:42 
AnswerRe: How to get the list of Href Links From HTML Pin
J a a n s19-Jan-09 3:52
professionalJ a a n s19-Jan-09 3:52 
QuestionCultureInfo and DateTime settings Pin
Rick van Woudenberg19-Jan-09 2:33
Rick van Woudenberg19-Jan-09 2:33 
AnswerRe: CultureInfo and DateTime settings Pin
Arish rivlin19-Jan-09 3:05
Arish rivlin19-Jan-09 3:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.