User Stu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T14:21:07Zhttp://stackoverflow.com/feeds/user/414http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1902457/all-users-path/1902544#19025440Answer by Stu for All users path?Stu2009-12-14T18:15:29Z2009-12-14T18:15:29Z<p>Note that in certain security situations that folder might not even be a real folder. There not being a CSIDL_ for it is always a strong hint that you're off the beaten path.</p>
<p>Are you sure you're not better off with _APPDATA?</p>
http://stackoverflow.com/questions/1884358/numbers-with-leading-zeroes-using-vb6/1884371#18843712Answer by Stu for Numbers with leading zeroes, using vb6Stu2009-12-10T21:59:24Z2009-12-14T09:26:40Z<pre><code>strAcct = Right("000000000000000" & strAcct, 15)
</code></pre>
<p>Note that concatenation is relatively 'expensive'. If this is just for display, rather than modifying the underlying value, consider using the <code>Format()</code> function.</p>
http://stackoverflow.com/questions/1889462/get-maximum-value-for-sql-datetime-in-net0Get maximum value for SQL DateTime in .NETStu2009-12-11T17:10:57Z2009-12-13T13:53:41Z
<p>I could swear there's a property somewhere in SqlClient to do this, but both my Google-fu and IntelliSense have abandoned me.</p>
http://stackoverflow.com/questions/1884352/format-double-with-no-decimal-point/1884381#188438111Answer by Stu for Format double with no decimal pointStu2009-12-10T22:00:23Z2009-12-10T22:00:23Z<pre><code>string.Format("{0:00000000000000}", value * 10000)
</code></pre>
http://stackoverflow.com/questions/1884339/how-is-c-inspired-by-c-more-than-by-java/1884362#18843624Answer by Stu for How is C# inspired by C++ more than by Java?Stu2009-12-10T21:58:22Z2009-12-10T21:58:22Z<p>For starters, it allows pointer manipulation (in unsafe blocks).</p>
http://stackoverflow.com/questions/1883128/what-is-the-best-database-to-use-for-a-particular-application/1883166#1883166-1Answer by Stu for What is the best database to use for a particular applicationStu2009-12-10T18:51:21Z2009-12-10T18:51:21Z<p>MySQL is best when you aren't allowed to spend any money (although for small databases, you could use SQL Server Express).</p>
<p>SQL Server is best when you're allowed to spend money.</p>
<p>Oracle is best when you're allowed to spend lots of money (and have expertise in PL/SQL).</p>
<p>Cannot comment on any others (no experience).</p>
http://stackoverflow.com/questions/1883056/stdstringstream-to-read-int-and-strings-from-a-string/1883153#18831530Answer by Stu for std::stringstream to read int and strings, from a string.Stu2009-12-10T18:48:36Z2009-12-10T18:48:36Z<p>This might be of help:</p>
<p><a href="http://oopweb.com/CPP/Documents/CPPHOWTO/Volume/C++Programming-HOWTO-7.html" rel="nofollow">http://oopweb.com/CPP/Documents/CPPHOWTO/Volume/C++Programming-HOWTO-7.html</a></p>
<p>Especially section 7.3.</p>
<p>You might be better off just <<'ing the lines in rather than the seeking and charbuffer route.</p>
http://stackoverflow.com/questions/1883071/how-do-i-find-the-data-directory-for-a-sql-server-instance/1883123#18831230Answer by Stu for How do I find the data directory for a SQL Server instance?Stu2009-12-10T18:42:59Z2009-12-10T18:42:59Z<p>Small nitpick: there is no data folder, only a <em>default</em> data folder.</p>
<p>Anyway, to find it, assuming you want to install for the first default instance:</p>
<p>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.1\Setup\SQLDataRoot</p>
<p>If there's a named instance, MSSQL.1 becomes something like MSSQL10.INSTANCENAME.</p>
http://stackoverflow.com/questions/1882708/what-is-this-naming-convention/1882741#18827410Answer by Stu for What is this naming convention?Stu2009-12-10T17:47:09Z2009-12-10T17:47:09Z<p>It is called "lobotomized notation". It was invented by R. P. McMurphy.</p>
http://stackoverflow.com/questions/1875126/any-idea-why-contains-querys-so-slow-in-sql-server-2005/1875180#18751801Answer by Stu for Any idea why contains(...) querys so slow in SQL Server 2005Stu2009-12-09T16:45:29Z2009-12-09T16:45:29Z<p>CONTAINS does a lot of extra work. There's a few things to note here:</p>
<ul>
<li>NVarChar is always faster, so do CONTAINS(column, N'text')</li>
<li>If all you want to do is see if the word is in there, compare the performance to column LIKE '%' + text + '%'.</li>
<li>Compare query plans before and after, did it go to a table scan? If so, post more so we can figure out why.</li>
<li>In ultimo, you can break up the text's individual words into a separate table so they can be indexed.</li>
</ul>
http://stackoverflow.com/questions/1870329/c-c-do-copies-of-string-literals-share-memory-in-text-section/1870358#18703586Answer by Stu for (c/c++) do copies of string literals share memory in TEXT section?Stu2009-12-08T22:32:33Z2009-12-08T22:32:33Z<p>Yes, it can. Of course, it depends on the compiler. For VC++, it's even configurable:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/s0s0asdt%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/s0s0asdt%28VS.80%29.aspx</a></p>
http://stackoverflow.com/questions/1870322/how-can-a-windows-service-be-installed-with-visual-basic-net-express-edition/1870342#18703420Answer by Stu for How can a Windows service be installed with visual basic.net express edition?Stu2009-12-08T22:31:07Z2009-12-08T22:31:07Z<p>Have a look at this thread:</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en/windowsgeneraldevelopmentissues/thread/416098a4-4183-4711-a53b-e10966c9801d" rel="nofollow">http://social.msdn.microsoft.com/Forums/en/windowsgeneraldevelopmentissues/thread/416098a4-4183-4711-a53b-e10966c9801d</a></p>
http://stackoverflow.com/questions/1869744/library-for-defragmenting-memory/1869905#18699050Answer by Stu for Library for defragmenting memoryStu2009-12-08T21:17:09Z2009-12-08T21:17:09Z<p>This article should have everything you need:</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc163528.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc163528.aspx</a>
For example: "Is Fragmentation a Problem on Your Managed Heap?"</p>
http://stackoverflow.com/questions/1869504/c-registry-read-write-from-a-non-admin-windows-service/1869529#18695290Answer by Stu for c++ registry read/write from a non-admin Windows ServiceStu2009-12-08T20:11:01Z2009-12-08T20:11:01Z<p>What's wrong with HKEY_LOCAL_MACHINE?</p>
http://stackoverflow.com/questions/1868133/additional-try-statement-in-catch-statement-code-smell/1868153#18681530Answer by Stu for Additional try statement in catch statement - code smell?Stu2009-12-08T16:34:00Z2009-12-08T16:34:00Z<p>It shouldn't be that bad. Just document clearly why you're doing it, and most DEFINITELY try catching a more specific Exception type.</p>
http://stackoverflow.com/questions/1868037/joining-int-column-to-comma-separated-list-of-ints/1868119#18681190Answer by Stu for Joining INT column to comma separated list of INTsStu2009-12-08T16:29:43Z2009-12-08T16:29:43Z<p>You need one of these (modify to do cast to ints)</p>
<p><a href="http://stackoverflow.com/questions/314824/t-sql-opposite-to-string-concatenation-how-to-split-string-into-multiple-recor">http://stackoverflow.com/questions/314824/t-sql-opposite-to-string-concatenation-how-to-split-string-into-multiple-recor</a></p>
<p>Then, you're down to</p>
<pre><code>SELECT
L.*
FROM MyLogs L (NOLOCK),
Details D (NOLOCK)
Where D.ID In fn_WhatEverYouCallYourSplitFunction(L.SearchValue, ',')
</code></pre>
<p>And no, that is not efficient. At all.</p>
http://stackoverflow.com/questions/1868056/accessing-internet-explorer-using-vb-net/1868088#18680880Answer by Stu for Accessing Internet Explorer using vb.netStu2009-12-08T16:24:23Z2009-12-08T16:24:23Z<p>You can't open them in tabs:</p>
<p><a href="http://stackoverflow.com/questions/921560/programmatically-open-a-new-tab-in-ie7">http://stackoverflow.com/questions/921560/programmatically-open-a-new-tab-in-ie7</a></p>
http://stackoverflow.com/questions/1863855/run-sql-statements-from-asp-net-application/1863873#18638732Answer by Stu for Run SQL statements from ASP.net applicationStu2009-12-08T00:52:29Z2009-12-08T00:52:29Z<p>DO NOT DO THIS. What if the user types in sp_msforeachtable 'truncate table ?'...?</p>
http://stackoverflow.com/questions/1863478/sql-server-2005-tsql-abs-doesnt-like-decimals/1863490#18634901Answer by Stu for sql server 2005 tsql abs doesn't like decimals?Stu2009-12-07T22:51:58Z2009-12-08T00:35:46Z<p>You were missing a Set on line 2. With that, I get the proper .5. I.e.:</p>
<pre><code>declare @rick as decimal(13,3)
set @rick = -.5
select bob = abs(@rick)
</code></pre>
http://stackoverflow.com/questions/1863413/do-different-web-servers-suffer-from-the-same-types-of-attacks/1863471#18634710Answer by Stu for Do different web servers suffer from the same types of attacks?Stu2009-12-07T22:48:54Z2009-12-07T22:48:54Z<p>No, yes, some are -- some are not.</p>
http://stackoverflow.com/questions/1862822/building-a-winform-app-in-vs-for-windows-7-x64-get-an-error-on-install/1862858#18628582Answer by Stu for Building a winform app in VS for windows 7 x64 - get an error on installStu2009-12-07T21:01:03Z2009-12-07T21:01:03Z<p><a href="http://download.microsoft.com/download/5/d/6/5d6eaf2b-7ddf-476b-93dc-7cf0072878e6/32-64bit%5Finstall.docx" rel="nofollow">http://download.microsoft.com/download/5/d/6/5d6eaf2b-7ddf-476b-93dc-7cf0072878e6/32-64bit%5Finstall.docx</a></p>
http://stackoverflow.com/questions/1862481/how-to-detect-windows-xp-or-windows-2000-os-to-run-a-cvi-executable/1862498#18624982Answer by Stu for How to detect Windows XP or Windows 2000 OS to run a CVI executableStu2009-12-07T19:58:47Z2009-12-07T19:58:47Z<p>Here's how to call APIs:</p>
<p><a href="http://zone.ni.com/reference/en-XX/help/371361F-01/lvexcodeconcepts/ex%5F3%5Fcall%5Fthe%5Fwin32%5Fapi/" rel="nofollow">http://zone.ni.com/reference/en-XX/help/371361F-01/lvexcodeconcepts/ex%5F3%5Fcall%5Fthe%5Fwin32%5Fapi/</a></p>
<p>Then, try GetSystemDirectory:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms724373%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms724373%28VS.85%29.aspx</a></p>
http://stackoverflow.com/questions/1848126/preventing-cast-errors/1848144#18481443Answer by Stu for Preventing cast errors Stu2009-12-04T16:36:32Z2009-12-04T16:36:32Z<p>int.TryParse():</p>
<p><a href="http://msdn.microsoft.com/en-us/library/f02979c7.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/f02979c7.aspx</a></p>
http://stackoverflow.com/questions/1843933/howto-trigger-progressbar-from-a-function-in-the-data-access-layer/1843979#18439791Answer by Stu for Howto trigger Progressbar from a function in the data access layerStu2009-12-04T00:01:47Z2009-12-04T16:14:11Z<p>Have your class raise an event with the progress, and your form update accordingly.</p>
<p>Or better yet, do it on a background thread:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx</a></p>
http://stackoverflow.com/questions/1842901/batch-file-script-to-delete-several-non-sequential-lines-from-text-files/1843063#1843063-1Answer by Stu for Batch File/Script to delete Several non sequential lines from text file(s)Stu2009-12-03T21:30:49Z2009-12-03T21:30:49Z<p>Odds are your problem is simply that your command line is too long. Try breaking the filtering up in several parts, with intermediate files in between.</p>
http://stackoverflow.com/questions/1842779/extract-strings-from-binary-files-in-vb-net/1843001#18430012Answer by Stu for Extract Strings from Binary Files in VB.NetStu2009-12-03T21:21:40Z2009-12-03T21:21:40Z<p>For reference:
<a href="http://technet.microsoft.com/en-us/sysinternals/bb897439.aspx" rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/bb897439.aspx</a></p>
http://stackoverflow.com/questions/1842502/how-to-change-every-nvarchar-column-to-varchar/1842571#18425714Answer by Stu for How to change every nvarchar column to varchar?Stu2009-12-03T20:11:59Z2009-12-03T20:11:59Z<p>Here, to get you started:</p>
<pre><code>Select 'Alter Table [' + TABLE_SCHEMA + '].[' + TABLE_NAME + '] Alter Column [' + COLUMN_NAME + '] VarChar(' + CAST(CHARACTER_MAXIMUM_LENGTH As VARCHAR) + ')'
From INFORMATION_SCHEMA.COLUMNS
WHERE DATA_TYPE = 'NVARCHAR'
</code></pre>
<p>This will generate all the needed alter statements for you (cut, paste, run).</p>
<p>Note that this does not take any constraints into account.</p>
http://stackoverflow.com/questions/1842491/how-do-i-find-the-path-of-visual-studio-in-the-registry-using-python/1842523#18425231Answer by Stu for How do I find the path of Visual Studio in the registry using Python?Stu2009-12-03T20:02:31Z2009-12-03T20:02:31Z<p>It's the x64 part.</p>
<p>Since Visual Studio is a 32-bit application, it's registry entries get shoved in the 32-bit WoW dungeon. You'll want to look in</p>
<pre><code>HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\SxS\VS7
</code></pre>
<p>Note that if you run Python as a 32-bit executable, it'll get redirected as well -- so everything "just works". It's only when you look for 32-bit information from a 64-bit application or vice versa that you run into problems.</p>
http://stackoverflow.com/questions/1827454/how-to-chain-these-constructors-c/1827469#18274693Answer by Stu for How to chain these constructors (C#)?Stu2009-12-01T16:51:05Z2009-12-01T16:51:05Z<p>There's really no win in chaining these.</p>
http://stackoverflow.com/questions/1750335/can-sql-table-have-multiple-columns-with-primary-key/1750347#17503474Answer by Stu for Can SQL table have multiple columns with primary key?Stu2009-11-17T17:12:24Z2009-11-17T17:12:24Z<p>If you mean can a primary key in SQL have multiple columns, the answer is yes.</p>
http://stackoverflow.com/questions/1889689/an-error-with-operator-precedence-net-compact-frameworkComment by Stu on An error with... operator precedence?? (.Net Compact Framework)Stu2009-12-11T17:45:34Z2009-12-11T17:45:34ZThe answer IS 19.http://stackoverflow.com/questions/1889462/get-maximum-value-for-sql-datetime-in-net/1889488#1889488Comment by Stu on Get maximum value for SQL DateTime in .NETStu2009-12-11T17:44:19Z2009-12-11T17:44:19ZWhich, for future reference, is in System.Data (which is why going to SqlClient is a dead end) :-)http://stackoverflow.com/questions/1883071/how-do-i-find-the-data-directory-for-a-sql-server-instance/1883123#1883123Comment by Stu on How do I find the data directory for a SQL Server instance?Stu2009-12-11T17:16:21Z2009-12-11T17:16:21ZSo look in Instance Names, find the instance name, look up the identifier (i.e. the value), then go back and look in the appropriate key.http://stackoverflow.com/questions/1883128/what-is-the-best-database-to-use-for-a-particular-application/1883166#1883166Comment by Stu on What is the best database to use for a particular applicationStu2009-12-11T17:14:15Z2009-12-11T17:14:15ZOnce = ones, of course.http://stackoverflow.com/questions/1883128/what-is-the-best-database-to-use-for-a-particular-application/1883166#1883166Comment by Stu on What is the best database to use for a particular applicationStu2009-12-11T17:13:43Z2009-12-11T17:13:43ZSince I literally state "Cannot comment on any others (no experience)", "best" means "best amongst the once I have experience with". I can't believe I had to write that.http://stackoverflow.com/questions/1884339/how-is-c-inspired-by-c-more-than-by-java/1884362#1884362Comment by Stu on How is C# inspired by C++ more than by Java?Stu2009-12-10T23:35:34Z2009-12-10T23:35:34Z@Mark: defining, no. Differentiating, yes. Rarely used is quite a bit different than COMPLETELY IMPOSSIBLE.http://stackoverflow.com/questions/1884352/format-double-with-no-decimal-point/1884381#1884381Comment by Stu on Format double with no decimal pointStu2009-12-10T23:33:23Z2009-12-10T23:33:23ZSo? Have you tried it?http://stackoverflow.com/questions/1883071/how-do-i-find-the-data-directory-for-a-sql-server-instance/1883123#1883123Comment by Stu on How do I find the data directory for a SQL Server instance?Stu2009-12-10T21:55:47Z2009-12-10T21:55:47ZFor default instances, it's not the name -- it's just the number. Which instance to install on is up to you! To find out which instances are installed, look at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names\SQLhttp://stackoverflow.com/questions/1883000/sql-datareader-null-valuesComment by Stu on Sql Datareader null valuesStu2009-12-10T18:34:10Z2009-12-10T18:34:10ZWhat is your question?http://stackoverflow.com/questions/1868056/accessing-internet-explorer-using-vb-net/1868088#1868088Comment by Stu on Accessing Internet Explorer using vb.netStu2009-12-10T17:23:24Z2009-12-10T17:23:24ZMicrosoft has decided that applications don't get to decide, period. They might add this in IE9 but don't hold your breath. The WinForms webbrowser control allows you to put an instance of IE on your forms.http://stackoverflow.com/questions/1875126/any-idea-why-contains-querys-so-slow-in-sql-server-2005Comment by Stu on Any idea why contains(...) querys so slow in SQL Server 2005Stu2009-12-09T16:39:12Z2009-12-09T16:39:12ZWhat type is the column?http://stackoverflow.com/questions/1869527/create-class-from-databaseComment by Stu on Create class from databaseStu2009-12-08T20:12:01Z2009-12-08T20:12:01ZUmmmmmm.... what product?http://stackoverflow.com/questions/1868037/joining-int-column-to-comma-separated-list-of-ints/1868095#1868095Comment by Stu on Joining INT column to comma separated list of INTsStu2009-12-08T16:28:30Z2009-12-08T16:28:30ZNot really. Say D.ID is 1, and L.SearchValue is "34199"?http://stackoverflow.com/questions/1863478/sql-server-2005-tsql-abs-doesnt-like-decimals/1863490#1863490Comment by Stu on sql server 2005 tsql abs doesn't like decimals?Stu2009-12-08T16:16:37Z2009-12-08T16:16:37ZNo. Without a SET (or SELECT, that would work as well in this case), the second line isn't a valid SQL statement -- period.http://stackoverflow.com/questions/1862822/building-a-winform-app-in-vs-for-windows-7-x64-get-an-error-on-install/1862858#1862858Comment by Stu on Building a winform app in VS for windows 7 x64 - get an error on installStu2009-12-08T16:15:08Z2009-12-08T16:15:08ZNot that I know of. I've never seen the error myself, I just looked around and that was the only applicable information I found.