Click here to Skip to main content
15,891,204 members
Home / Discussions / C#
   

C#

 
AnswerRe: Circular dependency in dlls Pin
_Maxxx_15-Jul-10 18:05
professional_Maxxx_15-Jul-10 18:05 
GeneralRe: Circular dependency in dlls Pin
Blubbo19-Jul-10 2:26
Blubbo19-Jul-10 2:26 
QuestionError when using stored procedure in C#.net Pin
Dhyanga15-Jul-10 5:08
Dhyanga15-Jul-10 5:08 
AnswerRe: Error when using stored procedure in C#.net Pin
T M Gray15-Jul-10 6:25
T M Gray15-Jul-10 6:25 
GeneralRe: Error when using stored procedure in C#.net Pin
Dhyanga15-Jul-10 6:30
Dhyanga15-Jul-10 6:30 
AnswerRe: Error when using stored procedure in C#.net Pin
GgAben21-Jul-10 2:06
GgAben21-Jul-10 2:06 
Questionhi can any one suggest me quickest(optimized) way to call an stored procedure from my c# code for every row of data table (rows can be for example 20000)? what is "optimized" ? Pin
sohailch4015-Jul-10 3:45
sohailch4015-Jul-10 3:45 
AnswerRe: hi can any one suggest me quickest(optimized) way to call an stored procedure from my c# code for every row of data table (rows can be for example 20000)? what is "optimized" ? Pin
Ennis Ray Lynch, Jr.15-Jul-10 3:55
Ennis Ray Lynch, Jr.15-Jul-10 3:55 
SqlCommand command = new SqlCommand();
command.Connection = ...//set to your connection 
command.CommandText = "sp_name";
command.Paramaters.Add("@paramName, System.Data.SqlTypes.SqlDecimal).Value = 0m; //use correct type param
using(SqlDataReader reader = command.ExecuteReader()){
    while(reader.Read()){
        //The reader contains the columns of each record
    }
}//end using


Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS.

A man said to the universe:
"Sir I exist!"
"However," replied the universe,
"The fact has not created in me

QuestionDictionary <-> JSON Pin
softwarejaeger15-Jul-10 1:57
softwarejaeger15-Jul-10 1:57 
AnswerRe: Dictionary JSON Pin
Peace ON15-Jul-10 2:12
Peace ON15-Jul-10 2:12 
Questionmove items up and down in listbox Pin
NarVish15-Jul-10 1:29
NarVish15-Jul-10 1:29 
AnswerRe: move items up and down in listbox Pin
Peace ON15-Jul-10 1:45
Peace ON15-Jul-10 1:45 
GeneralRe: move items up and down in listbox Pin
NarVish15-Jul-10 3:37
NarVish15-Jul-10 3:37 
QuestionQuestion on reflection Pin
Dewald14-Jul-10 23:30
Dewald14-Jul-10 23:30 
AnswerRe: Question on reflection Pin
Arun Jacob14-Jul-10 23:36
Arun Jacob14-Jul-10 23:36 
GeneralRe: Question on reflection Pin
Dewald15-Jul-10 0:57
Dewald15-Jul-10 0:57 
AnswerRe: Question on reflection [modified] Pin
PIEBALDconsult15-Jul-10 3:25
mvePIEBALDconsult15-Jul-10 3:25 
GeneralRe: Question on reflection Pin
Dewald15-Jul-10 4:19
Dewald15-Jul-10 4:19 
Questionproxy problem Pin
mstfync14-Jul-10 21:02
mstfync14-Jul-10 21:02 
AnswerRe: proxy problem Pin
Pete O'Hanlon14-Jul-10 21:49
mvePete O'Hanlon14-Jul-10 21:49 
QuestionAccessing mdiParent form menu from mdiChild form via code [solved] Pin
AussieLew14-Jul-10 19:36
AussieLew14-Jul-10 19:36 
AnswerRe: Accessing mdiParent form menu from mdiChild form via code Pin
Peace ON14-Jul-10 19:48
Peace ON14-Jul-10 19:48 
GeneralRe: Accessing mdiParent form menu from mdiChild form via code Pin
AussieLew14-Jul-10 22:09
AussieLew14-Jul-10 22:09 
AnswerRe: Accessing mdiParent form menu from mdiChild form via code Pin
Peace ON14-Jul-10 22:49
Peace ON14-Jul-10 22:49 
GeneralRe: Accessing mdiParent form menu from mdiChild form via code Pin
Dave Kreskowiak15-Jul-10 2:02
mveDave Kreskowiak15-Jul-10 2:02 

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.