Click here to Skip to main content
15,886,963 members
Home / Discussions / C#
   

C#

 
GeneralRe: Asp.net Website Pin
Abhinav S15-Oct-10 5:12
Abhinav S15-Oct-10 5:12 
GeneralRe: Asp.net Website Pin
MKC00216-Oct-10 3:16
MKC00216-Oct-10 3:16 
GeneralRe: Asp.net Website Pin
Dave Kreskowiak16-Oct-10 7:11
mveDave Kreskowiak16-Oct-10 7:11 
AnswerRe: Asp.net Website Pin
Yusuf15-Oct-10 4:50
Yusuf15-Oct-10 4:50 
GeneralRe: Asp.net Website Pin
MKC00216-Oct-10 3:13
MKC00216-Oct-10 3:13 
QuestionCommunication program with the lan to devices (for example plc) Pin
mory_26015-Oct-10 2:47
mory_26015-Oct-10 2:47 
AnswerRe: Communication program with the lan to devices (for example plc) Pin
Sauro Viti15-Oct-10 2:59
professionalSauro Viti15-Oct-10 2:59 
Questiontextbox change event Pin
Erdinc2715-Oct-10 2:07
Erdinc2715-Oct-10 2:07 
hey friends..i display only one column in my datagrid and i want to make a search in it and i want to make that search by using stored procedure and i wrote a procedure for it..like below
ALTER procedure sp_SearchFirm
(
@aranan_firma nvarchar(50)
)
as
Begin
Select firma_adi From Firmalar Where firma_adi=@aranan_firma
End

and i have a DataAccessLayer class..in that class i wrote a method to work with that proc.like below
public DataSet SearchFirms(string aranan_firma)
{
try
{
cmd = new SqlCommand("sp_SearchFirm", con);
cmd.CommandType = System.Data.CommandType.StoredProcedure;
cmd.Parameters.Add("@aranan_firma", System.Data.SqlDbType.NVarChar).Value = aranan_firma;
con.Open();


}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
con.Close();
}
}
i try to return a DataSet to make it as source of datagrid i have in my main form..as u see i cant complete the method but the problem is that i didnt work with multilayer programming before and i cant find the right logic to make that search event and i dont know if i am on the right way or should i change my method i dont know.i will be pleased with any of your suggestion and idea..
AnswerRe: textbox change event Pin
Not Active15-Oct-10 2:15
mentorNot Active15-Oct-10 2:15 
GeneralRe: textbox change event Pin
Erdinc2715-Oct-10 2:28
Erdinc2715-Oct-10 2:28 
GeneralRe: textbox change event Pin
Not Active15-Oct-10 2:32
mentorNot Active15-Oct-10 2:32 
GeneralRe: textbox change event Pin
Erdinc2715-Oct-10 2:38
Erdinc2715-Oct-10 2:38 
QuestionMessage Removed Pin
14-Oct-10 23:18
Pawan Kiran14-Oct-10 23:18 
AnswerRe: How to Prompt a Message When Cell Value is changed and Leaves CurrentRow Without Saving? Pin
Henry Minute15-Oct-10 0:32
Henry Minute15-Oct-10 0:32 
Questionhow to draw a rectangle on the picture box Pin
ash_ng14-Oct-10 22:49
ash_ng14-Oct-10 22:49 
AnswerRe: how to draw a rectangle on the picture box Pin
Henry Minute14-Oct-10 23:19
Henry Minute14-Oct-10 23:19 
GeneralRe: how to draw a rectangle on the picture box Pin
ash_ng14-Oct-10 23:30
ash_ng14-Oct-10 23:30 
GeneralRe: how to draw a rectangle on the picture box Pin
Henry Minute14-Oct-10 23:44
Henry Minute14-Oct-10 23:44 
AnswerRe: how to draw a rectangle on the picture box Pin
Pete O'Hanlon14-Oct-10 23:41
mvePete O'Hanlon14-Oct-10 23:41 
QuestionForm loses focus [modified] Pin
electriac14-Oct-10 13:05
electriac14-Oct-10 13:05 
AnswerRe: Form loses focus Pin
fjdiewornncalwe14-Oct-10 13:17
professionalfjdiewornncalwe14-Oct-10 13:17 
GeneralRe: Form loses focus Pin
electriac14-Oct-10 13:24
electriac14-Oct-10 13:24 
GeneralRe: Form loses focus Pin
Nish Nishant14-Oct-10 13:33
sitebuilderNish Nishant14-Oct-10 13:33 
GeneralRe: Form loses focus Pin
fjdiewornncalwe14-Oct-10 13:35
professionalfjdiewornncalwe14-Oct-10 13:35 
GeneralRe: Form loses focus Pin
electriac14-Oct-10 14:00
electriac14-Oct-10 14:00 

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.