User C. Ross - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T05:45:27Zhttp://stackoverflow.com/feeds/user/16487http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1903680/pitfalls-of-event-handling-in-java1Pitfalls of Event Handling in JavaC. Ross2009-12-14T21:38:42Z2009-12-15T03:13:44Z
<p>I'm working on a program that needs a Java object to have an event. I'm quite familiar with how this works in C#, having had enough experience to learn the pitfalls. </p>
<p>What are the pitfalls of working with events in Java? How are they different from events in C# 2.0?</p>
<p>Example: An object changed event to prompt a save from the owner object.</p>
<p>Note: Java 1.5</p>
<p>Related: <a href="http://stackoverflow.com/questions/181427/c-event-handling-compared-to-java">C# event handling (compared to Java)</a></p>
http://stackoverflow.com/questions/1903688/how-to-consume-a-web-service-in-a-net-class-project/1903709#19037091Answer by C. Ross for How to Consume a Web Service in a .NET Class Project C. Ross2009-12-14T21:44:27Z2009-12-14T21:44:27Z<p>Use the <code>Add Web Reference</code> tool in visual studio. Enter the url of the webservice and it will be automatically loaded. </p>
http://stackoverflow.com/questions/1903204/should-i-keep-a-serialport-connection-open/1903213#19032134Answer by C. Ross for Should I keep a SerialPort connection open?C. Ross2009-12-14T20:17:18Z2009-12-14T20:17:18Z<p>Keep it open. No point to have the overhead of opening and closing it.</p>
http://stackoverflow.com/questions/1903105/which-exception-to-throw-when-a-method-try-to-use-a-field-that-can-be-null/1903147#19031474Answer by C. Ross for Which Exception to throw when a method try to use a field that can be null?C. Ross2009-12-14T20:02:40Z2009-12-14T20:02:40Z<p><a href="http://msdn.microsoft.com/en-us/library/system.invalidoperationexception.aspx" rel="nofollow">InvalidOperationException</a> </p>
http://stackoverflow.com/questions/1891092/korn-shell-test-with-variable-that-may-be-not-set1Korn Shell - Test with variable that may be not setC. Ross2009-12-11T21:49:49Z2009-12-12T06:37:13Z
<p>I have the following code in KornShell</p>
<pre><code>FAILURE=1
SUCCESS=0
isNumeric(){
if [ -n "$1" ]; then
case $1 in
*[!0-9]* | "") return $FAILURE;
* ) return $SUCCESS;
esac;
else
return $FAILURE;
fi;
}
#...
FILE_EXT=${FILE#*.}
if [ isNumeric ${FILE_EXT} ]; then
echo "Numbered file."
fi
#...
</code></pre>
<p>In some cases the file name not have an extension, and this causes the <code>FILE_EXT</code> variable to be empty, which causes the following error:
<code>./script[37]: test: 0403-004 Specify a parameter with this command.</code> How should I be calling this function so that I do not get this error?</p>
http://stackoverflow.com/questions/1889749/parameter-converted-from-null-to-datetime-minvalue-when-called-using-invoke-in-c/1889813#18898130Answer by C. Ross for Parameter converted from null to DateTime.MinValue when called using Invoke in C# 2.0C. Ross2009-12-11T18:00:56Z2009-12-11T18:00:56Z<p>Only <a href="http://msdn.microsoft.com/en-us/library/490f96s2.aspx" rel="nofollow">reference types</a> can be null. <a href="http://msdn.microsoft.com/en-us/library/system.datetime%28VS.100%29.aspx" rel="nofollow">DateTime</a> (like int, bool, structs, and enums) is a <a href="http://msdn.microsoft.com/en-us/library/s1ax56ch.aspx" rel="nofollow">Value Type</a>. Therefore DateTime cannot be null, just like an enum can't be null. You can use the <a href="http://msdn.microsoft.com/en-us/library/1t3y8s4s%28VS.80%29.aspx" rel="nofollow">Nullable generic</a>, by declaring it as <code>DateTime?</code>. This will allow you to check it for null.</p>
http://stackoverflow.com/questions/1609793/howcan-i-get-started-with-spring-batch1Howcan I get started with Spring Batch?C. Ross2009-10-22T20:36:07Z2009-12-11T15:37:09Z
<p>I'm trying to learn <a href="http://static.springsource.org/spring-batch/index.html" rel="nofollow">Spring Batch</a>, but the <a href="http://static.springsource.org/spring-batch/getting-started.html" rel="nofollow">startup guide</a> is very confusing. Comments like </p>
<blockquote>
<p>You can get a pretty good idea about
how to set up a job by examining the
unit tests in the
org.springframework.batch.sample
package (in src/main/java) and the
configuration in
src/main/resources/jobs.</p>
</blockquote>
<p>aren't exactly helpful.
Also I find the Sample project very complicated (17 non-empty Namespaces with 109 classes)! Is there a simpler place to get started with Spring Batch? </p>
http://stackoverflow.com/questions/1883743/to-open-up-an-excel-file-do-i-need-any-special-references/1883761#18837610Answer by C. Ross for to open up an excel file, do I need any special references?C. Ross2009-12-10T20:24:09Z2009-12-10T20:24:09Z<p>Yes. As for which references, you'll need to give us more information.</p>
http://stackoverflow.com/questions/1881333/how-to-convert-the-current-class-name-of-asp-net-usercontrols-to-string-on-c/1881385#18813851Answer by C. Ross for How to convert the current class name of asp.net usercontrols to string on c#?C. Ross2009-12-10T14:34:39Z2009-12-10T14:36:41Z<p>Use <code>GetType()</code> and <code>Name</code></p>
<pre><code>Console.Writeline(child.GetType().Name);
</code></pre>
<p>or </p>
<pre><code>Console.Writeline(child.GetType().FullName);
</code></pre>
http://stackoverflow.com/questions/1870675/n-tier-architecture-best-place-to-store-business-objects/1870699#18706990Answer by C. Ross for n-tier architecture: best place to store business objects?C. Ross2009-12-08T23:51:13Z2009-12-08T23:51:13Z<p>I would suggest creating and interface of what you want in the model project, and implementing that definition in the data layer. That way all three (four?) projects can use that definition, without knowing how it's implemented.</p>
http://stackoverflow.com/questions/1869948/killing-this-numberformatexception/1869978#18699781Answer by C. Ross for Killing this NumberFormatExceptionC. Ross2009-12-08T21:31:27Z2009-12-08T21:31:27Z<p>Try using breakpoints starting at </p>
<pre><code>String [] caseStartLineSplitted = caseStartLine.split("");
</code></pre>
<p>and using Step Over (F8)</p>
http://stackoverflow.com/questions/1869710/dataset-operations/1869770#18697703Answer by C. Ross for DataSet OperationsC. Ross2009-12-08T20:55:32Z2009-12-08T20:55:32Z<p>Just write code for it:</p>
<pre><code>//Assumes setA and setB are unique internally
public DataRow[] GetUnionRows(DataRow[] setA, DataRow[] setB){
List<DataRow> resultList = new List<DataRow>(setA);
foreach (DataRow row in setB){
if (!Contains(setA, row)){
resultList.add(row);
}
}
return resultList.toArray();
}
private bool YourEquals(DataRow a, DataRow b){
//Whatever
}
private bool Contains(DataRow[] setA, DataRow b){
foreach(DataRow a in setA){
if (YourEquals(a,b)){
return true;
}
}
return false;
}
</code></pre>
http://stackoverflow.com/questions/1867662/unwanted-escape-characters-in-string/1867686#18676860Answer by C. Ross for Unwanted escape characters in stringC. Ross2009-12-08T15:26:09Z2009-12-08T17:44:57Z<p>Are you using <a href="http://msdn.microsoft.com/en-us/library/aa691090%28VS.71%29.aspx" rel="nofollow">verbatim string literals</a>?</p>
<p>Ie : </p>
<pre><code>String c = @"C \B";
</code></pre>
http://stackoverflow.com/questions/1856560/upgraded-to-sql-server-2008-now-one-query-is-running-really-slow/1868462#18684620Answer by C. Ross for Upgraded to Sql Server 2008. Now one query is running really slowC. Ross2009-12-08T17:17:31Z2009-12-08T17:17:31Z<p>I had a very similar issue going from 2000 to 2005. We had a view over table of 1 million rows (with self joins, etc), and the query ran for over three hours (we never let it finish, so we don't know if it would ever return). My problem seemed to be directly linked to the number of "Nested Loops" in the table. I see quite a few in your execution plan:</p>
<pre><code>Nested Loops(Left Outer Join, OUTER REFERENCES:([CmsDB].[dbo].[AccData].[Claim]))
|--Nested Loops(Inner Join, OUTER REFERENCES:([CmsDB].[dbo].[AccData].[ClientID]))
| |--Nested Loops(Inner Join, OUTER REFERENCES:([CmsDB].[dbo].[AccData].[ClaimStatus]))
</code></pre>
<p>I used <a href="http://msdn.microsoft.com/en-us/library/ms181714.aspx" rel="nofollow">Query Hint</a>: <a href="http://msdn.microsoft.com/en-us/library/ms173815.aspx" rel="nofollow">Hash</a> on all my problematic joins, and it reduced the time of the query to a more manageable 30-45 minutes. </p>
<p>I'd love to find the root cause as well, but this is a basic work around. </p>
http://stackoverflow.com/questions/1863006/c-multi-method-attached-to-event-how-to-handle-return-value/1863040#18630403Answer by C. Ross for C# multi method attached to event, how to handle return value?C. Ross2009-12-07T21:31:15Z2009-12-07T21:31:15Z<p>Create a custom EventArgs class with a method for add return code. Each listener can then call the method, and after the event completes, you can iterate through the return codes. This also allows you to add data about which listener returned what, or why.</p>
<pre><code>private class MyEventArgs : EventArgs {
public void addReturnCode(bool retCode){
//...
}
public IList<bool> getReturnCodes(){
//...
}
}
</code></pre>
http://stackoverflow.com/questions/1861780/convert-values-in-string-to-float-array/1861810#18618100Answer by C. Ross for convert values in string to float arrayC. Ross2009-12-07T18:06:17Z2009-12-07T18:06:17Z<p>The function you want is called <a href="http://www.cplusplus.com/reference/clibrary/cstdio/fscanf/" rel="nofollow">fscanf</a>.</p>
<pre><code>/* fscanf example */
/* Stolen from cplusplus.com
Modified by C Ross */
#include <stdio.h>
int main ()
{
char str [80];
float f;
FILE * pFile;
pFile = fopen ("myfile.txt","r");
/* Loop over this and add to an array, linked list, whatever */
fscanf (pFile, "%f", &f);
fclose (pFile);
printf ("I have read: %f \n",f);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1851341/how-to-create-parameterized-queries-in-vb-net/1852044#18520442Answer by C. Ross for How to create parameterized queries in vb.net?C. Ross2009-12-05T12:03:14Z2009-12-05T12:11:57Z<p>You'll need to use the <a href="http://msdn.microsoft.com/en-us/library/system.data.oledb.oledbconnection.aspx" rel="nofollow">OleDbConnection</a> class, as well as the <a href="http://msdn.microsoft.com/en-us/library/system.data.oledb.oledbcommand.aspx" rel="nofollow">OleDbCommand</a> class, with the proper connection string for <a href="http://www.connectionstrings.com/access#p20" rel="nofollow">Access</a>.</p>
<pre><code>Dim sql as String = "SELECT * FROM TABLE_A WHERE COLUMN_A = @PARAM"
Dim connectionString as String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydatabase.mdb;User Id=admin;Password=;"
Using connection As New OleDbConnection(connectionString)
Dim command As New OleDbCommand(sql)
command.Connection = connection
command.Params.Add("@PARAM", yourVariable)
connection.Open()
Dim reader As OleDbDataReader = command.ExecuteReader()
While reader.Read()
Console.WriteLine(reader.GetString(1)
End While
End Using
</code></pre>
http://stackoverflow.com/questions/1848312/how-can-i-store-different-objects-in-a-single-list/1848349#18483491Answer by C. Ross for How can I store different objects in a single listC. Ross2009-12-04T17:06:15Z2009-12-04T17:06:15Z<p>Yes, it is the only way, given your constraints.</p>
<p>I would suggest adding length to the interface (since arc does have a length).</p>
<p>The formula can be found <a href="http://en.wikipedia.org/wiki/Arc%5Flength" rel="nofollow">here</a>.</p>
<p>Or alternatively you could add the method to the interface, and have it throw a NotImplementedException.</p>
http://stackoverflow.com/questions/1833195/how-to-get-free-impartial-code-reviews-advice/1833307#18333071Answer by C. Ross for How to get free impartial code reviews / advice?C. Ross2009-12-02T14:41:18Z2009-12-02T14:41:18Z<p>I would suggest finding a coding buddy or mentor. You could look at your local user group meeting, ACM meeting, or even post on Craigslist. There are a lot of great coders who could provide great insight.</p>
<p><strong>Alternatively</strong></p>
<p>If it's Open Source, get a project group going. Perhaps you could do an effort trade with an established project, that is you get someone to look at your project and you spend as many hours fixing bugs and filtering out the feature requests.</p>
http://stackoverflow.com/questions/1819782/datalayer-in-linq-with-different-version-of-data-model/1819800#18198000Answer by C. Ross for DataLayer in Linq with different version of Data modelC. Ross2009-11-30T13:23:26Z2009-11-30T13:23:26Z<p>I would suggest option 2, but make sure that both implementations implement the same interface. Have the type of data layer be stored in a configuration file and loaded at runtime by a factory class.</p>
http://stackoverflow.com/questions/1808760/what-is-the-most-interesting-server-name-you-have-seen/1808780#18087800Answer by C. Ross for What is the most interesting server name you have seen?C. Ross2009-11-27T13:27:49Z2009-11-27T13:27:49Z<p>Earth, which is a training AIX machine.</p>
http://stackoverflow.com/questions/1786325/which-hash-to-use-for-file-uniqueness-in-java3Which hash to use for file uniqueness in JavaC. Ross2009-11-23T21:56:23Z2009-11-24T10:32:54Z
<p>I'm trying to keep track of a set of files, which may have the same name and metadata. I'd like to use a hash to differentiate and use it as a unique ID, but I'm not sure which one to use? The files are relatively small (in the 100 kb range) and I'd like to be able to hash that in less than 10 seconds. Which hash (that comes built in in Java 1.5) would best suite my needs?</p>
http://stackoverflow.com/questions/1770267/how-do-i-pause-vbs-script-while-folder-is-deleted/1770329#17703293Answer by C. Ross for How do I pause VBS script while folder is deleted?C. Ross2009-11-20T13:07:10Z2009-11-20T13:07:10Z<pre><code>While fso.FolderExists(DelFoldername)
WScript.Echo "Still deleting"
WScript.Sleep 1000
Wend
</code></pre>
http://stackoverflow.com/questions/1757572/where-can-i-find-a-vim-syntax-file-for-the-go-language2Where can I find a Vim syntax file for the go language?C. Ross2009-11-18T17:12:31Z2009-11-18T21:40:06Z
<p>Has anyone created a vim syntax file for the go language? </p>
http://stackoverflow.com/questions/836055/how-to-replace-vb6-com-dll-with-net0How to replace VB6 Com+ DLL with .NETC. Ross2009-05-07T17:40:40Z2009-11-17T20:40:49Z
<p>We have a Com+ VB6 DLL used in our asp classic application. After upgrading to IIS 6.0 and Windows Server 2003 it seems to be causing us problem. How should we replace it with .NET (2.0) functionality?</p>
<ul>
<li>A Webservice?</li>
<li>A Com DLL in .NET?</li>
<li>Some other option?</li>
</ul>
<p>Assume re-writing the asp classic pages is out of the question.</p>
<p><strong>EDIT</strong>: If rewriting it as a com accessible assembly, won't this leave the same issues with Com+?</p>
http://stackoverflow.com/questions/1745070/oop-registration-system/1745073#17450732Answer by C. Ross for OOP Registration SystemC. Ross2009-11-16T21:48:28Z2009-11-16T21:48:28Z<p>I suggest using a <a href="http://en.wikipedia.org/wiki/Decision%5Ftable" rel="nofollow">decision table</a> (<a href="http://www.d.umn.edu/~gshute/softeng/table-driven.html" rel="nofollow">Table Driven Design</a>). Obviously you should store the prices in some sort of configuration table at any rate.</p>
http://stackoverflow.com/questions/1742281/korn-shell-creating-a-fixed-width-text-file0Korn Shell - Creating a fixed width text fileC. Ross2009-11-16T13:44:44Z2009-11-16T16:17:49Z
<p>I need to create a simple fixed width text file in KShell. My <a href="http://stackoverflow.com/questions/1730183/korn-shell-printf-padding-a-string">current attempt</a> using printf to pad the string isn't working out very well. What's the shortest, cleanest way to create a fixed width string in shell?</p>
http://stackoverflow.com/questions/1730183/korn-shell-printf-padding-a-string0Korn Shell Printf - Padding a stringC. Ross2009-11-13T16:07:57Z2009-11-16T13:37:32Z
<p>I'm attempting to write a Korn Shell function that uses printf to pad a string to a certain width.</p>
<p>Examples:</p>
<p>Call</p>
<pre><code>padSpaces Hello 10
</code></pre>
<p>Output</p>
<pre><code>'Hello '
</code></pre>
<p>I currently have:</p>
<pre><code>padSpaces(){
WIDTH=$2
FORMAT="%-${WIDTH}.${WIDTH}s"
printf $FORMAT $1
}
</code></pre>
<p><strong>Edit:</strong> This seems to be working, in and of itself, but when I assign this in the script it seems to lose all but the first space.</p>
<pre><code>TEXT=`padSpaces "TEST" 10`
TEXT="${TEXT}A"
echo ${TEXT}
</code></pre>
<p>Output:</p>
<pre><code>TEST A
</code></pre>
<p>I'm also open to suggestions that don't use printf. What I'm really trying to get at is a way to make a fixed width file from kshell.</p>
http://stackoverflow.com/questions/1729254/how-to-architect-an-offline-database/1729299#17292991Answer by C. Ross for How to Architect an offline databaseC. Ross2009-11-13T13:50:33Z2009-11-13T13:50:33Z<p><a href="http://www.microsoft.com/Sqlserver/2005/en/us/compact.aspx" rel="nofollow">SQL Server Compact Edition</a> was designed for exactly this process. It has features for syncing, but note that it doesn't have <em>full</em> SQL functionality (ie, views, indexing, etc).</p>
http://stackoverflow.com/questions/1710501/autopopulate-textboxes-in-sieble-crm-system-trough-webbrowser1-in-c/1710529#17105290Answer by C. Ross for Autopopulate textboxes in Sieble CRM system, trough webBrowser1 in c#C. Ross2009-11-10T19:24:52Z2009-11-11T02:49:21Z<p>Sounds like you need to just search through the html (manually) until you find the names/ids of the fields you need to set.</p>
<p>Also, if the site supports Firefox, try using <a href="http://getfirebug.com/" rel="nofollow">Firebug</a>. In Firebug's inspect mode you can mouse over a text field and get the id of it.</p>
http://stackoverflow.com/questions/1903373/find-a-new-job-or-go-back-to-old-oneComment by C. Ross on Find a new job or go back to old one?C. Ross2009-12-14T20:46:45Z2009-12-14T20:46:45ZWhy live life for the resume? If it comes up later on, just explain it.http://stackoverflow.com/questions/1903309/help-with-hill-climbing-algorithmComment by C. Ross on Help with hill climbing algorithmC. Ross2009-12-14T20:38:00Z2009-12-14T20:38:00ZYour tagging calls out for me to close this.http://stackoverflow.com/questions/1901606/collection-randomization-using-extension-methodComment by C. Ross on Collection Randomization using Extension MethodC. Ross2009-12-14T15:42:35Z2009-12-14T15:42:35ZThat does NOT qualify as an exact duplicate.http://stackoverflow.com/questions/1901311/how-to-implement-searching-on-a-vertically-designed-table/1901379#1901379Comment by C. Ross on How to implement searching on a vertically designed table?C. Ross2009-12-14T15:02:03Z2009-12-14T15:02:03ZNeed 1 join per search field. Ugly in reality, and SLOW.http://stackoverflow.com/questions/1901303/resource-string-locationComment by C. Ross on Resource String LocationC. Ross2009-12-14T14:52:45Z2009-12-14T14:52:45ZI'm not sure I understand what you mean. Wouldn't a "resource" string by definition be placed in the project resources?http://stackoverflow.com/questions/1890742/why-is-it-elif-and-not-elsif-in-c-cComment by C. Ross on Why is it #elif and not #elsif in C/C++C. Ross2009-12-11T20:44:10Z2009-12-11T20:44:10ZWhy was this downvoted, seems like a reasonable question to me.http://stackoverflow.com/questions/1890493/view-the-value-of-a-variable-in-net-cComment by C. Ross on View the value of a variable in .NET C#?C. Ross2009-12-11T20:03:57Z2009-12-11T20:03:57ZIs this a web application, console, or winforms? The answer differs based on that.http://stackoverflow.com/questions/1889944/does-the-gpl-scare-youComment by C. Ross on Does the GPL scare you?C. Ross2009-12-11T18:23:30Z2009-12-11T18:23:30ZWhat was the question again?http://stackoverflow.com/questions/1882283/uniformly-handling-error-codes-in-an-unmanaged-apiComment by C. Ross on Uniformly handling error codes in an unmanaged APIC. Ross2009-12-10T18:14:34Z2009-12-10T18:14:34Z+1 Sounds cool. Sorry I don't have an answer for you, but good luck!http://stackoverflow.com/questions/1881333/how-to-convert-the-current-class-name-of-asp-net-usercontrols-to-string-on-c/1881385#1881385Comment by C. Ross on How to convert the current class name of asp.net usercontrols to string on c#?C. Ross2009-12-10T15:07:19Z2009-12-10T15:07:19ZThe Type.Name property will not contain the namespace. Type.FullName will contain the class name.
http://stackoverflow.com/questions/512174/non-web-sql-injection/512200#512200Comment by C. Ross on Non-web SQL InjectionC. Ross2009-12-09T22:14:56Z2009-12-09T22:14:56Z+1 Good point about the data validation.http://stackoverflow.com/questions/1876663/how-do-i-allow-ctrl-v-paste-on-a-winforms-textboxComment by C. Ross on How do I allow CTRL-V (Paste) on a Winforms Textbox?C. Ross2009-12-09T20:30:30Z2009-12-09T20:30:30ZNot really related to this code if OTHER text boxes with no events do the same thing eh?http://stackoverflow.com/questions/1875683/what-is-slouch-programmingComment by C. Ross on What is "Slouch Programming"?C. Ross2009-12-09T18:06:16Z2009-12-09T18:06:16ZIt was a trick question, or BS, or something, hence, no answer.http://stackoverflow.com/questions/1875571/net-regular-expression-to-match-anything-else/1875586#1875586Comment by C. Ross on .NET regular expression to match "anything else"C. Ross2009-12-09T17:46:22Z2009-12-09T17:46:22ZShouldn't that be ...|([\s\S]*?) to actually capture the rest?http://stackoverflow.com/questions/1875449/more-efficient-way-to-go-through-an-array-in-phpComment by C. Ross on More efficient way to go through an array in PHPC. Ross2009-12-09T17:24:44Z2009-12-09T17:24:44ZAre you looking for a more computationally efficient (faster) way, or a more efficient characters of code way (less typing)? I doubt there is one for the former.