User Stu - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T14:21:07Z http://stackoverflow.com/feeds/user/414 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1902457/all-users-path/1902544#1902544 0 Answer by Stu for All users path? Stu 2009-12-14T18:15:29Z 2009-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#1884371 2 Answer by Stu for Numbers with leading zeroes, using vb6 Stu 2009-12-10T21:59:24Z 2009-12-14T09:26:40Z <pre><code>strAcct = Right("000000000000000" &amp; 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-net 0 Get maximum value for SQL DateTime in .NET Stu 2009-12-11T17:10:57Z 2009-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#1884381 11 Answer by Stu for Format double with no decimal point Stu 2009-12-10T22:00:23Z 2009-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#1884362 4 Answer by Stu for How is C# inspired by C++ more than by Java? Stu 2009-12-10T21:58:22Z 2009-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 -1 Answer by Stu for What is the best database to use for a particular application Stu 2009-12-10T18:51:21Z 2009-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#1883153 0 Answer by Stu for std::stringstream to read int and strings, from a string. Stu 2009-12-10T18:48:36Z 2009-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 &lt;&lt;'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#1883123 0 Answer by Stu for How do I find the data directory for a SQL Server instance? Stu 2009-12-10T18:42:59Z 2009-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#1882741 0 Answer by Stu for What is this naming convention? Stu 2009-12-10T17:47:09Z 2009-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#1875180 1 Answer by Stu for Any idea why contains(...) querys so slow in SQL Server 2005 Stu 2009-12-09T16:45:29Z 2009-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#1870358 6 Answer by Stu for (c/c++) do copies of string literals share memory in TEXT section? Stu 2009-12-08T22:32:33Z 2009-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#1870342 0 Answer by Stu for How can a Windows service be installed with visual basic.net express edition? Stu 2009-12-08T22:31:07Z 2009-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#1869905 0 Answer by Stu for Library for defragmenting memory Stu 2009-12-08T21:17:09Z 2009-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#1869529 0 Answer by Stu for c++ registry read/write from a non-admin Windows Service Stu 2009-12-08T20:11:01Z 2009-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#1868153 0 Answer by Stu for Additional try statement in catch statement - code smell? Stu 2009-12-08T16:34:00Z 2009-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#1868119 0 Answer by Stu for Joining INT column to comma separated list of INTs Stu 2009-12-08T16:29:43Z 2009-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#1868088 0 Answer by Stu for Accessing Internet Explorer using vb.net Stu 2009-12-08T16:24:23Z 2009-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#1863873 2 Answer by Stu for Run SQL statements from ASP.net application Stu 2009-12-08T00:52:29Z 2009-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#1863490 1 Answer by Stu for sql server 2005 tsql abs doesn't like decimals? Stu 2009-12-07T22:51:58Z 2009-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#1863471 0 Answer by Stu for Do different web servers suffer from the same types of attacks? Stu 2009-12-07T22:48:54Z 2009-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#1862858 2 Answer by Stu for Building a winform app in VS for windows 7 x64 - get an error on install Stu 2009-12-07T21:01:03Z 2009-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#1862498 2 Answer by Stu for How to detect Windows XP or Windows 2000 OS to run a CVI executable Stu 2009-12-07T19:58:47Z 2009-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#1848144 3 Answer by Stu for Preventing cast errors Stu 2009-12-04T16:36:32Z 2009-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#1843979 1 Answer by Stu for Howto trigger Progressbar from a function in the data access layer Stu 2009-12-04T00:01:47Z 2009-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 -1 Answer by Stu for Batch File/Script to delete Several non sequential lines from text file(s) Stu 2009-12-03T21:30:49Z 2009-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#1843001 2 Answer by Stu for Extract Strings from Binary Files in VB.Net Stu 2009-12-03T21:21:40Z 2009-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#1842571 4 Answer by Stu for How to change every nvarchar column to varchar? Stu 2009-12-03T20:11:59Z 2009-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#1842523 1 Answer by Stu for How do I find the path of Visual Studio in the registry using Python? Stu 2009-12-03T20:02:31Z 2009-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#1827469 3 Answer by Stu for How to chain these constructors (C#)? Stu 2009-12-01T16:51:05Z 2009-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#1750347 4 Answer by Stu for Can SQL table have multiple columns with primary key? Stu 2009-11-17T17:12:24Z 2009-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-framework Comment by Stu on An error with... operator precedence?? (.Net Compact Framework) Stu 2009-12-11T17:45:34Z 2009-12-11T17:45:34Z The answer IS 19. http://stackoverflow.com/questions/1889462/get-maximum-value-for-sql-datetime-in-net/1889488#1889488 Comment by Stu on Get maximum value for SQL DateTime in .NET Stu 2009-12-11T17:44:19Z 2009-12-11T17:44:19Z Which, 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#1883123 Comment by Stu on How do I find the data directory for a SQL Server instance? Stu 2009-12-11T17:16:21Z 2009-12-11T17:16:21Z So 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#1883166 Comment by Stu on What is the best database to use for a particular application Stu 2009-12-11T17:14:15Z 2009-12-11T17:14:15Z Once = ones, of course. http://stackoverflow.com/questions/1883128/what-is-the-best-database-to-use-for-a-particular-application/1883166#1883166 Comment by Stu on What is the best database to use for a particular application Stu 2009-12-11T17:13:43Z 2009-12-11T17:13:43Z Since I literally state &quot;Cannot comment on any others (no experience)&quot;, &quot;best&quot; means &quot;best amongst the once I have experience with&quot;. 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#1884362 Comment by Stu on How is C# inspired by C++ more than by Java? Stu 2009-12-10T23:35:34Z 2009-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#1884381 Comment by Stu on Format double with no decimal point Stu 2009-12-10T23:33:23Z 2009-12-10T23:33:23Z So? Have you tried it? http://stackoverflow.com/questions/1883071/how-do-i-find-the-data-directory-for-a-sql-server-instance/1883123#1883123 Comment by Stu on How do I find the data directory for a SQL Server instance? Stu 2009-12-10T21:55:47Z 2009-12-10T21:55:47Z For 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\SQL http://stackoverflow.com/questions/1883000/sql-datareader-null-values Comment by Stu on Sql Datareader null values Stu 2009-12-10T18:34:10Z 2009-12-10T18:34:10Z What is your question? http://stackoverflow.com/questions/1868056/accessing-internet-explorer-using-vb-net/1868088#1868088 Comment by Stu on Accessing Internet Explorer using vb.net Stu 2009-12-10T17:23:24Z 2009-12-10T17:23:24Z Microsoft 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-2005 Comment by Stu on Any idea why contains(...) querys so slow in SQL Server 2005 Stu 2009-12-09T16:39:12Z 2009-12-09T16:39:12Z What type is the column? http://stackoverflow.com/questions/1869527/create-class-from-database Comment by Stu on Create class from database Stu 2009-12-08T20:12:01Z 2009-12-08T20:12:01Z Ummmmmm.... what product? http://stackoverflow.com/questions/1868037/joining-int-column-to-comma-separated-list-of-ints/1868095#1868095 Comment by Stu on Joining INT column to comma separated list of INTs Stu 2009-12-08T16:28:30Z 2009-12-08T16:28:30Z Not really. Say D.ID is 1, and L.SearchValue is &quot;34199&quot;? http://stackoverflow.com/questions/1863478/sql-server-2005-tsql-abs-doesnt-like-decimals/1863490#1863490 Comment by Stu on sql server 2005 tsql abs doesn't like decimals? Stu 2009-12-08T16:16:37Z 2009-12-08T16:16:37Z No. 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#1862858 Comment by Stu on Building a winform app in VS for windows 7 x64 - get an error on install Stu 2009-12-08T16:15:08Z 2009-12-08T16:15:08Z Not that I know of. I've never seen the error myself, I just looked around and that was the only applicable information I found.