User Euro Micelli - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T17:26:02Zhttp://stackoverflow.com/feeds/user/2230http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/34493/excel-list-ranges-targeted-by-indirect-formulas2Excel: list ranges targeted by INDIRECT formulasEuro Micelli2008-08-29T15:49:25Z2009-09-15T19:34:07Z
<p>We have a few very large Excel workbooks (dozens of tabs, over a MB each, very complex calculations) with many dozens, perhaps hundreds of formulas that use the dreaded INDIRECT function. These formulas are spread out throughout the workbook, and target several tables of data to look-up for values.</p>
<p>Now I need to move the ranges of data that are targeted by these formulas to a different location in the same workbook.</p>
<p>(The reason is not particularly relevant, but interesting on its own. We need to run these things in Excel Calculation Services and the latency hit of loading each of the rather large tables one at a time proved to be unacceptably high. We are moving the tables in a contiguous range so we can load them all in one shot.)</p>
<p><strong>Is there any way to locate all the INDIRECT formulas that currently refer to the tables we want to move?</strong></p>
<p>I don't need to do this on-line. I'll happily take something that takes 4 hours to run as long as it is reliable.</p>
<p>Be aware that the .Precedent, .Dependent, etc methods only track direct formulas.</p>
<p>(Also, rewriting the spreadsheets in <em>whatever</em> is not an option for us).</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1253769/explicit-loading-of-dll/1256451#12564510Answer by Euro Micelli for Explicit Loading of DLLEuro Micelli2009-08-10T18:30:37Z2009-08-10T18:30:37Z<p>I would be very careful if I were you: the STL library was not designed to be used across compilation boundaries like that.</p>
<p>Not that it cannot be done, but you need to know what you are getting into.</p>
<p>This means that using STL classes across DLL boundaries can safely work only if you compile your EXE with the same exact compiler and version, and the same settings (especially DEBUG vs. RELEASE) as the original DLL. And I do mean "exact" match.</p>
<p>The C++ standard STL library is a specification of behavior, not implementation. Different compilers and even different revisions of the same compiler can, and will, differ on the code and data implementations. When your library returns you an <code>std::map</code>, it's giving you back the bits that work with the DLL's version of the STL, not necessarily the STL code compiled in your EXE.</p>
<p>(and I'm not even touching on the fact that name mangling can also differ from compiler to compiler)</p>
<p>Without more details on your circumstances, I can't be sure; but this can be a can of worms.</p>
http://stackoverflow.com/questions/71980/how-do-you-efficiently-copy-bstr-to-wchart/73928#739282Answer by Euro Micelli for How do you efficiently copy BSTR to wchar_t[] ?Euro Micelli2008-09-16T15:59:55Z2009-08-08T02:42:08Z<p>First, you might not actually have to do anything at all, if all you need to do is read the contents. A BSTR type is a pointer to a null-terminated wchar_t array already. In fact, if you check the headers, you will find that BSTR is essentially defined as:</p>
<pre><code>typedef BSTR wchar_t*;
</code></pre>
<p>So, the compiler can't distinguish between them, even though they have different semantics.</p>
<p>There is are two important caveat.</p>
<ol>
<li><p><s>BSTRs are supposed to be immutable. You should never change the contents of a BSTR after it has been initialized. If you "change it", you have to create a new one assign the new pointer and release the old one (if you own it).</s><br />
<i>[<strong>UPDATE</strong>: this is not true; sorry! You can modify BSTRs in place; I very rarely have had the need.]</i></p></li>
<li><p>BSTRs are allowed to contain embedded null characters, whereas traditional C/C++ strings are not.</p></li>
</ol>
<p>If you have a fair amount of control of the source of the BSTR, and can guarantee that the BSTR does not have embedded NULLs, you can read from the BSTR as if it was a wchar_t and use conventional string methods (wcscpy, etc) to access it. If not, your life gets harder. You will have to always manipulate your data as either more BSTRs, or as a dynamically-allocated array of wchar_t. Most string-related functions will not work correctly.</p>
<p>Let's assume you control your data, or don't worry about NULLs. Let's assume also that you really need to make a copy and can't just read the existing BSTR directly. In that case, you can do something like this:</p>
<pre><code>UINT length = SysStringLen(myBstr); // Ask COM for the size of the BSTR
wchar_t *myString = new wchar_t[lenght+1]; // Note: SysStringLen doesn't
// include the space needed for the NULL
wcscpy(myString, myBstr); // Or your favorite safer string function
// ...
delete myString; // Done
</code></pre>
<p>If you are using class wrappers for your BSTR, the wrapper should have a way to call SysStringLen() for you. For example:</p>
<pre><code>CComBString use .Length();
_bstr_t use .length();
</code></pre>
<p><strong>UPDATE</strong>: This is a good article on the subject by someone far more knowledgeable than me:<br />
<a href="http://blogs.msdn.com/ericlippert/archive/2003/09/12/52976.aspx" rel="nofollow">"Eric [Lippert]'s Complete Guide To BSTR Semantics"</a>
<strong>UPDATE</strong>: Replaced strcpy() with wcscpy() in example</p>
http://stackoverflow.com/questions/1228567/how-to-call-the-rj45-as-a-serial-port-for-interfacing/1228746#12287461Answer by Euro Micelli for How to call the RJ45 as a serial port for interfacing?Euro Micelli2009-08-04T17:07:43Z2009-08-04T17:07:43Z<p>The USB port has been starting to take over the duties of RS-232 for the last few years. </p>
<p>You should seriously consider USB as an interface for your project.</p>
<p><br></p>
<p>Oh, yes; that might seem like a ludicrously obvious statement -- <em>"duh! nobody's been using Serial for a decade now"</em>.</p>
<p>Not so easy: there is a lot more than mice and printers out there.</p>
<p>RS-232 has been the preferred interface for custom-build devices, scientific instruments, and low-production devices far long after everybody started using USB for mice and high volume consumer devices.</p>
<p>My most direct experience comes from amateur astronomy and accessibility computer accessories for the visually-impaired. Until not too long ago, all of the above were still mainly RS232 devices, and a common headache has been finding a way to plug those in a modern laptop. RS232-to-USB consumer adapted will sometimes work, sometimes not. At least one manufacturer of accessibility devices (a braille embosser) has stated to us that they don't recommend RS232-to-USB adapters because they have had (unspecified) problems with them.</p>
<p>I don't know the cause. Maybe USB components are more expensive, maybe it's the need to interface with legacy devices that would be expensive to redesign; maybe it's what the engineers know. Maybe it's just "ain't broken, don't fix it" or simple inertia.</p>
<p>It's only been in the last couple of years, but I've finally seen a number of these devices offered with USB ports instead of serial RS232; in some cases, RS-232 versions have been discontinued. It's just taking a little longer.</p>
http://stackoverflow.com/questions/1228173/c-newbie-listinterface-question/1228277#12282771Answer by Euro Micelli for C# newbie List<Interface> questionEuro Micelli2009-08-04T15:43:05Z2009-08-04T15:43:05Z<p>Because a list of <code>IFoo</code>s can contain some <code>Bar</code>s as well, but a list of <code>IFoo</code>s <em>is not</em> the same thing as a list of <code>Bar</code>s.</p>
<p>Note that I used English above instead of using C#. I want to highlight that this is not a deep problem; you are just getting confused by the details of the syntax. To understand the answer you need to see beyond the syntax and think about what it actually means.</p>
<p>A list of <code>IFoo</code>s can contain a <code>Bar</code>, because a <code>Bar</code> is an <code>IFoo</code> as well. Here we're talking about the elements of the list. The list is still a list of <code>IFoo</code>s. We haven't changed that.</p>
<p>Now, the list you called <code>foo</code> is still a list of <code>IFoo</code>s (more pedantically, <code>foo</code> is declared as a <code>List<IFoo></code>). It cannot be anything else. In particular, it cannot be made into a list of <code>Bar</code>s (<code>List<Bar></code>). A list of <code>Bar</code> is a completely different object than a list of <code>IFoo</code>s.</p>
http://stackoverflow.com/questions/1209181/what-represents-a-double-in-sql-server/1209214#12092141Answer by Euro Micelli for What represents a double in sql server?Euro Micelli2009-07-30T20:38:18Z2009-07-30T21:36:17Z<p><code>float</code> in SQL Server actually has [edit:almost] the precision of a "double" (in a C# sense).</p>
<p><code>float</code> is a synonym for <code>float(53)</code>. 53 is the bits of the mantissa.</p>
<p>.NET <code>double</code> uses 54 bits for the mantissa.</p>
http://stackoverflow.com/questions/1207809/evaluation-question-c-runtime/1208050#12080501Answer by Euro Micelli for Evaluation question C# runtimeEuro Micelli2009-07-30T17:20:26Z2009-07-30T17:32:07Z<p><code>CSharpCodeProvider</code>; <code>switch</code> statements that pick the proper different "operators"; the DLR... they are all ways you could do this; but they seem weird solutions to me.</p>
<p>How about just using delegates?</p>
<p>Assuming your <code>Field</code> and <code>Value</code> are numbers, declare something like this:</p>
<pre><code>delegate bool MyOperationDelegate(decimal left, decimal right);
...
class Rule {
decimal Field;
decimal Value;
MyOperationDelegate Operator;
}
</code></pre>
<p>Now you can define your 'rule' as, for example, a bunch of lambdas:</p>
<pre><code>Rule rule1 = new Rule;
rule1.Operation = (decimal l, decimal r) => { return l > r; };
rule1.Field = ...
</code></pre>
<p>You can make arrays of rules and apply them whichever way you wish.</p>
<pre><code>IEnumerable<Rule> items = ...;
foreach(item in items)
{
if (item.Operator(item.Field, item.Value))
{ /* do work */ }
}
</code></pre>
<p>If <code>Field</code> and <code>Values</code> are not numbers, or the type depends on the specific rule, you can use <code>object</code> instead of <code>decimal</code>, and with a little bit of casting you can make it all work.</p>
<p>That's not a final design; it's just to give you some ideas (for example, you would likely have the class evaluate the delegate on its own via a <code>Check()</code> method or something).</p>
http://stackoverflow.com/questions/1194371/which-one-to-use-when-staticcast-and-reinterpretcast-have-the-same-effect/1195041#11950410Answer by Euro Micelli for Which one to use when static_cast and reinterpret_cast have the same effect?Euro Micelli2009-07-28T15:52:57Z2009-07-28T16:00:21Z<p>My normal advice:</p>
<p><code>reinterpret_cast<></code> is to be used only as a last resort. You're telling the compiler to throw away all caution, 'remove all the safeties', and trust your word that it is really Ok, no matter what the compiler knows about the code. You should only use it when nothing else will work.</p>
<p>There will be places where they might have the same effect <em>IF</em> you got the code right. If you eventually make changes and introduce a mistake and the cast is not correct anymore, <code>static_cast<></code> will probably catch it, but <code>reinterpret_cast<></code> will certainly not.</p>
<p>In this very particular scenario, that last argument doesn't hold as much: The API is imposing the semantics on you; they are well understood semantics; and you are casting a (void *).</p>
<p>Still, I would use <code>static_cast<></code>, and leave <code>reinterpret_cast<></code> for places where <strong>truly extraordinary</strong> circumstances force me to bypass the type safety. This is a "normal" cast that is required because of the C-compatible nature of the API.</p>
<p>(see also <a href="http://stackoverflow.com/questions/103512/in-c-why-use-staticcastintx-instead-of-intx/103868#103868">my post here</a> for more details on the differences between static_cast<> and reinterpret_cast<>)</p>
http://stackoverflow.com/questions/1103489/is-gdi-just-a-layer-on-top-of-gdi-or-something-new1Is GDI+ just a layer on top of GDI, or something new?Euro Micelli2009-07-09T12:19:46Z2009-07-09T13:23:21Z
<p>When GDI+ came out, I remember all the brouhaha about how it was the "new, faster, better" way to display stuff in Windows. But everytime I looked at it, it seemed to me that it was really just a COM wrapper around GDI.</p>
<p>Is that true? Or is GDI+ really an independent graphical library that simply shares some paradigms with GDI?</p>
<p>Personally, I'm not sure how it could be independent, but I never saw a definite statement one way or another.</p>
http://stackoverflow.com/questions/1054406/how-to-return-collection-objects-from-c-and-access-them-in-c/1083416#10834162Answer by Euro Micelli for How to return collection objects from c# and Access them in c++?Euro Micelli2009-07-05T03:47:39Z2009-07-05T03:47:39Z<p>@Partial, you raise an important point. You cannot pass a .NET "object" back to C++ (unless it's Managed C++) because .NET object semantics are not the same as C++ object semantics.</p>
<p>@Cute: you can, however, pass COM Interface Pointers. If you need your "traditional C++" code to talk to .NET objects, use COM Interfaces, not objects.</p>
<p>Make sure your object is marked as a COM object, and that you implement a suitable Interface that contains the methods that your C++ needs. Then, pass an array of the Interface references back to the C++ code. The C++ code should get a SafeArray of COM interface pointer, which it can manipulate with the usual COM semantics (AddRef(), etc.).</p>
http://stackoverflow.com/questions/972745/nullable-enums-and-linqtosql/972792#9727920Answer by Euro Micelli for Nullable enums(??) and LinqToSQLEuro Micelli2009-06-09T22:21:27Z2009-06-09T22:27:02Z<p><code>null</code> is untyped. You have to cast it explicitly because the ? operator in C# requires that the second argument must be of the exact same type (or implicitly convertible) as the first.</p>
<p>Because the two must be of the same type, and <code>null</code> cannot be cast to a value type, they both must of the nullable type:</p>
<pre><code>select new Action {
ParentContentType = action.ParentContentType != null ?
(ContentType?)Enum.ToObject(typeof(ContentType), action.ParentContentType) :
(ContentType?)null
};
</code></pre>
<p>However, this is pretty obscure. It never even occurred to me that you could create a nullable of an enum (I guess you can, since you posted the question -- I've never tried).</p>
<p>You will probably be better off with an enum value that means "nothing", as you suggested. That would be less surprising to most developers. You just don't expect an <code>enum</code> to be nullable.</p>
http://stackoverflow.com/questions/966767/passing-classic-asp-vbscript-parameters-byref-to-com-c/967695#9676953Answer by Euro Micelli for Passing Classic ASP VBScript Parameters ByRef to COM c++Euro Micelli2009-06-09T00:46:31Z2009-06-09T20:25:17Z<p>There are two problems:</p>
<p>First, you cannot retrieve values passed back as <code>[ref]</code> parameters from VBScript, unless they are of type <code>VARIANT</code> in the C++ code.</p>
<p>VBScript uses a late-binding technology called COM Automation, which routes every method call to COM objects through a single generic method call: <code>IDISPATCH:Invoke(...)</code>. (Visual Basic uses the same technology when you Dim a variable <code>As Object</code> and make calls on it)</p>
<p><code>Invoke()</code> takes a string which is the name of the method you are calling, and an array of parameters (plus other stuff that is not important here).</p>
<p>Your C++ object doesn't have to worry about it because ATL supports something called Dual Interface, which will do all the nasty work for you. When your object receives a call to <code>IDISPATCH:Invoke()</code>, ATL will:</p>
<ul>
<li>Look up the requested method name and Identify the corresponding method in your class (if it exists, otherwise it will throw an error back at VBScript).</li>
<li>Translate any input parameters, as needed, from <code>VARIANT</code> (technically <code>VARIANTARG</code>, which is almost identical) to their appropriate data type according to the method's signature (and will throw an error if they don't match what your method expects)</li>
<li>Call your <code>GetReportAccessRights()</code> method, with the unpackaged parameters.</li>
</ul>
<p>When your <code>GetReportAccessRights()</code> method returns, ATL repackages the <code>[retval]</code> parameter into a new <code>VARIANT</code> (techincally <code>VARIANTARG</code>) and returns that to VBScript.</p>
<p>Now, you <strong>can</strong> pass back <code>[ref]</code> values as well, but they <strong>have to</strong> be <code>VARIANT</code>s. ATL will not repackage any parameter value other than the <code>[retval]</code> for you, so you have to use a type of <code>VARIANT *</code> for any <code>[ref]</code> argument that you want to return back to the caller. When you do, ATL will leave the parameter undisturbed and VBScript will receive it back correctly.</p>
<p>To work with variants, the COM headers provides us with convenience macros and constants, which I'll use here (VT_BOOL, V_VT(), V_BOOL(), FAILED()):</p>
<p><strike></p>
<pre><code>// I usually initialize to Empty at the top of the method,
// before anything can go wrong.
VariantInit(bAllShared);
</code></pre>
<p></strike></p>
<pre><code>// My bad -- ignore the above. It applies to [out] parameters only.
// Because bAllShared is passed as a [ref] variable,
// calling VariantInit() on them would leak any preexisting value.
// Instead, read the incoming value from the variable (optional),
// then "clear" them before storing new values (mandatory):
// This API figures out what's in the variable and releases it if needed
// * Do nothing on ints, bools, etc.
// * Call pObj->Release() if an Object
// * Call SysFreeString() if a BSTR
// etc
VariantClear(bAllShared);
</code></pre>
<p>Initialize them; that would cause their previous values to leak.</p>
<p>To read a <code>VARIANT</code>:</p>
<pre><code>// Always check that the value is of the proper type
if (V_VT(bAllShared) == VT_BOOL ) {
// good
bool myArg = (V_BOOL(bAllShared) == VARIANT_TRUE);
} else {
// error, bad input
}
</code></pre>
<p>Or even better, you should always try to convert yourself, because VBScript users expect "True" and 1 to behave the same as a VARIANT_TRUE. Fortunately, COM has an awesome utility API for that:</p>
<pre><code>// This is exactly the same thing that VBScript does internally
// when you call CBool(...)
VARIANT v;
VariantInit(&v);
if( FAILED(VariantChangeType(&v, &bAllShared, 0, VT_BOOL) )
{
// error, can't convert
}
bool myArg = (V_BOOL(v) == VARIANT_TRUE);
</code></pre>
<p>To write to a <code>VARIANT</code>:</p>
<pre><code>// Internal working value
bool isShared;
...
// set the Variant's type to VARIANT_BOOL
V_VT(bAllShared) = VT_BOOL;
// set the value
V_BOOL(bAllShared) = (isShared ? VARIANT_TRUE : VARIANT_FALSE);
</code></pre>
<p>Now, the second problem is in your sample VBScript code:</p>
<pre><code>m_oReportManager.GetReportAccessRights _
CLng(m_lRptCod), CBool(bAllShared), CBool(bAllRunOnly), CBool(bAllCopy)
</code></pre>
<p>Because you are passing as arguments <code>CBool(something)</code>, etc, you are passing back temporary variables (the return value of CBool(...)), not the actual variable <code>bAllShared</code>, etc. Even with the correct C++ implementation, the returned values will be discarded as intermediate values.</p>
<p>You need to call the method like this:</p>
<pre><code>m_oReportManager.GetReportAccessRights _
CLng(m_lRptCod), bAllShared, bAllRunOnly, bAllCopy
</code></pre>
<p>That's right. you don't need to "convert" the values. VBScript will always pass a <code>VARIANT</code> no matter what you do. Don't worry, as I said above, even for input parameters of type bool, etc, ATL will make the call to <code>CBool()</code> for you.</p>
<p>(<em>ATL calls CBool()? Isn't that a VBScript function?</em> Yes, but CBool() is a simple wrapper around <code>VariantChangeType()</code>, and that is what ATL will call for you)</p>
<p><strong>Edit:</strong>
I forgot to mention something else: VBScript does NOT support <code>[out]</code> parameters; only <code>[ref]</code> parameters. Do NOT declare your parameters as <code>[out]</code> in C++. If your method declares <code>[out]</code> parameters, VBScript will act like they were <code>[ref]</code> parameters. That will cause the incoming values of the parameters to be leaked. If one of the [out] arguments had originally a string, that memory will be leaked; if it had an object, that object will never be destroyed.</p>
http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/972071#9720710Answer by Euro Micelli for Use of var keyword in C#Euro Micelli2009-06-09T19:33:54Z2009-06-09T19:33:54Z<p>There is bound to be disagreement near the edge cases, but I can tell you my personal guidelines.</p>
<p>I look at these the criteria when I decide to use <code>var</code>:</p>
<ul>
<li>The type of the variable is <em>obvious</em> [to a human] from the context</li>
<li>The exact type of the variable is <em>not particularly relevant</em> [to a human]<br />
<em>[e.g. you can figure out what the algorithm is doing without caring about what kind of container you are using]</em></li>
<li>The type name is very long and interrupts the readability of the code (<em>hint: usually a generic</em>)</li>
</ul>
<p>Conversely, these situations would push me to not use <code>var</code>:</p>
<ul>
<li>The type name is relatively short and easy to read (<em>hint: usually not a generic</em>)</li>
<li>The type is <em>not obvious</em> from the initializer's name</li>
<li>The exact type is very important to understand the code/algorithm</li>
<li>On class hierarchies, when a human can't easily tell which level of the hierarchy is being used</li>
</ul>
<p>Finally, I would never use <code>var</code> for native value types or corresponding <code>nullable<></code> types (<code>int</code>, <code>decimal</code>, <code>string</code>, <code>decimal?</code>, ...). There is an implicit assumption that if you use <code>var</code>, there must be "a reason".</p>
<p>These are all guidelines. You should also think also about the experience and skills of your coworkers, the complexity of the algorithm, the longevity/scope of the variable, etc, etc.</p>
<p>Most of the time, there is no perfect right answer. Or, it doesn't really matter.</p>
<p><em>[Edit: removed a duplicate bullet]</em></p>
http://stackoverflow.com/questions/958968/has-anybody-been-able-to-debug-asp-classic-code-with-visual-studio-2005-or-later/959061#9590615Answer by Euro Micelli for has anybody been able to debug asp classic code with visual studio 2005 or later?Euro Micelli2009-06-06T05:30:10Z2009-06-06T05:30:10Z<p>I have debugged Classic ASP in Visual Studio 2005. Also, Visual Studio 2008 was supposed to make it better, but I never had a chance to try or to find out the details.</p>
<p>Your biggest problem is that Visual Studio 2005 took away the ability to "Start With Debug" an ASP application.</p>
<p>In VS 2005, Microsoft completely changed the way the debugger connected to IIS. The old way (for both ASP and ASP.NET) which was used by everything from InterDev (remember InterDev?) through VS 2003 was orchestrated via the "Machine Debug Manager", a sort of intermediary helper service. The whole thing was... <em>arcane</em>, trying to solve a complex problem that was made harder by the fact that IIS and Visual Studio run under separate accounts and in some cases, different machines. This was a very delicate process that was very prone to break at the slightest configuration change.</p>
<p>Every single one of my machines stopped being able to debug Classic ASP at some point or another for reasons that appeared related to the alignment of the stars. I used to have at hand a 14 page checklist printout that described the whole "incantation", jumping from IIS Manager to Visual Studio to User Account Manager, to COM+ Explorer... and even that didn't always work. It makes me shiver just thinking about it.</p>
<p>Ultimately, they gave up. In Visual Studio 2005, Microsoft came up with a different architecture for debugging IIS applications (sorry; I don't know how it works now). At the time, MS decided that not enough people were using ASP anymore, and prioritized other work on top of it. Enabling ASP debugging through the new architecture was a significant amount of work especially for a technology on its way out, so it got chopped. I don't blame them; they made a sound business decision. Would you rather have no ASP debugging in VS 2005? Or yes ASP debugging on VS "200**6**"?</p>
<p>Anyway, not all is lost.</p>
<p>First, you can't "launch" the debugger with F5 anymore, but you can still attach manually to an already running ASP process and it will work, as long as you enable debugging in IIS Manager by hand. The experience in Visual Studio 2005 is sometimes better, sometimes worse than under older versions. It's certainly more stable and very much doable. More details below.</p>
<p>Second, I heard at some point that Visual Studio 2008 was supposed to make a come back and get ASP debugging back in the product, or at least bring some improvement, or some such -- I could never quite get a clear picture. Then I lost track of the whole thing because by some miracle I've kept myself out of dealing much with ASP projects for a few years now.</p>
<p>I'll try to find more references on VS 2008 and classic ASP. If I find something, I'll edit this post with it (sorry -- it might take me a few days to get to it).</p>
<p>More details can be found in these posts:</p>
<p>Full instructions on how to debug by manual attaching in this Gregg Miskelly post: <a href="http://blogs.msdn.com/greggm/archive/2006/03/15/552108.aspx" rel="nofollow">Debugging Classic ASP Code</a></p>
<p>Other related information can be found <a href="http://blogs.msdn.com/mikhailarkhipov/archive/2005/06/24/432308.aspx" rel="nofollow">here</a> and at other Mikhail Arkhipov posts.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/953259/an-obvious-singleton-implementation-for-net/953298#9532981Answer by Euro Micelli for An obvious singleton implementation for .NET?Euro Micelli2009-06-04T21:46:17Z2009-06-04T21:46:17Z<blockquote>
<p>the whole matter of the inefficiency of:...</p>
</blockquote>
<p>What inefficiency?</p>
<p>Those instructions will result into an extremely fast fragments of assembly code. I am completely sure that there is nothing to be gained by trying to "optimize" this. Even if you come up with something faster, it will be at a significant complexity cost.</p>
<p>Unless you do have positive evidence that this code is affecting your performance, you should use the simplest approach that solves your problem.</p>
http://stackoverflow.com/questions/951335/c-change-control-top-from-16bit-to-32bit-int-winforms/951382#9513822Answer by Euro Micelli for C# Change Control.Top From 16bit to 32bit Int (WinForms)Euro Micelli2009-06-04T15:45:02Z2009-06-04T15:45:02Z<p>The Windows scrollbars themselves are tied to 16bit values. The WinForm scrollbars just reflect that limit. You can't change it without writing your own scrollbar control from scratch.</p>
<p>But you don't need to do that. There is no physical reason to have that many values in a scrollbar because you can't scroll it more finely than pixels are there in the screen, and your monitor is not more that 30000 pixels tall (or wide).</p>
<p>The normal pattern is to divide your domain value by an appropriate number. Usually a constant will do, but you can use your maximum as well. Then you use that value as the actual scrollbar indexes.</p>
<p>For example, let's say you have values that range from 0 to 1200355. You can the scrollbar's maximum value to 10000, and then you can retrieve the currently selected value as myScrollbar.Value*(10000/1200355) (or some such -- I don't have the exact syntax at hand).</p>
<p>Yes, that means that you lose some precision -- you won't be able to select a value on the scrollbar that differ by just 3 units. If you really need that kind of precision, then the scrollbar control is not the right tool.</p>
http://stackoverflow.com/questions/936790/resolve-a-com-out-variant-containing-parray-as-safearray-of-bstrs-in-c-net/937100#9371000Answer by Euro Micelli for Resolve a COM [out] VARIANT* containing parray as SAFEARRAY of BSTR's in c#.netEuro Micelli2009-06-01T22:20:39Z2009-06-01T22:35:26Z<p>Please check [1800 INFORMATION]'s excellent post for reference.</p>
<p>Let me clarify a couple of details. When he says:</p>
<pre><code> // why set this here?
scanners.vt = VT_SAFEARRAY;
</code></pre>
<p>He's asking because that's not enough to create a SAFEARRAY by any stretch. It's really bad practice to initialize pieces of a class at different functions like that. FilterScanners() needs to do that internally anyway, plus more:</p>
<pre><code> // Local dimension bounds
// 'x' is the number of dimensions, as in this VB6:
// Dim Abc(a,b,c) 'has three dimensions
SAFEARRAYBOUND sab[x];
// Set the dimensions, as in:
// Dim Abc(0 TO TOTAL_BOUND_0, 0 TO TOTAL_BOUND_1, ...) 'VB6
sab[0].lLbound = 0;
sab[0].cElements = TOTAL_BOUND_0;
sab[1].lLbound = 0;
sab[1].cElements = TOTAL_BOUND_1;
// ... etc.
// This API creates the actual SafeArray in the COM Heap.
// Replace proper VT_VARIANT below with your type
SAFEARRAY * pSA = SafeArrayCreate(VT_VARIANT, x, sab); // x same as before
// Fill-in the elements of the array as required.
// Remember to use SafeArrayAccessData() and SafeArrayUnaccessData()
// Stuff the pointer to the SAFEARRAY in the VARIANT output argument:
// "OR" whatever the type of the array is. Think in VB6 terms!
// Dim scanners(...) As Variant ' VT_SAFEARRAY | VT_VARIANT
// Dim scanners(...) As String ' VT_SAFEARRAY | VB_BSTR
// etc.
VariantInit(pScanners); // Always recommended to clear the VARIANT before using it
pScanners->vt = VT_SAFEARRAY | VT_VARIANT; // set the type
pScanners->pparray = pSA;
</code></pre>
http://stackoverflow.com/questions/935768/c-wrapper-interface-error-enointerface/936208#9362081Answer by Euro Micelli for C# wrapper interface error: E_NOINTERFACEEuro Micelli2009-06-01T18:59:42Z2009-06-01T18:59:42Z<p>the error code means that Visual Studio <em>thinks</em> that a certain object is supposed to implement a certain interface, but when I tries to "connect" to that interface the object responds that it doesn't know about it.</p>
<p>I would guess that the problem is in SC_COM.dll. TLBIMP.EXE extracts class and interface information from metadata stored within the DLL and builds wrappers for the class.</p>
<p>For example, if SC_COM is written in C++, this could happen if the creator of the DLL indicated in the IDL file that a class implements that interface, but the actual code doesn't support that interface.</p>
<p>Here's another common source of problems this DLL might have: sometimes you have a class implementing an ISomething2 interface which derives from an ISomething interface, but the class implementation to only recognize ISomething2. If you implement a derived interface, you must recognize its base interface as well. This is a common mistake.</p>
<p>Do you have (and control) the source code for the DLL?</p>
http://stackoverflow.com/questions/588564/how-do-you-deal-with-generated-code/936133#9361330Answer by Euro Micelli for How do you deal with generated code?Euro Micelli2009-06-01T18:37:29Z2009-06-01T18:37:29Z<p>Most of the time, I would go for option #2. The reasons are pretty obvious and I see already enough support for this choice from others.</p>
<p>There is an exception in my book. If most/all of the following apply:<br />
<em>(as in, "mostly", you know -- it's a thinking criteria, not something written in stone...)</em></p>
<ol>
<li>The stub code takes a long time to regenerate (*)</li>
<li>There is no effective way to determine in advance if the source has change (<em>a-la</em> MAKE) so you have to rebuild the stubs every time.</li>
<li>The stub code is expected to change very rarely (because the source from which the stubs are generated changes very rarely)</li>
<li>Any changes in the stub code typically require manual changes on the rest of the program anyway</li>
</ol>
<p>I will usually go for scripting out the generation step (and document those in Source Control as well) but only doing the proxy generation by hand.</p>
<p>Typical examples of the above are database ORM classes and Web Services proxy classes.</p>
<p>*<em>( How much is "too long"? It depends; in highly interactive envioronments, one minute could be "too long". As I said, it's a criteria for you to think about. In real programming, as in real life, you have to pick your evils).</em></p>
http://stackoverflow.com/questions/935726/getting-line-number-from-pdb-in-release-mode/935983#9359830Answer by Euro Micelli for Getting line number from pdb in release mode.Euro Micelli2009-06-01T18:06:35Z2009-06-01T18:06:35Z<p>[@Not Sure] has it almost right. The <em>compiler</em> makes a best effort at identifying an appropriate line number that closely matches the current machine code instruction.</p>
<p>The PDB and the debugger don't know anything about optimizations; the PDB file essentially maps address locations in the machine code to source code line numbers. In optimized code, it's not always possible to match exactly an assembly instruction to a specific line of source code, so the compiler will write to the PDB the closest thing it has at hand. This might be "the source code line before", or "the source code line of the enclosing context (loop, etc)" or something else.</p>
<p>Regardless, the debugger essentially finds the entry in the PDB map closest (as in "before or equal") to the current IP (Instruction Pointer) and highlights that line.</p>
<p>Sometimes the match is not very good, and that's when you see the highlighted area jumping all over the place.</p>
http://stackoverflow.com/questions/934529/c-inline-functions-using-gcc-why-the-call/934570#9345706Answer by Euro Micelli for C++ inline functions using GCC - why the CALL?Euro Micelli2009-06-01T12:11:35Z2009-06-01T12:11:35Z<p>Are you looking at a debug build (optimizations disabled)? Compilers usually disable inlining in "debug" builds because they make debugging harder.</p>
<p>In any case, the <code>inline</code> specified is indeed a <em>hint</em>. The compiler is not required to inline the function. There are a number of reasons why any compiler might decide to ignore an inline hint:</p>
<ul>
<li>A compiler might be simple, and not support inlining</li>
<li>A compiler might use an internal algorithm to decide on what to inline and ignore the hints.<br />
<em>(sometimes, the compiler can do a better job than you can possibly do at choosing what to inline, especially in complex architectures like IA64)</em></li>
<li>A compiler might use its own heuristics to decide that despite the hint, inlining will not improve performance</li>
</ul>
http://stackoverflow.com/questions/930932/returning-different-data-type-depending-on-the-data-c/931221#9312210Answer by Euro Micelli for Returning different data type depending on the data (C++)Euro Micelli2009-05-31T03:56:50Z2009-05-31T04:02:16Z<p>No; you can't do that in C++. The correct answer is to return <code>void *</code>.</p>
<p>Think about it from the opposite side of the call -- and from the compiler point of view at that:</p>
<p>How would the compiler be able to verify if the return value is used correctly (like assigned to a variable of the proper type, for example), if it cannot possibly know which of the three return types will be returned?</p>
<p>At that point, the notion of assigning "one of multiple types" to the return value becomes meaningless. The return type of a function has no other purpose in life than to make it possible for the compiler to do it's job; the compiler needs "one" type to be able to do type checking. Since you don't know which one it is until runtime, the compiler can't do the type checking for you. You have to tell the compiler to "stop trying" to match the return value to any specific pointer type -- hence, return a <code>void *</code>.</p>
<p>If your depth arguments is known at compile time, you can alternatively use a set of templates like <a href="http://stackoverflow.com/questions/930932/returning-different-data-type-depending-on-the-data-c/930973#930973">@sth</a> demonstrated, or use a set of separate independent functions, or use a set of related functions that call a shared implementation function and then cast the return to the proper type. Which one you chose is a mostly an aesthetic decision.</p>
<p>If the value of <code>depth</code> is not know until run-time, then you should probably return <code>void *</code>.</p>
<p>Now, I'm assuming that your actual implementation actually does something to produce the pointer other than what your sample code shows. Your sample code is not an actual function; it's more like trying to duplicate what a <code>cast</code> does. A <code>cast</code> is not a function call; it's a compiler directive to try to "make" it's operand into a specific type (exactly 'how', is a long story for another post). It's not a C++ language operation, but a compiler operation. You can't rewrite that in C++ itself.</p>
http://stackoverflow.com/questions/931057/what-happens-if-another-interrupt-is-raised-before-the-first-interrupt-action-is/931178#9311781Answer by Euro Micelli for What happens if another interrupt is raised before the first interrupt action is completed?Euro Micelli2009-05-31T03:20:58Z2009-05-31T03:20:58Z<p>The following applies to the x86 architecture only, but other architectures might well follow the same pattern:</p>
<p>There is a processor flag called <code>IF</code> (Interrupt Flag) that controls whether hardware interrupts can be processed, or have to be put on hold. When IF = 0, interrupts will be postponed until the flag is reenabled (Except for the NMI, the Non-Maskable Interrupt, which is intended as an 'emergency only' interrupt that cannot be blocked).</p>
<p>The <code>IF</code> is automatically cleared by the processor before an interrupt servicing routine is called. This is necessary to prevent interrupt calls to become reentrant out of control. Note that the interrupt servicing code itself could not do this on its own, because if <code>IF</code> were not disabled before entering the routine, it would be possible for more interrupts to occur before the servicing code has time to execute even a single instruction. Then, a "firehose" of interrupts would immediately result in (of all things) a stack overflow.</p>
<p>So, in answer to your direct question: typically, when a second hardware interrupt occurs while an initial one is being serviced, that interrupt will be put on hold until the first one has finished.</p>
<p>As usual, the full story is a bit more complicated. The <a href="http://developer.intel.com/design/pentium/manuals/24319001.pdf" rel="nofollow" title="manual">Intel Architecture Software Developer’s Manual</a> at Intel's web site gives a more complete description starting on page 10-4.</p>
http://stackoverflow.com/questions/926172/how-to-hide-strings-in-a-exe-or-a-dll/928148#9281484Answer by Euro Micelli for How to hide strings in a exe or a dll?Euro Micelli2009-05-29T21:04:22Z2009-05-29T21:04:22Z<p>There are many ways to <em>obscure</em> data in an executable. Others here have posted good solutions -- some stronger than others. I won't add to that list.</p>
<p>Just be aware: it's all a cat-and-mouse game: it is <strong>impossible</strong> to <strong>guarantee</strong> that nobody will find out your "secret".</p>
<p>No matter how much encryption or other tricks you use; no matter how much effort or money you put into it. No matter how many "NASA/MIT/CIA/NSA" types are involved in hiding it.</p>
<p>It all comes down to simple physics:<br />
If it were impossible for <em>any</em> user to pull out your secret from the executable and "unhide" it, then the computer would not be able to unhide it either, and your program wouldn't be able to use it. Any moderately skilled developer with enough incentive will find the way to unhide the secret.</p>
<p>The moment that you have handed your executable to a user, they have everything they need to find out the secret.</p>
<p>The best you can hope for is to make it <em>so hard</em> to uncover the secret that any benefits you can get from knowing the secret become not worth the hassle.</p>
<p>So, it's OK to try to obscure the data if it's merely "not-nice" for it to be public, or if the consequences of it becoming public would just be "inconvenient". But don't even think of hiding in your program "the password to your master client database", a private key, or some other critical secret. You just can't.</p>
<p>If you have truly critically secret information that your program will somehow need but should NEVER become public information (like a private key), then you will need to have your program talk to a remote server under your control, apply appropriate authentication and authorization controls (<em>that is, make sure only the approved people or computers are able to make the request to the server</em>), and have that server keep the secret and use it.</p>
http://stackoverflow.com/questions/912601/acquiring-the-access-privileges-of-an-active-user/912702#9127020Answer by Euro Micelli for Acquiring the access privileges of an active userEuro Micelli2009-05-26T20:51:47Z2009-05-26T20:57:01Z<p>In most cases, the correct answer is that you shouldn't.</p>
<p>Your algorithm should catch the UnauthorizedAccessException, accept that it won't be allowed to navigate further down that folder, and act like the folder is empty.</p>
<p>That means that sometimes you will get an answer that a directory you are looking for doesn't exist when it technically does exist. That's OK. It's the way it's supposed to be. If you don't have permission to it, it doesn't exist for you.</p>
<p>Folders protected under some other users' rights are "private". A program that "Joe" runs is not supposed to look at the folders that belong to "Mary". That's the whole point of permissions.</p>
<p>There are very few controlled exceptions to the rule. Notoriously, Disk Backup and Anti-virus applications need to be able to navigate the entire disk, regardless of folder permissions. They do so by setting up a service that runs under a highly privileged account (maybe "SYSTEM", maybe something else). It will likely be an account that holds the SeBackupPrivilege.</p>
<p>You can do that for your program, if you <strong>really</strong> need to scan the whole disk, but for most application scenarios you really shouldn't. Only a machine-wide maintenance application like an anti-virus or backup program should be given that kind of authority.</p>
<p>It's not that it's "overkill"; it's that it's "wrong". It does not play by the rules.</p>
http://stackoverflow.com/questions/911145/sql-optimization-query/911228#9112282Answer by Euro Micelli for SQL Optimization QueryEuro Micelli2009-05-26T15:15:32Z2009-05-26T15:15:32Z<p>There really isn't enough information to know for sure. If you are having performance problems in that query, then the tables must have a non trivial amount of data and you must be missing important indexes.</p>
<p>Which indexes will definitely help depends deeply on how large the tables are, and to a lesser extent on the distribution of values in the KeywordGroupId and KeywordValueGrpId fields.</p>
<p>Lacking any other information, I would say that you want to make sure that <code>dbo.KeywordValueGroups.[name]</code> is indexed, as well as <code>dbo.ClientDefinitionEntry.[keywordGroupId]</code>.</p>
<p>Because of the way the query is written, an index on <code>dbo.KeywordValueGroups.[keywordValueGrpId]</code> alone cannot help, but a composite index on <code>[name], [keywordValueGrpId]</code> probably will. If you have that index, you don't need a dedicated index on <code>[name]</code>.</p>
<p>Based on gut-feeling alone, I might hazard that the index on <code>[name]</code> is a <em>must</em>, and that cde.keywordGroupId is likely important. Whether the composite index on <code>[name], [keywordValueGrpId]</code> would help, it depends on how many records are there with the same [name].</p>
<p>The only way to know for sure is to add the indexes and see what happens.</p>
<p>You also need to think about how often this query runs (so, how important is it to make it fast), and how often the underlying data changes. Depending on your particular circumstances, the increase in speed might not justify the added cost of maintaining the indexes.</p>
http://stackoverflow.com/questions/905029/is-cryptoapi-good/905390#9053900Answer by Euro Micelli for is cryptoapi good?Euro Micelli2009-05-25T05:00:29Z2009-05-25T05:00:29Z<p>CryptoAPI is as solid as it gets, when used correctly.</p>
<p>You will find that there are two kinds of outside libraries for crypto for Windows: those that reimplement everything because they are intended to support multi-platform development, and those that act as a simplifying layer on top of CryptoAPI for specific purposes. If you are in the former crowd, by all means use a reputable platform-neutral library. If you find that you can't be productive in raw CryptoAPI, find a reputable library that will do exactly what you need in less steps. But don't assume that another library is going to cure your security risks because it's somehow "better"; just make sure that whatever you use is reputable.</p>
<p>As many other have pointed out, if you truly need "maximum security" (at whatever level your "maximum" happens to be), you might want to hire an expert. Also, you do need to look at security from a holistic angle; encrypting data is just one aspect.</p>
<p>And finally, it should go without saying, don't even <em>dream</em> of writing your own cryptographic library, not even to implementing existing algorithms. You will fail, miserably.</p>
http://stackoverflow.com/questions/904076/com-exceptions-in-c/905330#9053302Answer by Euro Micelli for COM Exceptions in C#Euro Micelli2009-05-25T04:37:49Z2009-05-25T04:37:49Z<p>Assuming that your class does implement <code>ISupportErrorInfo</code>, did you by any chance add the support <em>AFTER</em> you imported the library into your C# project from Visual Studio?</p>
<p>Visual Studio generates the gunk that it needs to talk to a COM library only once, when you import the library. For this purpose, it builds a special translation DLL called "<em>originalDllName</em>.Interop.dll", based on the information available in the TypeLib of the DLL at the time of the import.</p>
<p>You can make implementation changes as often as you want without trouble; but if you changed the library in any way (added new classes, changed the interface definitions, changed the iterfaces implemented by your classes...), you will have to remove the COM DLL from your References, and then re-import it, for the Interop DLL to be refreshed.</p>
http://stackoverflow.com/questions/900123/com-com-dcom-where-to-start/903081#9030818Answer by Euro Micelli for COM, COM+, DCOM, where to start? Euro Micelli2009-05-24T04:37:32Z2009-05-24T04:37:32Z<p>If you are serious about learning COM, Don Box's "Essential COM" is definitely an absolute "must read". COM can be confusing and in my humble opinion Don Box is one of the few people who actually "got it".</p>
<p>The example code in "Essential COM" is in C++. You won't find many books that support COM in C. You can write COM in C, but it will be very, <em>very</em> painful. COM is optimized for C++ development.</p>
<p>This book is not perfect nor "complete". There are some (granted, a bit esoteric) areas that the book skims over. For example, the book has like 1 1/2 pages on "monikers" (I have never seen a treatment of monikers that satisfies me). I consider this book to be THE fundamental book.</p>
<p>Second, in real life you are likely to want to use a supporting library such as ATL, rather than writing all the COM glue directly. There are too many ways to make subtle mistakes in COM even in the basic set up. ATL will give you good patterns and implement the boring code for you. In learning, you are better off using plain C++.</p>
<p>There are many books about ATL and several are quite good. I understand that ATL has changed quite a bit since the old days of VC++6, but I don't have first hand knowledge there: sadly, most of the COM code I work with is forever locked to the flavor of C++ in VC6.</p>
<p>Make sure whatever book you get is written for the version of Visual Studio and/or ATL you are planing on using.</p>
<p>Some background on COM books:</p>
<p>Note that there are a lot of books out there that misunderstand COM, or focus on the wrong things. The older books are worse in this respect. Some of the first few books treated COM as little more than a plumbing detail needed to make OLE work ("Object Linking and Embedding", that's what allows you to drag-and-drop a spreadsheet range into a Word document). Because of that, a lot of the material out there is very confusing. It took a while before people realized that OLE wasn't that important and that COM really was.</p>
<p>By the time Don Box published "Essential COM", the cracks on the foundation of COM had started to become evident. There isn't anything terribly flawed with COM, but the needs of the development community had evolved and outgrown what COM could do without serious revamping.</p>
<p>.NET was born out of that effort to address the limitations in COM, especially in the area of "type information". Just a few years after "Effective COM" was published, the attention of the community shifted away to .NET. Because of that, good COM training material is now and will likely remain forever limited.</p>
<p>So, COM is not broken, and it works great for the things it's used for (that's why Explorer still uses it). It's just not the best solution anymore for many of the problems that need solving today.</p>
<p>In summary:</p>
<p>I recommend "Essential COM" for the basics. Then, any of many good ATL books available (no strong preferences there), and then use other resources like MSDN or -- of course -- Stack Overflow, to cover areas that are of particular interest to you.</p>
<p>If you'd rather avoid relying on resources of the dead-tree variety, go ahead and learn ATL from the web. But some books are worth reading the old fashioned way -- and "Essential COM" is one of them.</p>
<p>Good luck.</p>
http://stackoverflow.com/questions/899483/constness-of-returned-objects-from-a-const-member-function/899603#8996031Answer by Euro Micelli for constness of returned object(s) from a const member functionEuro Micelli2009-05-22T19:29:49Z2009-05-22T19:29:49Z<p>(I'm ignoring the fact that you are returning object state directly like that, which is usually a bad idea because it breaks encapsulation -- I'm looking at this as "sample code")</p>
<p>There is no relation between the two. A <code>const</code> member function is a member that doesn't modify the underlying object -- "while it's executing". There is no promise or requirement that the return value be <code>const</code> or not. The <code>const</code>-ness contract is "over", once the method returns. I think you're getting confused because you are trying to connect the return value with the method that produced it.</p>
<p>Whether the returned value should be <code>const</code> or not <code>const</code> depends exclusively on the nature of the returned value, and the semantics that you want to ascribe to the method.</p>
<p>In your specific first case, the two methods should return the same <code>const</code>-ness. The const overloading is probably not what you want to use. If you want the two variations, I would probably make it explicit, like such:</p>
<pre><code>const ownedByFoo *getOwnedByFoo() const { return m_ownedByFoo; }
ownedByFoo *getOwnedByFooForEdit() { return m_ownedByFoo; }
</code></pre>
<p>That way there is no ambiguity and no mysterious tying of the two. Note that I made the second non-const because we probably don't want client code to modify m_ownedByFoo on a const object. That's a requirement born out of the semantic of the method ("returns internal state"), not out of a linkage between the method's <code>const</code>-ness and the <code>const</code>-ness of the return value. If the value being returned was not part of the object's state, I would probably do something else.</p>
http://stackoverflow.com/questions/121757/how-do-you-implement-coroutines-in-c/121948#121948Comment by Euro Micelli on How do you implement Coroutines in C++Euro Micelli2009-10-27T02:25:50Z2009-10-27T02:25:50ZThanks for commenting. However, I didn't say "blindly favor"; I said "always consider". I agree that there are circumstances where fibers or other coroutine methodologies might be more appropriate, but they can be even harder to "get right" than threads -- and that's saying a lot. Basically, I'm suggesting that for most circumstances you should use threads by default, unless you can convince yourself that there are good reasons to go for something else.http://stackoverflow.com/questions/1253769/explicit-loading-of-dll/1256451#1256451Comment by Euro Micelli on Explicit Loading of DLLEuro Micelli2009-08-11T04:10:53Z2009-08-11T04:10:53ZWell -- essentially -- where did the DLL come from. I would be very concerned if you said it was a DLL handed down to you and you didn't know where it came from, or what compiler was used. I would be much less concerned if it had been developed by someone else in your organization and you knew exactly what compiler they were using and you could coordinated your compiler upgrades with the other person. Just as @fnieto, I didn't notice the Java Native Interface connection; I have no experience with JNI.http://stackoverflow.com/questions/71980/how-do-you-efficiently-copy-bstr-to-wchart/73928#73928Comment by Euro Micelli on How do you efficiently copy BSTR to wchar_t[] ?Euro Micelli2009-08-08T02:43:42Z2009-08-08T02:43:42Z@arolson101 (on wcscpy): you're right of course. Thanks for noticing my slip-up.http://stackoverflow.com/questions/1228173/c-newbie-listinterface-questionComment by Euro Micelli on C# newbie List<Interface> questionEuro Micelli2009-08-04T16:18:26Z2009-08-04T16:18:26ZI agree with Dan. This formulation is significantly simpler. The subject probably needs amending, though.http://stackoverflow.com/questions/1209181/what-represents-a-double-in-sql-server/1209214#1209214Comment by Euro Micelli on What represents a double in sql server?Euro Micelli2009-07-30T22:07:47Z2009-07-30T22:07:47ZNow I'm confused. Every piece of evidence points to the idea that they use the same format (as everything else in Windows). And why wouldn't they? I can't find a definite statement on the bitwise representation in SQL Server (besides the help page for float). I'll post a correction if I find out.http://stackoverflow.com/questions/1209181/what-represents-a-double-in-sql-server/1209214#1209214Comment by Euro Micelli on What represents a double in sql server?Euro Micelli2009-07-30T21:42:31Z2009-07-30T21:42:31ZI'll be darn; you're right! I wonder what SQL does with the extra bit; it's not used for the exponent. If it did, the exponent would go up to +-616 instead of +-308. Maybe to track NULL? http://stackoverflow.com/questions/1207809/evaluation-question-c-runtimeComment by Euro Micelli on Evaluation question C# runtimeEuro Micelli2009-07-30T17:47:08Z2009-07-30T17:47:08ZThen a solution with delegates seems to be pretty close to what you need; unless the stringCode is truly dynamic (user-supplied content, on the fly). Then, you will need something through the DLR (which will be upcoming in .NET 4.0 and I don't known enough about to help with)http://stackoverflow.com/questions/1071762/what-are-software-practices-in-mission-critical-industries-e-g-nuclear-power-plComment by Euro Micelli on What are software practices in mission-critical industries (e.g. nuclear power plant)?Euro Micelli2009-07-06T02:34:00Z2009-07-06T02:34:00ZWhether the question was meant as a joke, or it was serious, it's resulting in some serious answers. I think it's a valid question if recast as "... for a mission/life-critical situation"http://stackoverflow.com/questions/1034897/control-label-in-other-page-in-asp-net-using-cComment by Euro Micelli on Control label in other page in asp.net using C#Euro Micelli2009-06-23T20:26:33Z2009-06-23T20:26:33ZWhat's the relationship between the pages? Is the "home" page a master page? Or are they unrelated (except for perhaps links)?http://stackoverflow.com/questions/991999/are-update-delete-insert-on-the-linq-roadmap/993146#993146Comment by Euro Micelli on Are Update/Delete/Insert on the Linq Roadmap?Euro Micelli2009-06-14T16:32:10Z2009-06-14T16:32:10ZYou took the words out of my mouth. LinqToObjects cannot support mutable operations "by design".http://stackoverflow.com/questions/986972/whats-the-advantage-of-using-com-over-a-plain-dll/987062#987062Comment by Euro Micelli on What's the advantage of using COM over a plain DLL?Euro Micelli2009-06-13T06:30:44Z2009-06-13T06:30:44Z> COM is slow compared... < I disagree. COM is only "slower" when "activating" or "instanciating". Once the object is created, it's as fast as anything else you can come up with. Whether activation/creation time is important depends on the specifics of the problem. Also, COM is slower in calls only if you cross apartments, which you should do only if you "need it" (in which case you will "need" similar slow-downs under any other alternative aproach). Performance is usually not a reason not to use COM.http://stackoverflow.com/questions/978399/nullreferenceexception-when-function-returnsComment by Euro Micelli on NullReferenceException when function returns.Euro Micelli2009-06-10T22:25:18Z2009-06-10T22:25:18Z> "...Is it possible that the stack is being corrupted...?" < In C#?, no; for all practical purposes that's impossible. Unless you are calling unsafe code.http://stackoverflow.com/questions/972745/nullable-enums-and-linqtosql/972792#972792Comment by Euro Micelli on Nullable enums(??) and LinqToSQLEuro Micelli2009-06-10T16:50:25Z2009-06-10T16:50:25ZThat's weird. The above code compiled and ran for me. Can you post the definition of ParentContentType's type?http://stackoverflow.com/questions/972745/nullable-enums-and-linqtosql/972852#972852Comment by Euro Micelli on Nullable enums(??) and LinqToSQLEuro Micelli2009-06-10T16:27:52Z2009-06-10T16:27:52ZThe above compiled and ran for me as well. I don't know -- we must be missing something about the definition of the types.http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/971941#971941Comment by Euro Micelli on Use of var keyword in C#Euro Micelli2009-06-09T19:15:37Z2009-06-09T19:15:37Zvar is just as strongly typed as spelling out the full type yourself. It simply helps so you don't have to name the type explicitly.