Click here to Skip to main content
15,897,273 members

Comments by Vamshi Krishna Naidu (Top 7 by date)

Vamshi Krishna Naidu 21-Apr-15 13:58pm View    
Deleted
You will get Data Inserted Successfully before you wrote that in Finally. Put a Break Point in Catch and paste ex.message here.

Or Other option, Remove Finally, Change the catch to
Console.WriteLine(ex.Message + "\\r\\n" + ex.InnerException );
Vamshi Krishna Naidu 26-Mar-15 11:41am View    
+5 Sergey.
Vamshi Krishna Naidu 26-Mar-15 11:40am View    
When you have 1 text box to load data from database, Why are you using Foreach row? So when you are expecting Multiple Results, How can you use single textbox to bind everytime?

I can ask you 100 More questions, so please explain yourself what are you trying to bind result set to?
Vamshi Krishna Naidu 20-Mar-15 13:57pm View    
@SA I Don't think the question here is Do I need to use VB6.
Vamshi Krishna Naidu 19-Mar-15 16:18pm View    
Whoa My Friend, TryParse Requires two arguments. Not One. See Below.

int number;
bool result = Int32.TryParse(value, out number);

value is your string change result to whatever format you want.(In this case int32)