User TheTXI - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T10:13:07Zhttp://stackoverflow.com/feeds/user/22164http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/428529/asp-net-output-expense-report-in-excel1ASP.NET output expense report in ExcelTheTXI2009-01-09T15:38:52Z2009-11-17T11:28:15Z
<p>On this project I am working on right now, one of the newest feature requests is to output expense information which is stored into expense report that matches an Excel worksheet they already use for all of their expense reporting. </p>
<p>I was curious if there was a way that I could take this excel worksheet (with all of its layout already done) and just fill in the parts that our system tracks and then serve it up as an .xls file to the user without having to do Excel Automation or any other method that requires Excel to be installed on the server.</p>
<p>Note: development environment is ASP.NET 2.0</p>
http://stackoverflow.com/questions/1588681/what-is-the-best-data-type-to-use-in-order-to-store-numbers-with-leading-zeroes/1588688#15886888Answer by TheTXI for What is the best data type to use in order to store numbers with leading zeroes?TheTXI2009-10-19T13:33:27Z2009-10-19T13:33:27Z<p>Use a string (or text, or varchar, or whatever string variant your particular RDBMS uses) and pad it with whatever character you want ("0") that you need.</p>
http://stackoverflow.com/questions/1504664/t-sql-code-to-get-a-datetime-contain-only-month-and-year-from-any-datetime/1504673#15046730Answer by TheTXI for T-SQL code to get a DateTime contain only Month and Year from any DateTimeTheTXI2009-10-01T15:34:04Z2009-10-01T15:34:04Z<p>This resource may help you with a lot of date formatting issues:</p>
<p><a href="http://www.sql-server-helper.com/tips/date-formats.aspx" rel="nofollow">http://www.sql-server-helper.com/tips/date-formats.aspx</a></p>
http://stackoverflow.com/questions/1401932/teaching-a-course-with-almost-all-lab-time/1401953#1401953-1Answer by TheTXI for Teaching a course with almost all lab timeTheTXI2009-09-09T20:39:10Z2009-09-09T20:39:10Z<p>One way I could imagine is to do pre-recorded videos and allow the students to watch them on their headphones while in the lab and if they have a question, just come over to them and explain any parts. It is definitely not an optimal solution, but your situation is so sub-par it is hard to imagine there being any real workable solutions. </p>
<p>Use the videos during the first two hours and answer questions on a one-by-one basis, and then try and give as much of a refresher or summary as possible in the last hour when group communication is allowed.</p>
http://stackoverflow.com/questions/1355657/whats-a-good-example-domain-for-an-nhibernate-presentation/1369495#13694950Answer by TheTXI for What's a good example domain for an NHibernate presentation?TheTXI2009-09-02T18:51:41Z2009-09-02T18:51:41Z<p>An idea that would could demonstrate some inheritance features would be any site/store that offers products that have varying "packages" and features associated with different versions. A great example would be an automotive site where you could list the details of various models of cars and the different features that they possess.</p>
<p>You would obviously have your base class of vehicles, but you could begin building upon that with the different vehicle types (car, truck, suv, etc.) and then further upon that (car->coupe, sedan, truck->half-cab, king-cab, etc.)</p>
http://stackoverflow.com/questions/635422/taking-a-null-value-from-the-database-and-assigning-to-a-date-variable2Taking a NULL value from the database and assigning to a Date variableTheTXI2009-03-11T16:55:04Z2009-08-21T00:08:22Z
<p>A stored procedure returns data about a user record including a nullable datetime column for their last login date. Which one is the better choice in dealing with the possibility for NULL values when trying to assign a .Net date variable?</p>
<pre><code> Try
_LastLogin = CDate(DT.Rows(0)("LastLogin"))
Catch ex As InvalidCastException
_LastLogin = Nothing
End Try
</code></pre>
<p>or</p>
<pre><code> If DT.Rows(0)("LastLogin") Is DBNull.Value Then
_LastLogin = Nothing
Else
_LastLogin = CDate(DT.Rows(0)("LastLogin"))
End If
</code></pre>
<p><strong>Edit</strong>: I also forgot about the possibility of using a TryParse</p>
<pre><code> If Not Date.TryParse(DT.Rows(0)("LastLogin").ToString, _LastLogin) Then
_LastLogin = Nothing
End If
</code></pre>
<p>Which is the preferred method of handling possible <code>NULL</code> values from the database? Is there a better way than the three listed?</p>
<p><strong>Edit #2</strong>: I have noticed that the <code>TryParse</code> method does not play nice when trying to assign to a <code>Nullable</code> type.</p>
http://stackoverflow.com/questions/1291768/is-it-unhealthy-to-program-60-hours-per-week/1291786#12917860Answer by TheTXI for Is it unhealthy to program 60+ hours per week?TheTXI2009-08-18T04:19:23Z2009-08-18T04:19:23Z<p>Long hours programming can obviously lead to workplace related problems like RSI (carpal tunnel, back problems, etc.) but as long as you take proper ergonomic precautions and make regular breaks between long stretches of programming it should help mitigate those problems.</p>
http://stackoverflow.com/questions/1285456/html-table-by-rows-or-columns/1285466#12854662Answer by TheTXI for html table - by rows or columnsTheTXI2009-08-16T22:12:28Z2009-08-16T22:12:28Z<p>That is not how the HTML standard is. You make your table, then you make a row, and then your columns. There is some additional stuff for headers, bodies, etc. But the standard (and only supported method) is by row and not by column.</p>
http://stackoverflow.com/questions/1245463/how-do-you-become-a-programmer/1245499#12454994Answer by TheTXI for How do you become a programmer?TheTXI2009-08-07T15:41:29Z2009-08-07T15:41:29Z<ul>
<li><p>The simple answer is this: <strong>start programming</strong>. That is the basic answer to the basic questions.</p></li>
<li><p>In terms of getting a job, it would probably be useful for someone with no official programming experience to either earn some type of degree or certifications from accredited colleges/universities/programs, or go the free-lance route and build up a suitable portfolio of work. If you can't demonstrate in some fashion that you know something, nobody is going to take the chance on hiring you when there is already a glut of actual programmers out there of varying quality trying to get jobs.</p></li>
</ul>
http://stackoverflow.com/questions/622246/what-does-your-java-development-environment-consist-of10What does your Java development environment consist of?TheTXI2009-03-07T18:17:39Z2009-08-06T14:47:27Z
<p>I am looking to start fiddling around with Java development in my free time (professionally a .NET developer) and I am curious as to what the community feels is their preferred development environment. </p>
<p>Items that could be listed: </p>
<ul>
<li>IDE </li>
<li>Plugins </li>
<li>Tools </li>
<li>Utilities</li>
<li>Source/Version Control </li>
<li>Libraries </li>
<li>Books </li>
<li>Blogs </li>
<li>Anything else you feel makes your time developing in Java easier/more efficient/more enjoyable</li>
</ul>
<p>Although it would be nice to potentially tailor any lists towards hobby development (no expensive enterprise tools), I don't think anything should necessarily be left off the list if you feel it is important to your development.</p>
http://stackoverflow.com/questions/1222690/need-help-with-recursion-in-sql-server-2005/1222733#12227332Answer by TheTXI for Need help with recursion in SQL Server 2005TheTXI2009-08-03T14:43:19Z2009-08-03T14:43:19Z<p>MSDN has a pretty good set of examples for using <a href="http://msdn.microsoft.com/en-us/library/ms186243.aspx" rel="nofollow">Common Table Expressions</a> to write recursive queries. It was a big pain in the rear to do these prior to SQL Server 2005 (dealing with that exact problem in an old Server 2000 app right now).</p>
http://stackoverflow.com/questions/1222227/how-to-make-javascript-more-effective/1222255#12222550Answer by TheTXI for How to make Javascript more effective? TheTXI2009-08-03T13:06:57Z2009-08-03T13:06:57Z<p>Write your code better.</p>
http://stackoverflow.com/questions/734158/does-rearranging-a-conditional-evaluation-speed-up-a-loop/734163#7341633Answer by TheTXI for Does rearranging a conditional evaluation speed up a loop?TheTXI2009-04-09T13:15:54Z2009-08-03T11:57:26Z<p>It is more of a best practice not to go out of your way for optimization tweaks like this which will give you negligible benefit (assuming it <em>is</em> a tweak).</p>
http://stackoverflow.com/questions/1208443/how-do-i-tell-if-a-site-is-being-hosted-in-the-asp-development-server/1208457#1208457-2Answer by TheTXI for How do I tell if a site is being hosted in the ASP Development Server?TheTXI2009-07-30T18:30:14Z2009-07-30T18:30:14Z<p>You could check and see if it's being hosted not on port 80 (since the dev server will by default give you a rather random port number)</p>
http://stackoverflow.com/questions/1208356/what-are-some-relevant-technologies-and-recent-books-that-you-liked-related-to/1208384#1208384-1Answer by TheTXI for What are some (relevant technologies) and recent books that you liked related to programming?TheTXI2009-07-30T18:20:14Z2009-07-30T18:20:14Z<p><a href="http://stackoverflow.com/questions/20965/what-programming-books-do-you-recommend">http://stackoverflow.com/questions/20965/what-programming-books-do-you-recommend</a></p>
http://stackoverflow.com/questions/1150192/install-sql-server-business-intelligence-development-studio/1150213#11502130Answer by TheTXI for Install : SQL Server Business Intelligence Development Studio TheTXI2009-07-19T16:10:00Z2009-07-19T16:10:00Z<p><a href="http://msdn.microsoft.com/en-us/library/ms173767.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms173767.aspx</a></p>
<blockquote>
<p>Business Intelligence Development Studio is Microsoft Visual Studio 2008 with additional project types that are specific to SQL Server business intelligence. Business Intelligence Development Studio is the primary environment that you will use to develop business solutions that include Analysis Services, Integration Services, and Reporting Services projects. Each project type supplies templates for creating the objects required for business intelligence solutions, and provides a variety of designers, tools, and wizards to work with the objects. </p>
</blockquote>
<p>If you already have Visual Studio installed, the new project types will be installed along with SQL Server.</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/sqlsetupandupgrade/thread/80f2c22b-ee8e-44d6-b578-70cd6e70abb8" rel="nofollow">More Information</a></p>
http://stackoverflow.com/questions/1134929/set-border-stylenone-on-my-anchor-tags-but-border-shows-up-when-i-click-on-a-li/1134944#1134944-1Answer by TheTXI for Set border-style:none; on my anchor tags but border shows up when I click on a link - why?TheTXI2009-07-16T01:06:40Z2009-07-16T01:06:40Z<p>I believe you need to define all the rules for your link such as Link, Hover, Active, and Visited.</p>
<p>More information: <a href="http://www.echoecho.com/csslinks.htm" rel="nofollow">http://www.echoecho.com/csslinks.htm</a></p>
http://stackoverflow.com/questions/1134931/reading-understanding-third-party-code/1134938#11349381Answer by TheTXI for Reading/Understanding third-party codeTheTXI2009-07-16T01:05:01Z2009-07-16T01:05:01Z<p>One of the better ways to understand it is to attempt to document it yourself. By going and trying to document it yourself, it forces you to really dive in and test and test and test and make sure you know what each statement is doing at what times. Then you can really start to understand what the previous developer may have been thinking (or not thinking for that matter).</p>
http://stackoverflow.com/questions/1127307/what-is-the-smallest-programming-bug-that-youve-had-and-spent-the-longest-time-o/1127324#11273240Answer by TheTXI for What is the smallest programming bug that you've had and spent the longest time on?TheTXI2009-07-14T18:58:34Z2009-07-14T18:58:34Z<p>After spending all my time in VB I had to debug a JavaScript function and it took me forever to remember that If (someting = somethingelse) doesn't do what you think it is going to do in JavaScript (or most other languages for that matter).</p>
http://stackoverflow.com/questions/460022/preferred-version-control-methodology11Preferred Version Control MethodologyTheTXI2009-01-20T03:22:57Z2009-07-14T11:14:33Z
<p>I am a novice in the world of source/version control and I have been doing as much reading as physically possible to get my head around the different techniques that people use for their own source/version control.</p>
<p>One thing that I have noticed is a pretty distinct break in the methods of developers into two (possibly more?) groups: one group prefers to keep their trunk in an always-stable state and performs all maintenance and future development in the branches, while others prefer to do all of their development in the trunk and keep it in a not-so-stable state.</p>
<p>I am curious as to what the community here at StackOverflow prefers or if you have your own methods. </p>
<p>Note: If it would help tailor the answers, I should note that I am a single developer (at most there would be two or three others in the same project) who works primarily in ASP.NET and SQL Server 2005</p>
http://stackoverflow.com/questions/1124723/how-to-add-quotes-to-a-dynamic-sql-command/1124738#11247382Answer by TheTXI for How to Add Quotes to a Dynamic SQL Command?TheTXI2009-07-14T11:12:46Z2009-07-14T11:12:46Z<p>If you want to include a single quote into an SQL field, escape it using single quotes </p>
<pre><code>'''Test''' = 'Text'
</code></pre>
<p>This is for SQL Server.</p>
http://stackoverflow.com/questions/686216/what-code-would-you-have-on-your-wedding-cake/686228#686228259Answer by TheTXI for What code would you have on your wedding cake?TheTXI2009-03-26T15:17:22Z2009-07-13T17:44:45Z<pre><code>Do {
Have();
Hold();
} Until (Death == True);
</code></pre>
http://stackoverflow.com/questions/1043662/tsql-select-from-set-of-columns-with-lowest-positive-value2TSQL: Select from set of columns with lowest positive valueTheTXI2009-06-25T12:37:19Z2009-06-27T16:34:08Z
<p>Example Schema:</p>
<pre><code>RowID Quantity ModifiedPrice GroupPrice CustomPrice SalePrice
----------------------------------------------------------------------------
1 5 20.00 0 15.00 17.00
2 2 14.00 7.00 22.00 0
3 9 10.00 10.00 0 11.00
</code></pre>
<p>Based on this example table, I would like to be able to select the lowest non-zero value between the four *Price columns in the most efficient/simplest manner possible. </p>
<p>Example Output:</p>
<pre><code>RowID Quantity EndPrice
------------------------------
1 5 15.00
2 2 7.00
3 9 10.00
</code></pre>
<p>For extra information, the DB is SQL Server 2005.</p>
http://stackoverflow.com/questions/1051544/sql-query-for-information-not-in-database/1051553#10515532Answer by TheTXI for SQL Query for information *not* in databaseTheTXI2009-06-26T22:27:21Z2009-06-26T22:27:21Z<p>Why don't you import the email addresses as a table and just check that way against whatever table you already have?</p>
<p>Other than that, you could pass in the list of email addresses as an XML datatype or a table datatype and query against that.</p>
http://stackoverflow.com/questions/1051109/help-with-sql-query/1051148#10511481Answer by TheTXI for Help with SQL queryTheTXI2009-06-26T20:31:37Z2009-06-26T20:31:37Z<pre><code>Select customer_ID, Count(*)
FROM reviews
WHERE customer_ID in ( Select Customer_ID from reviews where products_id = '170')
Group By customer_ID
</code></pre>
<p>This should give you a list of all CustomerID's along with the Count of all their reviews, but it will limit it only to the customers who have left a review for product 170.</p>
http://stackoverflow.com/questions/1051065/will-a-net-winforms-application-work-in-a-64-bit-os-or-does-it-need-to-be-modifi/1051084#10510840Answer by TheTXI for Will a .net winforms application work in a 64-bit OS or does it need to be modified?TheTXI2009-06-26T20:20:01Z2009-06-26T20:20:01Z<p>Most 64-bit OS's are able to handle 32-bit apps without problems. This is why you see a Program Files (x86) folder on your 64-bit OS to handle a lot of your old 32-bit apps.</p>
http://stackoverflow.com/questions/1050165/how-can-i-count-to-10-while-summing-the-numbers-in-excel-vba/1050177#10501775Answer by TheTXI for How can I count to 10 while summing the numbers in Excel VBA?TheTXI2009-06-26T17:03:59Z2009-06-26T17:55:19Z<pre><code>Dim Sum as Integer
Sum = 0
Dim I as Integer
For I = 1 to 10
Sum = Sum + I
Next
</code></pre>
<p><strong>Edit</strong>: For future reference, please refer to Microsoft's MSDN section on <a href="http://msdn.microsoft.com/en-us/isv/bb190538.aspx" rel="nofollow">Visual Basic for Applications (VBA)</a></p>
http://stackoverflow.com/questions/1049691/conditionals-in-transact-sql-select-column-lists/1049707#10497072Answer by TheTXI for Conditionals in transact-sql select column listsTheTXI2009-06-26T15:19:59Z2009-06-26T15:26:17Z<p>Use a CASE statement</p>
<pre><code>SELECT
records.id,
CASE contacts.organization
WHEN '' THEN contacts.name
ELSE contacts.name + ' (' + contacts.organization + ')'
END as Contact
FROM records
LEFT JOIN contacts ON records.contact = contacts.contactid
</code></pre>
<p>You could modify it to also check for NULL values, but I do not believe you have that issue because if you had a NULL in your contacts.organization, your entire result field would be null instead of blank.</p>
http://stackoverflow.com/questions/1049512/t-sql-11-performance-hit/1049519#10495195Answer by TheTXI for T-SQL 1=1 Performance HitTheTXI2009-06-26T14:43:41Z2009-06-26T14:43:41Z<p>It is likely that if you use the profiler and look, you will end up seeing that the optimizer will end up ignoring that more often than not, so in the grand scheme of things, there probably won't be much in the way of performance gain or losses.</p>
http://stackoverflow.com/questions/1046093/datalist-line-break-when-records-with-same-id-detected/1046138#10461380Answer by TheTXI for Datalist line break when records with same ID detectedTheTXI2009-06-25T20:39:02Z2009-06-25T20:39:02Z<p>One idea would be during the row databinding, check the current value, value previous, and next value. If you have a match between the current and previous, you have a group, then check the next row to come (from your original data source) and if it is different, then insert your empty line.</p>
http://stackoverflow.com/questions/1676702/what-is-the-magic-behind-the-search-engines/1676717#1676717Comment by TheTXI on What Is The "Magic" Behind The Search EnginesTheTXI2009-11-04T21:28:37Z2009-11-04T21:28:37ZThis is a comment.http://stackoverflow.com/questions/1676702/what-is-the-magic-behind-the-search-enginesComment by TheTXI on What Is The "Magic" Behind The Search EnginesTheTXI2009-11-04T21:26:04Z2009-11-04T21:26:04Z@Jay: Yes, because we can all afford our own datacenters full of thousands of computers processing the results in parallel.http://stackoverflow.com/questions/1552099/creating-code-for-displaying-school-day-cycles/1552112#1552112Comment by TheTXI on Creating code for displaying school day cyclesTheTXI2009-10-12T13:57:45Z2009-10-12T13:57:45ZThat doesn't take into account anything about weekends and holidays.http://stackoverflow.com/questions/1543290/how-do-i-hide-a-fileComment by TheTXI on How do I hide a file?TheTXI2009-10-09T12:56:32Z2009-10-09T12:56:32ZJust because it may smell of ill intentions to you does not necessarily make it so. There is nothing about this question which says "Not a real question" so therefore it is a valid question and should be reopened. If you feel it violates your own personal code of ethics, then you don't have any obligation to make an answer.http://stackoverflow.com/questions/1504664/t-sql-code-to-get-a-datetime-contain-only-month-and-year-from-any-datetime/1504673#1504673Comment by TheTXI on T-SQL code to get a DateTime contain only Month and Year from any DateTimeTheTXI2009-10-01T15:43:39Z2009-10-01T15:43:39Z@AnthonyWJones: Yes, but once you get a simple string representation of what you are exactly looking for (in this case a month/year only) it would not be terribly hard to cast it back into a datetime, would it? http://stackoverflow.com/questions/1440171/matlab-defective-or-just-different/1440840#1440840Comment by TheTXI on MATLAB: Defective or just different?TheTXI2009-09-18T20:31:00Z2009-09-18T20:31:00ZPeople are free to spell anyway they want? Well hell, we should just do away with this whole edit feature and allow everyone to spell anything whatever way they want. I can't wait until I start looking for answers here and they all start looking like AOL-speakhttp://stackoverflow.com/questions/1440171/matlab-defective-or-just-different/1440594#1440594Comment by TheTXI on MATLAB: Defective or just different?TheTXI2009-09-18T20:25:01Z2009-09-18T20:25:01Z@Mikhail: I was unaware that being a pretentious ass was a prerequisite to being a real programmer.http://stackoverflow.com/questions/1027387/limited-t-sql-join/1027415#1027415Comment by TheTXI on Limited T-SQL JoinTheTXI2009-09-16T19:16:53Z2009-09-16T19:16:53ZCommon Table Expressions (CTEs) were introduced in SQL Server 2005, this answer is correct.http://stackoverflow.com/questions/1423597/solid-principlesComment by TheTXI on SOLID principlesTheTXI2009-09-14T20:15:54Z2009-09-14T20:15:54Z@Pesto: We tried that, but all of our projects got mothballed.http://stackoverflow.com/questions/1423597/solid-principlesComment by TheTXI on SOLID principlesTheTXI2009-09-14T20:10:53Z2009-09-14T20:10:53Z@Pesto: I've always heard that LIQUID development doesn't put a big focus on memory leaks.http://stackoverflow.com/questions/1423597/solid-principlesComment by TheTXI on SOLID principlesTheTXI2009-09-14T20:01:40Z2009-09-14T20:01:40ZIt is slower than both LIQUID and GAS development, but has a much more rigid and stable structure.http://stackoverflow.com/questions/1412744/getting-your-ideas-out-thereComment by TheTXI on Getting your ideas out thereTheTXI2009-09-11T19:21:50Z2009-09-11T19:21:50ZNo it wouldn't.http://stackoverflow.com/questions/1412744/getting-your-ideas-out-thereComment by TheTXI on Getting your ideas out thereTheTXI2009-09-11T19:17:25Z2009-09-11T19:17:25ZAny time you say "I know this is not programming related" that should be your first clue not to post it on a website specifically for programming Q&Ahttp://stackoverflow.com/questions/1312877/programmer-nerd-pick-up-linesComment by TheTXI on Programmer/Nerd Pick Up LinesTheTXI2009-08-21T16:15:24Z2009-08-21T16:15:24ZThis was one of the worst Friday Afternoon posts ever on SO.http://stackoverflow.com/questions/1287329/would-it-ever-be-wise-to-have-a-sql-server-per-web-serverComment by TheTXI on Would it ever be wise to have a SQL server per web server?TheTXI2009-08-17T11:03:14Z2009-08-17T11:03:14ZThis almost sounds ServerFault-ish