Click here to Skip to main content
15,884,388 members
Home / Discussions / C#
   

C#

 
GeneralRe: unable to bind to TextBox.Text Pin
Pete O'Hanlon17-Jan-12 4:31
mvePete O'Hanlon17-Jan-12 4:31 
Questionbeginer in c# Pin
Member 857363216-Jan-12 23:05
Member 857363216-Jan-12 23:05 
AnswerRe: beginer in c# Pin
V.16-Jan-12 23:08
professionalV.16-Jan-12 23:08 
AnswerRe: beginer in c# Pin
Richard MacCutchan16-Jan-12 23:10
mveRichard MacCutchan16-Jan-12 23:10 
AnswerRe: beginer in c# Pin
thatraja16-Jan-12 23:11
professionalthatraja16-Jan-12 23:11 
QuestionHow To Track [ Inserted/Updated ] Records Using ADO.NET Pin
AmbiguousName16-Jan-12 21:17
AmbiguousName16-Jan-12 21:17 
AnswerRe: How To Track [ Inserted/Updated ] Records Using ADO.NET Pin
Mycroft Holmes16-Jan-12 21:54
professionalMycroft Holmes16-Jan-12 21:54 
AnswerRe: How To Track [ Inserted/Updated ] Records Using ADO.NET Pin
BobJanova16-Jan-12 22:42
BobJanova16-Jan-12 22:42 
For a single row insert you can do a multipart query, like
update MyTable insert (a, b, c) values (1, 'Two', 2012-01-03); select SCOPE_IDENTITY();

... and then ExecuteScalar will return the key value added for that row.

There is a way to get the values back from a bulk insert but I can't remember what it is (I was too lazy to write the logic behind a bulk insert/update save procedure and just do a one line query for each item to be saved, considering there were only 50 or so at most in the application this was for).

Edit: SCOPE_IDENTITY is the SQL Server version, if you're using another database then you'll have to use something else, but I think they all have an equivalent query you can run.
QuestionC# Limit number of characters user can enter - Console Application Pin
Deborah Palmer McCain16-Jan-12 12:08
Deborah Palmer McCain16-Jan-12 12:08 
AnswerRe: C# Limit number of characters user can enter - Console Application Pin
Wayne Gaylard16-Jan-12 18:46
professionalWayne Gaylard16-Jan-12 18:46 
GeneralRe: C# Limit number of characters user can enter - Console Application Pin
Deborah Palmer McCain16-Jan-12 19:04
Deborah Palmer McCain16-Jan-12 19:04 
GeneralRe: C# Limit number of characters user can enter - Console Application Pin
Wayne Gaylard16-Jan-12 19:14
professionalWayne Gaylard16-Jan-12 19:14 
AnswerRe: C# Limit number of characters user can enter - Console Application Pin
BobJanova16-Jan-12 22:39
BobJanova16-Jan-12 22:39 
GeneralRe: C# Limit number of characters user can enter - Console Application Pin
Deborah Palmer McCain17-Jan-12 4:53
Deborah Palmer McCain17-Jan-12 4:53 
Questionhow to paint lines on combo-box in difference colors ? Pin
goldsoft16-Jan-12 0:25
goldsoft16-Jan-12 0:25 
AnswerRe: how to paint lines on combo-box in difference colors ? Pin
Pete O'Hanlon16-Jan-12 0:29
mvePete O'Hanlon16-Jan-12 0:29 
GeneralRe: how to paint lines on combo-box in difference colors ? Pin
goldsoft16-Jan-12 0:38
goldsoft16-Jan-12 0:38 
AnswerRe: how to paint lines on combo-box in difference colors ? Pin
Luc Pattyn16-Jan-12 0:47
sitebuilderLuc Pattyn16-Jan-12 0:47 
GeneralRe: how to paint lines on combo-box in difference colors ? Pin
BobJanova16-Jan-12 3:43
BobJanova16-Jan-12 3:43 
Questionhelp Pin
rudra12415-Jan-12 21:03
rudra12415-Jan-12 21:03 
AnswerRe: help Pin
Mycroft Holmes15-Jan-12 21:08
professionalMycroft Holmes15-Jan-12 21:08 
AnswerRe: help Pin
OriginalGriff15-Jan-12 21:26
mveOriginalGriff15-Jan-12 21:26 
GeneralRe: help Pin
Luc Pattyn15-Jan-12 21:38
sitebuilderLuc Pattyn15-Jan-12 21:38 
AnswerRe: help Pin
thatraja16-Jan-12 2:13
professionalthatraja16-Jan-12 2:13 
QuestionWindows service Windows XP and Windows 7 Pin
Mc_Topaz15-Jan-12 20:58
Mc_Topaz15-Jan-12 20:58 

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.