I just have to say something about this. Don't forget to add comments to your programs! I know it can be a little time consuming to add comments to your programs but it will save you tons of time down the road. Just think of how much time you would have saved if you ad [...]
These are just a quick list of things that I have noticed during imports from Microsoft SQL 2000 to Microsoft SQL 2008 R2 that, if you are doing this, you should watch for. This is probably not the complete list of issues, but one's that I have noticed so far: Stored Procedures do not get [...]
If you need to parse just a few characters from a string, you can easily do that in the code-behind like this: MyVariable = VariableName.Substring(1,3) This gets the first through the third character in the string and places it in MyVariable. Note that the starting position of the variable is 0 so the true first [...]