blah blah blah is here! blah blah » Close

1
votes
2 answers

Initializing SQLConnection string

I am using VS2008 to right an app that will query an SQL database and return certain values from the tables. Now, I want to make my connection string a class level variable because I will be calling on the connection multiple times througho ...

0
votes
1 answers

Test an array for numeric values

I have the following code [code] if (Int32.TryParse(this.txtAssemblyNo.Text.Trim(), out trap)) { while (txtAssemblyNo.Text.Trim().Length < this.txtAssemblyNo.MaxLength) { ...

1
votes
1 answers

End of File, Beginning of File loop

I need to create a loop that needs to return a list of stores, and I'm having trouble starting the loop. I have this code piece so far, but I know the syntax is wrong because the code was originally written in VB. Here is the code: [code ...

Feedback