Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
Ranked #4K
~18.9K People Reached
Favorite Tags

2 Posted Topics

Member Avatar for Paladine

Really good job! Here is an idea for a little improvement in the Try block: (Just to keep the coding happy ;) ) Try If MyConn.State = ConnectionState.Closed Then MyConn.Open() End If Return MyCmd.ExecuteScalar() Catch ex As Exception lblMessage.Text = "Error Connecting to Database!" Finally MyConn.Close() End Try

Member Avatar for Anita_1
2
19K
Member Avatar for gicio

It has nothing to do with the text size. The difference is that the string value is [B]immutable.[/B] Methods that appear to modify a string actually return a [B]new string [/B] containing the modification. Here is a simple example: [QUOTE] string s1 = "World"; string s2 = s1.Insert(0, "Hello "); …

Member Avatar for jujubee
0
397

The End.