Starting the Debugger[^] Andy Gaskell, MCSD MCDBA
AndyG
Posts
-
SQL Debugging -
Is there a Slashdot that's not so anti-MS?I like Active Windows and another that I don't read as much is WinInfo Andy Gaskell, MCSD MCDBA
-
Randomly selecting a row from a databaseHere are some articles about "Randomness" in SQL, however this article looks the closest to what you're trying to achieve. Andy Gaskell, MCSD MCDBA
-
Substring searching in SQLYou might want to try setting up Full Text Search. Other than that, if you're searching for "John Doe", wouldn't you want the like to look like this: LIKE '%John Doe%' Andy Gaskell, MCSD MCDBA
-
Default Value?I think you'd have to do this
private void foo(int x, int y) { . . } private void foo(int x) { foo(x, 10); }
Andy Gaskell, MCSD MCDBA -
Menu and separatorneatSeparatorMenuItem.Text = "-"; Andy Gaskell, MCSD MCDBA
-
static variableI don't really care either way, but the with statement is addressed here. Andy Gaskell, MCSD MCDBA
-
Trim() doesn't work!!I think what you're looking for is Replace.
String str = this.textBox1.Text; String newStr = str.Replace(" ", ""); MessageBox.Show(newStr);
Andy Gaskell, MCSD MCDBA -
WebBrowser in .NET ApplicationsIts been a known bug for 6 months now so who knows if it'll ever get fixed. Andy Gaskell, MCSD MCDBA
-
Windows XP hates Visual Interdev 6.0 and SQL Server 2000?Make sure you configured Front Page Server Extensions for IIS. And yes, you can install SQL Server on XP, but you'll have to use SQL Server Developer Edition. Andy Gaskell, MCSD MCDBA
-
Stop helping me, Microsoft !!!First issue: Go to Tools->Options then click Text Editor, then click HTML/XML, then click HTML specific and uncheck the Close Tag check box. You might want to do the same for XML specific if you're editing config files. Second issue (not tested, but I have a hunch that it'll work): Go to Tools->Options then click Text Editor, then click HTML/XML, then click Format. Take a look at the Apply Automatic Formatting section. Andy Gaskell, MCSD MCDBA
-
Running Page_Load EventThis might help. Andy Gaskell, MCSD MCDBA
-
Running Page_Load Eventtry this:
if(!IsPostBack) { //Populate TextBoxes }
Andy Gaskell, MCSD MCDBA -
Sensitive data in database tablesYou might be interested in this book. Andy Gaskell, MCSD MCDBA
-
VBSCRIPT !!!I guess I'm not sure what your question is... Is Chr(34) what you're looking for? Andy Gaskell, MCSD MCDBA
-
SQL Server IPIts ugly (I'd go so far as to say "pug fugly"), and you'd have to parse the results...
use master go exec xp_cmdshell 'ipconfig'
Andy Gaskell, MCSD MCDBA -
Zip and Unziphttp://www.icsharpcode.net/OpenSource/NZipLib/default.asp Andy Gaskell, MCSD MCDBA
-
I joined Team CodeProjectIf I remember correctly the process priority is set to low. Andy Gaskell, MCSD MCDBA
-
"Default" attribute to button ?The behavior you are looking for is the AcceptButton property of a Windows Form class. Example: this.AcceptButton = this.myButton; Andy Gaskell, MCSD MCDBA
-
Writing Stored ProceduresI use Query Analyzer and like it a lot better than Enterprise Manager. Andy Gaskell, MCSD MCDBA