Click here to Skip to main content
15,890,186 members
Home / Discussions / C#
   

C#

 
AnswerRe: Break Recursive Function Pin
Nicholas Butler9-Jan-10 5:12
sitebuilderNicholas Butler9-Jan-10 5:12 
AnswerRe: Break Recursive Function Pin
Roger Wright9-Jan-10 21:31
professionalRoger Wright9-Jan-10 21:31 
GeneralRe: Break Recursive Function Pin
dataminers9-Jan-10 22:08
dataminers9-Jan-10 22:08 
QuestionLooking for pointers... Pin
JollyMansArt9-Jan-10 4:12
JollyMansArt9-Jan-10 4:12 
AnswerRe: Looking for pointers... Pin
Nicholas Butler9-Jan-10 5:01
sitebuilderNicholas Butler9-Jan-10 5:01 
QuestionReset sql column identity value from c# Pin
teknolog1239-Jan-10 2:14
teknolog1239-Jan-10 2:14 
AnswerRe: Reset sql column identity value from c# Pin
Eddy Vluggen9-Jan-10 2:27
professionalEddy Vluggen9-Jan-10 2:27 
GeneralRe: Reset sql column identity value from c# Pin
teknolog1239-Jan-10 3:14
teknolog1239-Jan-10 3:14 
thanks where and how can I put that code below?

SqlConnection sqlBaglanti = new SqlConnection();
SqlDataAdapter sqlAdaptor;
SqlCommandBuilder sqlKomut;
DataTable dtTablo = new DataTable();

private void masaCubuk_MouseDown(object sender, MouseEventArgs e)
{
sqlBaglanti.ConnectionString = @"Data Source=SOUNDMAXP\SQLEXPRESS;
Initial Catalog=Kafe;Integrated Security=SSPI;";
sqlAdaptor = new SqlDataAdapter("Select * From dbo.Masa1", sqlBaglanti);
sqlKomut = new SqlCommandBuilder(sqlAdaptor);
sqlAdaptor.Fill(dtTablo);

for (int i = 0; i < dtTablo.Rows.Count; i++)
{
dtTablo.Rows[i].Delete();
}
sqlAdaptor.Update(dtTablo);
sqlBaglanti.Close();
sqlBaglanti.Dispose();
}
GeneralRe: Reset sql column identity value from c# Pin
Eddy Vluggen9-Jan-10 3:52
professionalEddy Vluggen9-Jan-10 3:52 
QuestionPrint Microsoft Report Pin
Thaer Hamael9-Jan-10 1:05
Thaer Hamael9-Jan-10 1:05 
AnswerRe: Print Microsoft Report Pin
OriginalGriff9-Jan-10 2:09
mveOriginalGriff9-Jan-10 2:09 
QuestionC# Pin
Suniel159-Jan-10 0:25
Suniel159-Jan-10 0:25 
AnswerRe: C# Pin
DaveyM699-Jan-10 0:58
professionalDaveyM699-Jan-10 0:58 
AnswerRe: C# Pin
OriginalGriff9-Jan-10 1:01
mveOriginalGriff9-Jan-10 1:01 
QuestionWorking with Crystal Reports and Forms Pin
sorooshk8-Jan-10 21:40
sorooshk8-Jan-10 21:40 
AnswerRe: Working with Crystal Reports and Forms Pin
Saksida Bojan8-Jan-10 22:03
Saksida Bojan8-Jan-10 22:03 
GeneralRe: Working with Crystal Reports and Forms Pin
sorooshk8-Jan-10 22:16
sorooshk8-Jan-10 22:16 
AnswerRe: Working with Crystal Reports and Forms Pin
Said Ali Jalali9-Jan-10 2:34
Said Ali Jalali9-Jan-10 2:34 
GeneralRe: Working with Crystal Reports and Forms Pin
Saksida Bojan9-Jan-10 3:11
Saksida Bojan9-Jan-10 3:11 
QuestionHow to retrieve username from event Log in C#? Pin
Sunil G8-Jan-10 19:10
Sunil G8-Jan-10 19:10 
AnswerRe: How to retrieve username from event Log in C#? Pin
Eddy Vluggen9-Jan-10 1:20
professionalEddy Vluggen9-Jan-10 1:20 
QuestionForm With Shadow Pin
roshihans8-Jan-10 16:35
roshihans8-Jan-10 16:35 
AnswerRe: Form With Shadow Pin
Saksida Bojan8-Jan-10 19:06
Saksida Bojan8-Jan-10 19:06 
GeneralRe: Form With Shadow Pin
roshihans8-Jan-10 19:59
roshihans8-Jan-10 19:59 
GeneralRe: Form With Shadow Pin
Saksida Bojan8-Jan-10 20:21
Saksida Bojan8-Jan-10 20:21 

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.