User Metro - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T08:03:12Zhttp://stackoverflow.com/feeds/user/18978http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/982376/using-a-bindingsource-in-a-usercontrol4Using a BindingSource in a UserControlMetro2009-06-11T17:09:21Z2009-09-24T09:30:46Z
<p>I have a UserControl with multiple fields that I would like to have bound to a BindingSource. I would also like the UserControl to expose some BindingSource property so that it can be dropped on a Form and be bound to the BindingSource on the form. Is there an easy way to do this? I realize that I can rebind all of the controls of the UserControl in its BindSource setter. But this seems wrong. Is there some BindingSource Proxy that will let me link the BindingSource in the user control to the BindingSource in the form?</p>
http://stackoverflow.com/questions/810853/oracle-sysconnectbypath-hitting-4000-character-limit/1274075#12740750Answer by Metro for Oracle SYS_CONNECT_BY_PATH hitting 4000 character limitMetro2009-08-13T19:26:21Z2009-08-13T19:26:21Z<p>I was understanding that the 4000 character limit for varchar2 was only for columns -- that varchar2 lengths were actually allowed to go MUCH larger, for example in PL/SQL. Are you sure that your query is not recursing incorrectly and generating some large cartesian product?</p>
http://stackoverflow.com/questions/167096/is-the-order-of-objects-returned-by-foreach-stable5Is the order of objects returned by FOREACH stable?Metro2008-10-03T14:19:41Z2009-02-26T17:13:33Z
<p>Is it safe to assume that two itterations over the same collection will return the objects in the same order? Obviously, it is assumed that the collection has not otherwise been changed.</p>
http://stackoverflow.com/questions/103034/vs2008-debugger-does-not-break-on-unhandled-exception1VS2008 Debugger does not break on unhandled exceptionMetro2008-09-19T15:41:13Z2009-02-12T23:19:58Z
<p>I'm having an odd problem with my vs debugger. When running my program under the vs debugger, the debugger does not break on an unhandled exception. Instead control is returned to VS as if the program exited normally. If I look in the output tab, There is a first-chance exeption listed just before the thread termination.</p>
<p>I understand how to use the "Exceptions" box from the Debug menu. I have the break on unhandled exceptions checked. If I check first-chance exceptions for the specific exeption that is occuring, the debugger will stop.</p>
<p>However, it is my understanding that the debugger should also stop on any 'Unhandled-Exceptions'. It is not doing this for me.</p>
<p>Here are the last few lines of my Output tab:</p>
<pre><code>A first chance exception of type 'System.ArgumentOutOfRangeException' occurred in mscorlib.dll
The thread 0x60c has exited with code 0 (0x0).
The program '[3588] ALMSSecurityManager.vshost.exe: Managed' has exited with code -532459699 (0xe0434f4d).
</code></pre>
<p>I don't understand why the exception is flagges as a "first chance" exception when it is unhandled.</p>
<p>I believe that the 0xe0434f4d exit code is a generic COM error.</p>
<p>Any Ideas?</p>
<p>Metro.</p>
http://stackoverflow.com/questions/528680/do-strongly-typed-datasets-improve-performance/528725#5287251Answer by Metro for Do Strongly Typed Datasets improve performance?Metro2009-02-09T15:55:19Z2009-02-09T15:55:19Z<p>Strongly typed DataSets are just a strongly typed wrapper over the same untyped DataSet that you would otherwise use. With the assumption that you would use the untyped DataSet in a reasonable, efficient manner, a strongly typed DataSet would not be faster (execution-wise).</p>
http://stackoverflow.com/questions/345187/math-mapping-numbers/345551#3455510Answer by Metro for Math - mapping numbersMetro2008-12-05T23:57:35Z2008-12-05T23:57:35Z<p>As an aside, this is the same problem as the classic convert celcius to farenheit where you want to map a number range that equates 0 - 100 (C) to 32 - 212 (F).</p>
http://stackoverflow.com/questions/321299/what-is-the-reason-not-to-use-select/322014#3220141Answer by Metro for What is the reason not to use select * ?Metro2008-11-26T20:22:14Z2008-11-26T20:22:14Z<p>To answer you question directly: Do not use "SELECT *" when it makes your code more fragle to changes to the underlying tables. Your code should break only when a change is made to the table that directly affects requirments of your program.</p>
<p>Your application should take advantage of the abstraction layer that Relational access provides.</p>
http://stackoverflow.com/questions/284113/do-you-follow-the-naming-convention-of-the-original-programmer/284170#2841701Answer by Metro for Do you follow the naming convention of the original programmer?Metro2008-11-12T14:48:48Z2008-11-12T14:48:48Z<p>I think of making a bug fix as a surgical procedure. Get in, disturb as little as possible, fix it, get out, leave as little trace of your being there as possible.</p>
http://stackoverflow.com/questions/202323/stackoverflow-atom-feed-to-use-with-vs2008-start-page3StackOverflow atom feed to use with VS2008 Start PageMetro2008-10-14T18:42:48Z2008-11-03T16:29:40Z
<p>Is there a URL for StackOverflow that I can use on the VS startpage in place of the never updated MS page? The URL that VS uses can be set on the Tools->Options::Startup dialog.</p>
<p>I've tried <a href="http://stackoverflow.com/feeds">http://stackoverflow.com/feeds</a> VS complaints with the following error:</p>
<blockquote>
<p>The current news channel might not be
a valid RSS feed, or your internet
connection might be unavailable. To
change the news channel, on the Tools
menu, click Options, then expand
Environment and click Startup.</p>
</blockquote>
http://stackoverflow.com/questions/140632/show-all-files-option-missing-in-vs-database-project2"Show All Files" option missing in VS Database ProjectMetro2008-09-26T16:45:54Z2008-11-02T01:33:17Z
<p>The VS Database Project does not seem to have the "Show All Files" option in the Solution Explorer. Does anyone know of a way to turn the option on in VS?</p>
<p>The "Show All Files" option on the solution explorer actually does two things. With the option selected, VS shows "hidden/nested" files within the project AND it shows files within the directory of the project that are not currently part of the project. (It shows the latter with a ghosted icon.)</p>
<p>While DB projects may not have nested or hidden files within the project, there is no other way that I know of to have the solution explorer show files within the directory that are not part of the project.</p>
<p>Also, while this action occurs within the solution explorer, it is actually a project issue.</p>
http://stackoverflow.com/questions/140627/session-variables-and-web-services/140656#1406562Answer by Metro for Session Variables and Web ServicesMetro2008-09-26T16:51:08Z2008-10-17T20:43:14Z<p>If you are using ASP.NET web services and you want to have a session environment maintained for you, you need to embellish your web service method with an attribute that indicates you require a session.</p>
<pre><code>[WebMethod(EnableSession = true)]
public void MyWebService()
{
Foo foo;
Session["MyObjectName"] = new Foo();
foo = Session["MyObjectName"] as Foo;
}
</code></pre>
<p>Once you have done this, you may access session objects similar to aspx.</p>
<p>Metro.</p>
http://stackoverflow.com/questions/185327/oracle-joins-left-outer-right-etc-s/185567#1855671Answer by Metro for Oracle joins ( left outer, right, etc. :S ) Metro2008-10-09T01:11:00Z2008-10-09T01:20:59Z<p>I would suggest that what you want is the earliest record (presumably, but not necessarily the one with activity=1) and the most recent record (regardless of activity number). If the activity of the most recent record is 4 then the ticket is closed. otherwise, the participant is the current holder of the ticket. There is a potential bug introduced by just matching on activity = 4 if the ticket can be re-opened.</p>
<p>Actually, based upon your example, you may not even need the earliest record. How about the following:</p>
<pre><code>SELECT
identifier,
activity,
participant,
closedate
FROM
performance a
WHERE
(a.identifier, a.closedate) in
(select b.identifier, max(b.closedate)
from performance b
group by b.identifier
)
;
</code></pre>
http://stackoverflow.com/questions/161991/what-makes-an-application-an-enterprise-or-enterprise-level-application/180523#1805230Answer by Metro for What makes an application an "enterprise" or "enterprise-level" application?Metro2008-10-07T21:31:02Z2008-10-07T21:31:02Z<p>I can come up with a couple of criteria that I have encountered in the enterprise applications I have worked on:</p>
<ul>
<li>Software is installed in multiple separate security domains.</li>
<li>Ownership (prioritization of enhancements) is shared across multiple peer organizations.</li>
<li>Cost is spread across multiple organizations, sometimes by usage, sometimes by ability to pay.</li>
<li>Support (enhancements, implementations, bug fixes) is centralized.</li>
<li>Administration is centralized.</li>
</ul>
http://stackoverflow.com/questions/124336/a-way-of-casting-a-base-type-to-a-derived-type/124465#1244650Answer by Metro for A way of casting a base type to a derived typeMetro2008-09-23T23:01:22Z2008-09-23T23:01:22Z<p>This will work:</p>
<pre><code>SomeBaseClass class = new SomeDerivedClass();
SomeDerivedClass derClass = (SomeDerivedClass)class;
</code></pre>
<p>Although this example is not too interesting, there are cases when this is useful.</p>
<p>Metro.</p>
http://stackoverflow.com/questions/118501/what-would-a-database-diagram-er-diagram-table-layout-look-like-for-measuring-d/118841#1188413Answer by Metro for What would a Database Diagram (ER Diagram/Table Layout) look like for measuring distribution of something?Metro2008-09-23T02:50:16Z2008-09-23T02:55:57Z<p>I think that the actual activity would create some type of record with at least an ActivityId and ActivityDate in a logging table. An other column might be the identifier of the computer creating the log entry.</p>
<p>You would then create the count by aggregating the activity records over a specified time period.</p>
<p>Metro.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111937#1119372Answer by Metro for What did you use to teach yourself python?Metro2008-09-21T20:09:25Z2008-09-21T21:00:05Z<p>My daughter was a TA at MIT for a Intro Computer class that used Python. I worked through their weekly programming assignments.</p>
<p>Here is a link that has the course's assignments for the semester before my daughter TA'd it.</p>
<p><a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-00Fall-2007/Assignments/index.htm" rel="nofollow">6.00 Introduction to Computer Science and Programming</a></p>
<p>Metro.</p>
http://stackoverflow.com/questions/103034/vs2008-debugger-does-not-break-on-unhandled-exception/103367#1033672Answer by Metro for VS2008 Debugger does not break on unhandled exceptionMetro2008-09-19T16:17:06Z2008-09-21T20:06:08Z<p>When I read the answer about having two check boxes in the "Exception..." dialog, I went back and opened the dialog again. I only had one column of check boxes -- for break on "Thrown".</p>
<p>As it turns out, if you do not have "Enable Just My Code (Managed Only)" checked in the Debug options, the "User-Unhandled" column does not show in the "Exceptions" dialog.</p>
<p>I selected the "Enable Just My Code" option and verified that the "User-unhandled" checkbox on the "Exceptions" dialog was selected for all of the exception categories.</p>
<p>I was able to get unhandled exceptions to break into the debugger for one session. But when I came back the next day, the behavior was as before.</p>
<p>Metro.</p>
http://stackoverflow.com/questions/140632/show-all-files-option-missing-in-vs-database-project/140651#140651Comment by Metro on "Show All Files" option missing in VS Database ProjectMetro2009-03-03T19:32:44Z2009-03-03T19:32:44ZAlthough the DB projest do not nest files, the option is still quite relevant. It also has the behavior to show files in the project directory that are not currently part of the project. These files are shown greyed-out. By right clicking one of these files you can "Include in Project".http://stackoverflow.com/questions/103034/vs2008-debugger-does-not-break-on-unhandled-exception/543980#543980Comment by Metro on VS2008 Debugger does not break on unhandled exceptionMetro2009-03-03T19:28:13Z2009-03-03T19:28:13ZI never did find an answer to this problem. Since then, I have upgraded from Windows/XP to Vista Business. I no longer have the problem. I assume it has more to do with a clean install of VS2008 rather than a different operating system.http://stackoverflow.com/questions/185327/oracle-joins-left-outer-right-etc-s/185567#185567Comment by Metro on Oracle joins ( left outer, right, etc. :S ) Metro2008-10-09T15:56:30Z2008-10-09T15:56:30ZNot to belabor this approach, but you can further qualify the where clause to select only the activities you are interested in such as: "AND activity IN (1,2,4)"http://stackoverflow.com/questions/124325/net-generic-method-question/124419#124419Comment by Metro on .NET Generic Method QuestionMetro2008-09-24T00:03:57Z2008-09-24T00:03:57ZThat is not quite right. T can be any object that implements ITypeEntity. This is a correct use of generics.http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net/124261#124261Comment by Metro on Why are Exceptions not Checked in .NET?Metro2008-09-23T22:38:33Z2008-09-23T22:38:33ZSince I don't have enough rep to edit the answer, here is a link to spec# info:
<a href="http://research.microsoft.com/SpecSharp/" rel="nofollow">research.microsoft.com/SpecSharp</a>http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121604#121604Comment by Metro on What is the one programming skill you have always wanted to master but haven't had time?Metro2008-09-23T18:33:24Z2008-09-23T18:33:24ZC++ was the first language I encounter that I felt could not be self-taught. I'm not talking about being able to use it, I'm talking about being completely competant with all facets including templates, multiple inheritance, etc.