Euro Micelli
|
Registered User
|
I have been a professional developer, consultant and systems architect for 10+ years. I have used a wide variety of technologies, mostly from the MS stack: VB, C++, COM, ASP, ASP.NET, C#, SQL Server, etc, etc. There is a little Tux somewhere in my soul; one day I'll find him. See me also at: http://stackoverflow.com/users/4864/euro-micelli-2 |
|
Nov 3 |
awarded | ● Popular Question |
|
Oct 27 |
comment |
How do you implement Coroutines in C++ Thanks 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. |
|
Oct 6 |
awarded | ● Nice Answer |
|
Aug 22 |
awarded | ● Yearling |
|
Aug 11 |
comment |
Explicit Loading of DLL Well -- 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. |
|
Aug 10 |
answered | Explicit Loading of DLL |
|
Aug 8 |
comment |
How do you efficiently copy BSTR to wchar_t[] ? @arolson101 (on wcscpy): you're right of course. Thanks for noticing my slip-up. |
|
Aug 8 |
revised |
How do you efficiently copy BSTR to wchar_t[] ? Replaced strcpy() with wcscpy() in example |
|
Aug 4 |
answered | How to call the RJ45 as a serial port for interfacing? |
|
Aug 4 |
comment |
C# newbie List<Interface> question I agree with Dan. This formulation is significantly simpler. The subject probably needs amending, though. |
|
Aug 4 |
answered | C# newbie List<Interface> question |
|
Jul 30 |
comment |
What represents a double in sql server? Now 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. |
|
Jul 30 |
comment |
What represents a double in sql server? I'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? |
|
Jul 30 |
revised |
What represents a double in sql server? Fixed technical information |
|
Jul 30 |
answered | What represents a double in sql server? |
|
Jul 30 |
comment |
Evaluation question C# runtime Then 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) |
|
Jul 30 |
revised |
Evaluation question C# runtime Corrected examples |
|
Jul 30 |
answered | Evaluation question C# runtime |
|
Jul 28 |
revised |
Which one to use when static_cast and reinterpret_cast have the same effect? Added link to previous post on a similar subject |
|
Jul 28 |
answered | Which one to use when static_cast and reinterpret_cast have the same effect? |
|
Jul 10 |
revised |
ASP.NET Schema Tables Causing Issues in VSTS Replaced dashes with underscores as requested |
|
Jul 9 |
asked | Is GDI+ just a layer on top of GDI, or something new? |
|
Jul 6 |
comment |
What are software practices in mission-critical industries (e.g. nuclear power plant)? Whether 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" |
|
Jul 5 |
answered | How to return collection objects from c# and Access them in c++? |
|
Jun 23 |
comment |
Control label in other page in asp.net using C# What's the relationship between the pages? Is the "home" page a master page? Or are they unrelated (except for perhaps links)? |
|
Jun 18 |
accepted | has anybody been able to debug asp classic code with visual studio 2005 or later? |
|
Jun 14 |
comment |
Are Update/Delete/Insert on the Linq Roadmap? You took the words out of my mouth. LinqToObjects cannot support mutable operations "by design". |
|
Jun 13 |
comment |
What’s the advantage of using COM over a plain DLL? > 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. |
|
Jun 10 |
comment |
NullReferenceException when function returns. > "...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. |
|
Jun 10 |
comment |
Nullable enums(??) and LinqToSQL That's weird. The above code compiled and ran for me. Can you post the definition of ParentContentType's type? |
|
Jun 10 |
comment |
Nullable enums(??) and LinqToSQL The above compiled and ran for me as well. I don't know -- we must be missing something about the definition of the types. |
|
Jun 9 |
revised |
Nullable enums(??) and LinqToSQL Completed posting |
|
Jun 9 |
answered | Nullable enums(??) and LinqToSQL |
|
Jun 9 |
revised |
Passing Classic ASP VBScript Parameters ByRef to COM c++ Correction to clearing of variant |
|
Jun 9 |
answered | Use of var keyword in C# |
|
Jun 9 |
accepted | Passing Classic ASP VBScript Parameters ByRef to COM c++ |
|
Jun 9 |
revised |
Passing Classic ASP VBScript Parameters ByRef to COM c++ Added warning about [out] parameters |
|
Jun 9 |
answered | Passing Classic ASP VBScript Parameters ByRef to COM c++ |
|
Jun 6 |
comment |
has anybody been able to debug asp classic code with visual studio 2005 or later? I see you've found some good information on your own while I was typing my response, including my two bookmarks. If you are having specific problems, please post the details and I'll try to help. I've done this myself dozens of times without trouble. If you use a separate Question, put a link somewhere here so I don't miss it. |
|
Jun 6 |
answered | has anybody been able to debug asp classic code with visual studio 2005 or later? |
|
Jun 5 |
comment |
Why won’t Visual Studio 2008 create .mdf files with SQL Server 2008 Developer installed? You should make sure that Visual Studio knows about your instance of SQL Server. Go to Visual Studion -> Tools -> Database Tools -> Data Connections -> [Instance Name]. Make sure it lists the correct instance name for your SQL Express (usually "SQLEXPRESS"). |
|
Jun 5 |
comment |
Why won’t Visual Studio 2008 create .mdf files with SQL Server 2008 Developer installed? You should make sure that Visual Studio knows about your instance of SQL Server. Go to Visual Studion -> Tools -> Database Tools -> Data Connections -> [Instance Name]. Make sure it lists the correct instance name for your SQL Express (usually "SQLEXPRESS"). |
|
Jun 5 |
comment |
Why won’t Visual Studio 2008 create .mdf files with SQL Server 2008 Developer installed? That's very misleading statement. SQL Express and the full SQL Server product actually do share the very same database engine (and virtually everything else). The reason why the full server doesn't support user instance databases is beyond me, but it was most likely either a business decision or one routed in security. Implementation-wise, all the bits are there. |
|
Jun 5 |
comment |
What is the best way to define semi-constant class variables in C#? If you use a "Property Get" style for this, you shouldn't call it "GetApplicationPath"; call it "ApplicationPath" instead. "Verb"-like names are more appropriate for plain methods. A "Name"-like convention is more appropriate for properties. |
|
Jun 4 |
comment |
An obvious singleton implementation for .NET? @Mark Gravell: > while simple, the null-check approach isn't actually thread-safe... < -- Correct. If the singleton will be called from multiple threads, you should use the Double-checked locking pattern, which is actually guaranteed to work in .NET |
|
Jun 4 |
comment |
An obvious singleton implementation for .NET? That said, the approach you are displaying, is conceptually a well-known pattern in use for many years for JIT (Just-In-Time) compilation, including .NET's "IL" itself: When a function call is found, it is made to "point" to a compiler call for the source of the function. The first time it's called, what runs is the compiler, which compiles the fragment into machine code and replaces the reference to point to the newly compiled code. Finally, the new code is called and the compiled gets out of the way. JIT is a furiously performance-critical scenario that justifies this kind of complexity. |
|
Jun 4 |
answered | An obvious singleton implementation for .NET? |
|
Jun 4 |
answered | C# Change Control.Top From 16bit to 32bit Int (WinForms) |
