User WACM161 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T08:53:20Zhttp://stackoverflow.com/feeds/user/12255http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1902192/best-practice-for-moving-c-net-project-files-across-servers/1902440#19024400Answer by WACM161 for Best practice for moving C# .NET project files across servers WACM1612009-12-14T17:58:22Z2009-12-14T17:58:22Z<p>For web application development my experience has been:</p>
<p>Developers have a development environment on their local machines that is attached to source control
A DEV web server with shares to the projects created allows developers to COPY files to the web application folders manually.
A TEST web server where MSI installations ONLY are used to distribute the changes for UAT
A PROD web server where MSI installations ONLY are used to distribute the UAT approved MSI </p>
<p>The size of projects I am involved with usually makes build scripts overkill, most times a project is being worked on it is built many times for debugging etc.</p>
http://stackoverflow.com/questions/1840522/how-can-developers-get-out-of-the-learning-void/1868231#18682313Answer by WACM161 for How can developers get out of the learning "void"?WACM1612009-12-08T16:43:52Z2009-12-08T16:43:52Z<p>One thing I try to do is look for ways to improve the processes that are in existence in the organization / group and try to increase productivity, ease of use etc. </p>
<p>You are on the right track by being on Stack Overflow.</p>
<p>Read some blogs, there are a lot of smart people out there sharing their ideas and techniques.</p>
<p>When someone says "You don't need to learn that, we already have a way to do that here" Challenge the status quo and do some research looking for a better way</p>
http://stackoverflow.com/questions/1804282/grouped-gridview/1805715#18057150Answer by WACM161 for Grouped GridviewWACM1612009-11-26T21:23:30Z2009-11-26T21:23:30Z<p>IMHO you will be stuck using an HTML table</p>
<p>Use loops to group your data</p>
http://stackoverflow.com/questions/1805037/vb-net-what-is-the-equivalent-of-the-sql-server-bit-datatype1VB.NET: What is the equivalent of the SQL Server bit datatype?WACM1612009-11-26T18:13:08Z2009-11-26T18:53:04Z
<p>I have a field in a SQL Server table that is of type <code>bit</code>.</p>
<p>When I try to use a <code>Boolean</code> in <code>VB.NET</code> when passing parameters to a stored procedure, there are never any matches. I have also tried passing an integer to the stored procedure and that does not work either.</p>
http://stackoverflow.com/questions/1406449/best-way-to-represent-a-color-in-a-sql-database/1406512#14065121Answer by WACM161 for Best way to represent a color in a SQL Database?WACM1612009-09-10T17:03:04Z2009-09-10T17:03:04Z<p>Are you using the colors to style something or are you storing how many blue items you have?</p>
http://stackoverflow.com/questions/287995/how-big-can-a-sourcesafe-db-be-before-problems-arise3How big can a Sourcesafe DB be before "problems" arise?WACM1612008-11-13T19:41:58Z2009-07-06T05:05:49Z
<p>We use SourceSafe 6.0d and have a DB that is about 1.6GB. We haven't had any problems yet, and there is no plan to change source control programs right now, but how big can the SourceSafe database be before it becomes an issue?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/922476/is-there-a-way-to-read-the-clients-machine-computer-name-from-the-browser/922689#922689-4Answer by WACM161 for Is there a way to read the clients machine/computer name from the browser?WACM1612009-05-28T19:15:58Z2009-05-28T19:15:58Z<p>We did something like this for an inhouse bugtracking tool, it got taken out before we went live but i think it would work
I think a coop student found it on the internet somewhere :)</p>
<pre><code>using System;
using System.Management;
using System.Windows.Forms;
namespace ComputerInfo
</code></pre>
<p>{
///
/// Summary description for Class1.
///
public class CPUInfo
{
#region Properties
private String osVersion;
public String OSVersion
{
get { return this.osVersion; }
}</p>
<pre><code> private String machineName;
public String MachineName
{
get { return this.OSVersion; }
}
private int width;
public int ScreenWidth
{
get { return this.width; }
}
private int height;
public int ScreenHeight
{
get { return this.height; }
}
private String userName;
public String UserName
{
get { return this.userName; }
}
private String clockSpeed;
public String ClockSpeed
{
get { return this.clockSpeed; }
}
private String procName;
public String ProcessorName
{
get { return this.procName; }
}
private String manufacturer;
public String ProcessorManufacturer
{
get { return this.manufacturer; }
}
private String version;
public String ProcessorVersion
{
get { return this.version; }
}
private double ram;
public double RAM
{
get { return this.ram; }
}
private bool usehtml;
public bool UseHTMLFormatting
{
get { return this.usehtml; }
set { usehtml = value; }
}
#endregion
public CPUInfo() : this(false)
{
}
public CPUInfo(bool use_html_formatting)
{
usehtml = use_html_formatting;
osVersion = System.Environment.OSVersion.ToString() ;
machineName = System.Environment.MachineName.ToString();
width = Screen.PrimaryScreen.Bounds.Width;
height = Screen.PrimaryScreen.Bounds.Height;
userName = "";
clockSpeed = "";
procName = "";
manufacturer = "";
version = "";
ram = 0.0d;
getMachineInfo();
}
private void getMachineInfo()
{
try
{
using(ManagementObjectSearcher win32Proc = new ManagementObjectSearcher("select * from Win32_Processor"),
win32CompSys = new ManagementObjectSearcher("select * from Win32_ComputerSystem"),
win32Memory = new ManagementObjectSearcher("select * from Win32_PhysicalMemory"))
{
foreach (ManagementObject obj in win32Proc.Get())
{
clockSpeed = obj["CurrentClockSpeed"].ToString();
procName = obj["Name"].ToString();
manufacturer = obj["Manufacturer"].ToString();
version = obj["Version"].ToString();
}
</code></pre>
http://stackoverflow.com/questions/848155/can-sql-reporting-services-use-lotus-notes-as-a-datasource0Can SQL Reporting Services use Lotus Notes as a datasource?WACM1612009-05-11T13:43:54Z2009-05-12T04:54:36Z
<p>I would like to create a report from a project management system that has been created in Lotus Notes. I have connected to ORACLE from SSRS before, can I connect to the Lotus Notes DB?</p>
http://stackoverflow.com/questions/776703/how-to-check-for-null-values/777201#7772010Answer by WACM161 for How to check for null values?WACM1612009-04-22T13:26:18Z2009-04-22T13:26:18Z<p>When querying the database handle the null there, makes your life a lot easier in the code</p>
<p>SQL example</p>
<pre><code>SELECT isNull(columnName, 0) FROM TABLENAME...
</code></pre>
<p>or</p>
<pre><code>Select isNUll(columnName, 'N/A') FROM TABLENAME ...
</code></pre>
http://stackoverflow.com/questions/127878/source-safe-6-0d-and-visual-studio-2005-project-tree-problems1Source Safe 6.0d and Visual Studio 2005 project tree problemsWACM1612008-09-24T15:28:49Z2009-03-23T09:23:23Z
<p>Whenever I try to add a new project to my SourceSafe repository it creates 3 folders with the same name nested within each other. There is only one folder on my drive yet in Sourcesafe there are 3??</p>
<p>Can anyone suggest what may be causing this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/642851/when-publishing-an-asp-net-application-should-i-change-the-build-type-to-release/642882#6428822Answer by WACM161 for When publishing an ASP.NET application, should I change the build type to Release in the Visual Studio Configuration Manager?WACM1612009-03-13T14:08:08Z2009-03-13T14:08:08Z<p>Yes
Release will compile a smaller DLL</p>
http://stackoverflow.com/questions/606751/convert-integer-to-a-list-of-week-days1Convert integer to a list of week daysWACM1612009-03-03T15:10:45Z2009-03-03T15:36:58Z
<p>I have an integer stored in a database (SQLAgent Frequency Interval) This integer is actually the sum of the selected days of the week that the schedule is to run
The possible values are any combination of these values</p>
<ul>
<li>Sunday =1 </li>
<li>Monday = 2</li>
<li>Tuesday =4</li>
<li>Wednesday= 8 </li>
<li>Thursday = 16 </li>
<li>Friday = 32 </li>
<li>Saturday =64</li>
</ul>
<p>ex 65 means that the schedule should run on Saturday and Sunday</p>
<p>My problem is that I need to represent these values as the text "Saturday" and "Sunday" when given 65 and I am trying to do this in SQL</p>
<p>Other than a huge CASE statement with all of the possible combinations can anyone think of a way to do this?</p>
<p>Thanks </p>
http://stackoverflow.com/questions/596385/what-is-your-first-reference-material-when-stuck/596399#5963991Answer by WACM161 for What is your first reference material when stuck?WACM1612009-02-27T20:03:59Z2009-02-27T20:06:35Z<p>Stack Overflow has taken precedence over Google which is a close second!</p>
http://stackoverflow.com/questions/537526/do-you-inflate-your-estimated-project-completion-dates/537972#5379721Answer by WACM161 for Do you inflate your estimated project completion dates?WACM1612009-02-11T17:54:02Z2009-02-11T17:54:02Z<p>I dont inflate my estimates I pad them!</p>
http://stackoverflow.com/questions/536459/do-programmers-peak/536936#5369360Answer by WACM161 for Do programmers peak?WACM1612009-02-11T14:08:39Z2009-02-11T14:08:39Z<p>I think its hard to peak when there is always another language to learn or concept to explore, that can/will change the way you do things or how you lok at problems
When there are no new problems to solve then all programmers will have peaked</p>
http://stackoverflow.com/questions/528237/what-is-your-biggest-sql-server-mistake-or-embarrassing-incident/528350#5283501Answer by WACM161 for What is your biggest SQL Server mistake or embarrassing incident?WACM1612009-02-09T14:33:37Z2009-02-09T14:33:37Z<p>The biggest mistake was giving developers "write" access to the production DB
many DEV and TEST records were inserted / overwritten and backup- ed too production until it was wisely suggested (by me!) to only allow read access!</p>
http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-when-upgrading-our-legacy-apps/508254#5082541Answer by WACM161 for Should we select VB.NET or C# when upgrading our legacy apps?WACM1612009-02-03T18:10:16Z2009-02-03T18:10:16Z<p>I asked a question similar to this once
It really comes down to personal choice
I went from a C++ shop to a C# shop and now program in VB.NET
I am of the opinion that C# and VB.NET are not too different and that if you are learning from scratch like I did C# is the language to learn. There is a lot more out there with examples in C# and most .NET books use C# as well.</p>
<p>I say flip a coin!!</p>
http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code/496475#4964750Answer by WACM161 for What is your most useful sql trick to avoid writing more code?WACM1612009-01-30T17:48:42Z2009-01-30T17:48:42Z<p>Most people have already answered most of the ones I was thinking of.</p>
<ol>
<li>creating and using views </li>
<li>CASE statements in SQL instead of
code </li>
<li>Date Functions (DateAdd especially, use negative numbers to subtract.</li>
<li>Count, Sum, Average functions</li>
<li>Column aliasing for grid views / datagrids</li>
</ol>
http://stackoverflow.com/questions/212289/moving-from-vb-net-2003-to-vb2005-what-are-some-of-the-benefits2Moving from vb.NET (2003) to vb2005 What are some of the benefits?WACM1612008-10-17T14:08:19Z2008-12-28T15:43:22Z
<p>We are changing from vs2003 to vs2005 and use vb as our primary language, I am looking for some of the changes to VB that will be helpful in our ASP.NET development. Can someone point me to a list (maybe from microsoft?) or provide some of their favaorite differences between the two versions?</p>
http://stackoverflow.com/questions/389692/how-do-i-test-for-an-oracle-connection/389806#389806-1Answer by WACM161 for How do I test for an Oracle connectionWACM1612008-12-23T19:20:14Z2008-12-23T19:20:14Z<p>Here is what I do in ASP.NET</p>
<pre><code>Dim OracleConn As New OracleConnection(YOUR CONNECTION STRING HERE)
Try
OracleConn.Open()
OracleConn.Close()
Catch ex As Exception
Session("ErrorMessage") = "OracleConn: " & ex.Message
Response.Redirect("AccessDenied.aspx")
End Try
</code></pre>
<p>It doesnt necessarily say the DB is offline, but an exception will occur if the connection cannot be opened</p>
http://stackoverflow.com/questions/387053/how-do-you-explain-your-technical-job-to-someone-that-is-not-technical/387074#3870742Answer by WACM161 for How do you explain your technical job to someone that is not technical?WACM1612008-12-22T19:16:42Z2008-12-22T19:16:42Z<p>Very slowly...</p>
http://stackoverflow.com/questions/343390/what-was-your-biggest-cs-eye-opener/387064#3870642Answer by WACM161 for What was your biggest CS eye-opener?WACM1612008-12-22T19:12:44Z2008-12-22T19:12:44Z<p>The biggest thing I learned was that the customers have no idea what they want and once you show them something they usually will know they don't want exactly that and "can you make that green?" or "how about a picture of a tree here instead" will happen.</p>
<p>Basically Joel said it best in his article <a href="http://www.joelonsoftware.com/articles/fog0000000356.html" rel="nofollow">The Iceberg Secret, Revealed</a>
An application takes 1-10% of your time to look good and 90% - 99% to be functional but the customer will only care about that 1-10%</p>
http://stackoverflow.com/questions/359530/top-reasons-why-programmers-are-fired/359585#3595851Answer by WACM161 for Top reasons why programmers are fired.WACM1612008-12-11T14:44:41Z2008-12-11T14:44:41Z<p>The main reason I have seen people fired was because they were unable to adapt to new ideas, unable to meet deadlines because of their inability to adapt.</p>
<p>That and the fact they most of their "production code" was rewritten by someone else to pass QA</p>
http://stackoverflow.com/questions/340359/how-can-i-get-the-cpu-information-in-net/340611#3406112Answer by WACM161 for How can i get the cpu information in .net?WACM1612008-12-04T13:41:31Z2008-12-04T13:41:31Z<p>Please note that this is from vs2003</p>
<pre><code> using(ManagementObjectSearcher win32Proc = new ManagementObjectSearcher("select * from Win32_Processor"),
win32CompSys = new ManagementObjectSearcher("select * from Win32_ComputerSystem"),
win32Memory = new ManagementObjectSearcher("select * from Win32_PhysicalMemory"))
{
foreach (ManagementObject obj in win32Proc.Get())
{
clockSpeed = obj["CurrentClockSpeed"].ToString();
procName = obj["Name"].ToString();
manufacturer = obj["Manufacturer"].ToString();
version = obj["Version"].ToString();
}
</code></pre>
http://stackoverflow.com/questions/340564/best-way-to-stress-test-a-website/340584#3405840Answer by WACM161 for Best way to stress test a websiteWACM1612008-12-04T13:33:25Z2008-12-04T13:33:25Z<p>Try this <a href="http://rads.stackoverflow.com/amzn/click/047139470X" rel="nofollow">book</a></p>
http://stackoverflow.com/questions/340381/which-are-the-must-have-newsletters-subscriptions-for-net-java-programmers/340573#3405730Answer by WACM161 for Which are the must-have-newsletters subscriptions for .net/java programmers?WACM1612008-12-04T13:30:27Z2008-12-04T13:30:27Z<p>For .NET i would subscribe to Scott Guthrie's <a href="http://weblogs.asp.net/scottgu/" rel="nofollow">blog,</a></p>
<p>Especially if its ASP.NET!</p>
http://stackoverflow.com/questions/304399/do-caffeinated-drinks-improve-your-programming-productivity-or-cause-more-proble/305332#3053321Answer by WACM161 for Do caffeinated drinks improve your programming productivity, or cause more problems?WACM1612008-11-20T13:43:34Z2008-11-20T13:43:34Z<p>Caffeinated drinks improve my life productivity!!</p>
<p>I remember the first time I drank a coffee black, it was late, a release was due, and the kitchen wasnt being restocked until morning...</p>
http://stackoverflow.com/questions/290652/get-output-parameter-value-in-ado-net/290676#2906762Answer by WACM161 for Get output parameter value in ADO.NETWACM1612008-11-14T16:36:13Z2008-11-14T16:36:13Z<p>Not my code, but a good example i think</p>
<pre><code>using System;
using System.Data;
using System.Data.SqlClient;
{
class OutputParams
{
[STAThread]
static void Main(string[] args)
{
using( SqlConnection cn = new SqlConnection("server=(local);Database=Northwind;user id=sa;password=;"))
{
SqlCommand cmd = new SqlCommand("CustOrderOne", cn);
cmd.CommandType=CommandType.StoredProcedure ;
SqlParameter parm=new SqlParameter("@CustomerID",SqlDbType.NChar) ;
parm.Value="ALFKI";
parm.Direction =ParameterDirection.Input ;
cmd.Parameters.Add(parm);
**SqlParameter parm2=new SqlParameter("@ProductName",SqlDbType.VarChar);
parm2.Size=50;
parm2.Direction=ParameterDirection.Output;
cmd.Parameters.Add(parm2);
SqlParameter parm3=new SqlParameter("@Quantity",SqlDbType.Int);
parm3.Direction=ParameterDirection.Output;
cmd.Parameters.Add(parm3);**
cn.Open();
cmd.ExecuteNonQuery();
cn.Close();
**Console.WriteLine(cmd.Parameters["@ProductName"].Value);
Console.WriteLine(cmd.Parameters["@Quantity"].Value.ToString());**
Console.ReadLine();
}
}
}
</code></pre>
http://stackoverflow.com/questions/287708/best-practices-for-uploading-files-to-database4Best Practices for uploading files to databaseWACM1612008-11-13T17:58:12Z2008-11-13T18:38:39Z
<p>I am looking for any best practices or ideas on how you would create an interface with a DB from a .NET web application to upload data from Excel files
Should I use a mechanism that allows all the records to be loaded and flags the errors or should I use a mechanism that stops the load when an error occurs.</p>
<p>I've never had to deal with this type of requirement before so any help would be super!</p>
<p>Thanks</p>
http://stackoverflow.com/questions/273716/whats-an-effective-and-somewhat-easy-to-build-system-to-allow-customer-to-submit/273735#2737351Answer by WACM161 for What's an effective and somewhat easy to build system to allow customer to submit bug reports after deployment?WACM1612008-11-07T21:42:31Z2008-11-07T21:42:31Z<p>I would recommend something like <a href="http://ifdefined.com/bugtrackernet.html" rel="nofollow">bugtracker</a> its open, written in C# and web based
I have been using it for about a year and have made several of my own modifications to it</p>
http://stackoverflow.com/questions/1805037/vb-net-what-is-the-equivalent-of-the-sql-server-bit-datatype/1805059#1805059Comment by WACM161 on VB.NET: What is the equivalent of the SQL Server bit datatype?WACM1612009-11-26T18:27:56Z2009-11-26T18:27:56Zthanks for the info!!http://stackoverflow.com/questions/1805037/vb-net-what-is-the-equivalent-of-the-sql-server-bit-datatypeComment by WACM161 on VB.NET: What is the equivalent of the SQL Server bit datatype?WACM1612009-11-26T18:17:05Z2009-11-26T18:17:05ZI should also mention that this is vb.net 2003
and sql 2000 asp.net applicationhttp://stackoverflow.com/questions/1473515/how-would-you-build-one-select-stored-procedure-to-handle-any-request-from-a-tabl/1473563#1473563Comment by WACM161 on How would you build one Select stored procedure to handle any request from a table?WACM1612009-09-24T19:18:24Z2009-09-24T19:18:24Zhave to use this a lot!http://stackoverflow.com/questions/606751/convert-integer-to-a-list-of-week-days/606816#606816Comment by WACM161 on Convert integer to a list of week daysWACM1612009-03-03T15:41:02Z2009-03-03T15:41:02ZVery cool
I found an article on this too!
<a href="http://sqlfool.com/2009/02/bitwise-operations/" rel="nofollow">sqlfool.com/2009/02/bitwise-operations</a>
http://stackoverflow.com/questions/596385/what-is-your-first-reference-material-when-stuck/596399#596399Comment by WACM161 on What is your first reference material when stuck?WACM1612009-02-27T20:06:25Z2009-02-27T20:06:25ZYep, I have found that a lot of times my googling gets a lot of extra stuffhttp://stackoverflow.com/questions/160328/what-works-of-entertaining-fiction-best-depict-programmers/160572#160572Comment by WACM161 on What works of entertaining fiction best depict programmers?WACM1612009-02-26T16:23:23Z2009-02-26T16:23:23ZNeuromancer made me think computers were cool againhttp://stackoverflow.com/questions/160328/what-works-of-entertaining-fiction-best-depict-programmers/160341#160341Comment by WACM161 on What works of entertaining fiction best depict programmers?WACM1612009-02-26T16:21:25Z2009-02-26T16:21:25ZSnow Crash is a great book!http://stackoverflow.com/questions/545457/using-multiples-usings-how-this-affect-performance/545483#545483Comment by WACM161 on Using multiples "usings", how this affect performance?WACM1612009-02-13T13:33:56Z2009-02-13T13:33:56ZI totally agree
see this article <a href="http://www.codinghorror.com/blog/archives/001218.html" rel="nofollow">codinghorror.com/blog/archives/…</a> for another "microscopic optimizationhttp://stackoverflow.com/questions/528500/net-best-practices/528543#528543Comment by WACM161 on .NET best practices?WACM1612009-02-09T16:11:07Z2009-02-09T16:11:07ZYOu can write your own rules for it too!http://stackoverflow.com/questions/389692/how-do-i-test-for-an-oracle-connection/389806#389806Comment by WACM161 on How do I test for an Oracle connectionWACM1612008-12-23T20:24:51Z2008-12-23T20:24:51ZI dont think offering a code snippet from another language is a bad thing,http://stackoverflow.com/questions/153524/code-to-logging-ratio/153554#153554Comment by WACM161 on Code to logging ratio?WACM1612008-12-04T13:27:17Z2008-12-04T13:27:17Zhaving written those bank applications the log file is the ONLY way to diagnose a problemhttp://stackoverflow.com/questions/319952/how-to-deal-with-overachievers/320487#320487Comment by WACM161 on How to deal with overachieversWACM1612008-11-26T15:11:24Z2008-11-26T15:11:24ZI completely agree with this. It is a two way street managers are usually trying to get their projects done, if that means lumping more on the "better" people so be it...http://stackoverflow.com/questions/290652/get-output-parameter-value-in-ado-net/290772#290772Comment by WACM161 on Get output parameter value in ADO.NETWACM1612008-11-14T18:03:37Z2008-11-14T18:03:37Zwhat are the chances that two Colts fans would answer the same question??
http://stackoverflow.com/questions/270127/connect-to-an-oracle-database-with-sql-server-2000-reporting-services/270564#270564Comment by WACM161 on Connect to an Oracle database with SQL Server 2000 Reporting Services?WACM1612008-11-07T14:38:43Z2008-11-07T14:38:43Zhahaha, thanks for letting me answer the questionhttp://stackoverflow.com/questions/687/keyboard-for-programmers/788#788Comment by WACM161 on Keyboard for programmersWACM1612008-10-20T13:42:53Z2008-10-20T13:42:53ZBEST KEYBOARD EVER!!