Click here to Skip to main content
15,922,166 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: hello isidor7,Thankx for reply butttttttttt..... . Pin
isidor720-May-07 23:34
isidor720-May-07 23:34 
GeneralRe: hello isidor7,Thankx for reply butttttttttt..... . Pin
koolprasad200321-May-07 2:26
professionalkoolprasad200321-May-07 2:26 
QuestionWin Socket Pin
Socheat.Net20-May-07 17:11
Socheat.Net20-May-07 17:11 
AnswerRe: Win Socket Pin
Sathesh Sakthivel20-May-07 17:20
Sathesh Sakthivel20-May-07 17:20 
GeneralRe: Win Socket Pin
Socheat.Net20-May-07 17:31
Socheat.Net20-May-07 17:31 
GeneralRe: Win Socket Pin
Sathesh Sakthivel20-May-07 17:37
Sathesh Sakthivel20-May-07 17:37 
GeneralRe: Win Socket Pin
Socheat.Net20-May-07 17:54
Socheat.Net20-May-07 17:54 
GeneralRe: Win Socket Pin
Sathesh Sakthivel20-May-07 17:56
Sathesh Sakthivel20-May-07 17:56 
GeneralRe: Win Socket Pin
Socheat.Net20-May-07 18:36
Socheat.Net20-May-07 18:36 
GeneralRe: Win Socket Pin
Sathesh Sakthivel20-May-07 23:20
Sathesh Sakthivel20-May-07 23:20 
GeneralRe: Win Socket Pin
Socheat.Net20-May-07 23:31
Socheat.Net20-May-07 23:31 
GeneralRe: Win Socket Pin
Sathesh Sakthivel21-May-07 2:56
Sathesh Sakthivel21-May-07 2:56 
GeneralRe: Win Socket Pin
Socheat.Net21-May-07 15:36
Socheat.Net21-May-07 15:36 
GeneralRe: Win Socket Pin
Sathesh Sakthivel21-May-07 18:48
Sathesh Sakthivel21-May-07 18:48 
GeneralRe: Win Socket Pin
Socheat.Net21-May-07 21:13
Socheat.Net21-May-07 21:13 
QuestionPath over 260 characters Pin
al96820-May-07 15:12
al96820-May-07 15:12 
AnswerRe: Path over 260 characters Pin
Sathesh Sakthivel20-May-07 15:35
Sathesh Sakthivel20-May-07 15:35 
AnswerRe: Path over 260 characters Pin
Dave Kreskowiak20-May-07 18:05
mveDave Kreskowiak20-May-07 18:05 
QuestionNonlinear Least Squares Curve Fitting Pin
not_starman20-May-07 12:37
not_starman20-May-07 12:37 
AnswerRe: Nonlinear Least Squares Curve Fitting Pin
SamM22-May-07 4:20
SamM22-May-07 4:20 
QuestionCustom Controls With Collections Pin
The ANZAC20-May-07 11:18
The ANZAC20-May-07 11:18 
Questionlistbox saving problem in vb.net Pin
getknr20-May-07 3:51
getknr20-May-07 3:51 
AnswerRe: listbox saving problem in vb.net Pin
Dave Kreskowiak20-May-07 4:29
mveDave Kreskowiak20-May-07 4:29 
There's several problems with this. You're creating a new SqlConnection and SqlCommand object, complete with parameters, on every line in your list. Don't. Create all the stuff first, outside the loop, then open the connection, reuse the command and parameters inside the loop, just filling in the parameters and calling .ExecuteNonQuery, NOT ExecuteReader! Close the connection after the Next in your loop and it's done.


A guide to posting questions on CodeProject[^]

Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007


Questionimplementing thread Pin
balakpn19-May-07 21:52
balakpn19-May-07 21:52 
AnswerRe: implementing thread Pin
Joseph Guadagno20-May-07 4:10
Joseph Guadagno20-May-07 4:10 

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.