User C. Ross - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T05:45:27Z http://stackoverflow.com/feeds/user/16487 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1903680/pitfalls-of-event-handling-in-java 1 Pitfalls of Event Handling in Java C. Ross 2009-12-14T21:38:42Z 2009-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#1903709 1 Answer by C. Ross for How to Consume a Web Service in a .NET Class Project C. Ross 2009-12-14T21:44:27Z 2009-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#1903213 4 Answer by C. Ross for Should I keep a SerialPort connection open? C. Ross 2009-12-14T20:17:18Z 2009-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#1903147 4 Answer by C. Ross for Which Exception to throw when a method try to use a field that can be null? C. Ross 2009-12-14T20:02:40Z 2009-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-set 1 Korn Shell - Test with variable that may be not set C. Ross 2009-12-11T21:49:49Z 2009-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#1889813 0 Answer by C. Ross for Parameter converted from null to DateTime.MinValue when called using Invoke in C# 2.0 C. Ross 2009-12-11T18:00:56Z 2009-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-batch 1 Howcan I get started with Spring Batch? C. Ross 2009-10-22T20:36:07Z 2009-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#1883761 0 Answer by C. Ross for to open up an excel file, do I need any special references? C. Ross 2009-12-10T20:24:09Z 2009-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#1881385 1 Answer by C. Ross for How to convert the current class name of asp.net usercontrols to string on c#? C. Ross 2009-12-10T14:34:39Z 2009-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#1870699 0 Answer by C. Ross for n-tier architecture: best place to store business objects? C. Ross 2009-12-08T23:51:13Z 2009-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#1869978 1 Answer by C. Ross for Killing this NumberFormatException C. Ross 2009-12-08T21:31:27Z 2009-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#1869770 3 Answer by C. Ross for DataSet Operations C. Ross 2009-12-08T20:55:32Z 2009-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&lt;DataRow&gt; resultList = new List&lt;DataRow&gt;(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#1867686 0 Answer by C. Ross for Unwanted escape characters in string C. Ross 2009-12-08T15:26:09Z 2009-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#1868462 0 Answer by C. Ross for Upgraded to Sql Server 2008. Now one query is running really slow C. Ross 2009-12-08T17:17:31Z 2009-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#1863040 3 Answer by C. Ross for C# multi method attached to event, how to handle return value? C. Ross 2009-12-07T21:31:15Z 2009-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&lt;bool&gt; getReturnCodes(){ //... } } </code></pre> http://stackoverflow.com/questions/1861780/convert-values-in-string-to-float-array/1861810#1861810 0 Answer by C. Ross for convert values in string to float array C. Ross 2009-12-07T18:06:17Z 2009-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 &lt;stdio.h&gt; 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", &amp;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#1852044 2 Answer by C. Ross for How to create parameterized queries in vb.net? C. Ross 2009-12-05T12:03:14Z 2009-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#1848349 1 Answer by C. Ross for How can I store different objects in a single list C. Ross 2009-12-04T17:06:15Z 2009-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#1833307 1 Answer by C. Ross for How to get free impartial code reviews / advice? C. Ross 2009-12-02T14:41:18Z 2009-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#1819800 0 Answer by C. Ross for DataLayer in Linq with different version of Data model C. Ross 2009-11-30T13:23:26Z 2009-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#1808780 0 Answer by C. Ross for What is the most interesting server name you have seen? C. Ross 2009-11-27T13:27:49Z 2009-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-java 3 Which hash to use for file uniqueness in Java C. Ross 2009-11-23T21:56:23Z 2009-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#1770329 3 Answer by C. Ross for How do I pause VBS script while folder is deleted? C. Ross 2009-11-20T13:07:10Z 2009-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-language 2 Where can I find a Vim syntax file for the go language? C. Ross 2009-11-18T17:12:31Z 2009-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-net 0 How to replace VB6 Com+ DLL with .NET C. Ross 2009-05-07T17:40:40Z 2009-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#1745073 2 Answer by C. Ross for OOP Registration System C. Ross 2009-11-16T21:48:28Z 2009-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-file 0 Korn Shell - Creating a fixed width text file C. Ross 2009-11-16T13:44:44Z 2009-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-string 0 Korn Shell Printf - Padding a string C. Ross 2009-11-13T16:07:57Z 2009-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#1729299 1 Answer by C. Ross for How to Architect an offline database C. Ross 2009-11-13T13:50:33Z 2009-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#1710529 0 Answer by C. Ross for Autopopulate textboxes in Sieble CRM system, trough webBrowser1 in c# C. Ross 2009-11-10T19:24:52Z 2009-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-one Comment by C. Ross on Find a new job or go back to old one? C. Ross 2009-12-14T20:46:45Z 2009-12-14T20:46:45Z Why live life for the resume? If it comes up later on, just explain it. http://stackoverflow.com/questions/1903309/help-with-hill-climbing-algorithm Comment by C. Ross on Help with hill climbing algorithm C. Ross 2009-12-14T20:38:00Z 2009-12-14T20:38:00Z Your tagging calls out for me to close this. http://stackoverflow.com/questions/1901606/collection-randomization-using-extension-method Comment by C. Ross on Collection Randomization using Extension Method C. Ross 2009-12-14T15:42:35Z 2009-12-14T15:42:35Z That does NOT qualify as an exact duplicate. http://stackoverflow.com/questions/1901311/how-to-implement-searching-on-a-vertically-designed-table/1901379#1901379 Comment by C. Ross on How to implement searching on a vertically designed table? C. Ross 2009-12-14T15:02:03Z 2009-12-14T15:02:03Z Need 1 join per search field. Ugly in reality, and SLOW. http://stackoverflow.com/questions/1901303/resource-string-location Comment by C. Ross on Resource String Location C. Ross 2009-12-14T14:52:45Z 2009-12-14T14:52:45Z I'm not sure I understand what you mean. Wouldn't a &quot;resource&quot; string by definition be placed in the project resources? http://stackoverflow.com/questions/1890742/why-is-it-elif-and-not-elsif-in-c-c Comment by C. Ross on Why is it #elif and not #elsif in C/C++ C. Ross 2009-12-11T20:44:10Z 2009-12-11T20:44:10Z Why was this downvoted, seems like a reasonable question to me. http://stackoverflow.com/questions/1890493/view-the-value-of-a-variable-in-net-c Comment by C. Ross on View the value of a variable in .NET C#? C. Ross 2009-12-11T20:03:57Z 2009-12-11T20:03:57Z Is this a web application, console, or winforms? The answer differs based on that. http://stackoverflow.com/questions/1889944/does-the-gpl-scare-you Comment by C. Ross on Does the GPL scare you? C. Ross 2009-12-11T18:23:30Z 2009-12-11T18:23:30Z What was the question again? http://stackoverflow.com/questions/1882283/uniformly-handling-error-codes-in-an-unmanaged-api Comment by C. Ross on Uniformly handling error codes in an unmanaged API C. Ross 2009-12-10T18:14:34Z 2009-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#1881385 Comment by C. Ross on How to convert the current class name of asp.net usercontrols to string on c#? C. Ross 2009-12-10T15:07:19Z 2009-12-10T15:07:19Z The 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#512200 Comment by C. Ross on Non-web SQL Injection C. Ross 2009-12-09T22:14:56Z 2009-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-textbox Comment by C. Ross on How do I allow CTRL-V (Paste) on a Winforms Textbox? C. Ross 2009-12-09T20:30:30Z 2009-12-09T20:30:30Z Not 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-programming Comment by C. Ross on What is "Slouch Programming"? C. Ross 2009-12-09T18:06:16Z 2009-12-09T18:06:16Z It was a trick question, or BS, or something, hence, no answer. http://stackoverflow.com/questions/1875571/net-regular-expression-to-match-anything-else/1875586#1875586 Comment by C. Ross on .NET regular expression to match "anything else" C. Ross 2009-12-09T17:46:22Z 2009-12-09T17:46:22Z Shouldn't that be ...|([\s\S]*?) to actually capture the rest? http://stackoverflow.com/questions/1875449/more-efficient-way-to-go-through-an-array-in-php Comment by C. Ross on More efficient way to go through an array in PHP C. Ross 2009-12-09T17:24:44Z 2009-12-09T17:24:44Z Are 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.