Michael Stum
|
Registered User
|
If it consumes electricity, chances are good that I worked with it or at least know about it. SysAdmin and Programmer, worked with Basic and PHP as well as with Delphi and C#, my current favorite. I also do SharePoint for a living.
|
|
18h |
revised |
Decode email address from Gravatar hash? Added a year worth of experience.; added 135 characters in body |
|
1d |
comment |
What is the largest program ever written? No idea, but I'm guessing it's some government software. |
|
1d |
comment |
What’s your most controversial programming opinion? Do you mean Object Databases when you say relational databases? That is, db4o et al.? Relational Database system in my opinion are systems where you model relations between entities, also known as Foreign Keys and Update/Delete Cascades. Sadly, most of the time these entities are flat 2-Dimensional tables in RDBMS... |
|
1d |
comment |
C#: Initializing a variable with “using” Just wrap your try..catch around the using block: try { using(var db = new SqlConnection(connectionString)) { code ... } catch { panic... } or inside it: using(var db = new SqlConnection(connectionString)) { try { code... } catch { panic...} } - depending on if you want to catch exceptions thrown by "new SqlConnection(connectionString)" or not. |
|
1d |
comment |
C#: Initializing a variable with “using” Syntactic Sugar is usually used in a negative way to indicate that it's "just some concept for amateurs who don't know the language" - also see Auto-Properties in C# (Question 9304). But I don't think that "using" is negative, it's a really great type of syntactic sugar, just like foreach is really great sugar around "GetEnumerator"-calls. So I prefer to use the term "language construct" as this makes it appear like a first-class citizen, which it clearly is IMHO. |
|
1d |
answered | C#: Initializing a variable with “using” |
|
1d |
comment |
Is there any technical reason to use or not to use var in C# when the type is known? The Explicit Casting can be important in certain situations, for example if the Enumerator of a Collection returns "object" instead of the exact type. I think SPListItemCollection is such an example, but I think this applies to all Non-Generic-Collections. |
|
2d |
comment |
Adding a section to the To-Do bar in Outlook 2007/2010? It's here: add-in-express.com/outlook-extension/… (Region 6) |
|
2d |
comment |
Can I use .NET 4 with SharePoint 2007? Exactly, it's in Beta, so I doubt that they'll change it over to .net 4.0 CLR. Keep in mind that if they make a change like that, they have to test each and every part for compatibility. It's not just "recompile and ship", but it's to make sure there are no breaking changes. With a codebase that size, I believe that this is not going to happen. Adding .net 4 Support with a Service Pack could break their customers custom solution, and enterprise products don't do that usually. So I don't think we'll see .net 4 support in SP2010 ever. |
|
2d |
comment |
Adding a section to the To-Do bar in Outlook 2007/2010? The problem is attaching/adjoining the new form region to the ToDo bar. I know how to attach it to the mail window and many of the "standard" forms, but there seems no official way to attach it to the ToDo Bar? |
|
2d |
comment |
What real life bad habits has programming given you? @Andrei: Or Visual Basic. |
|
Dec 12 |
comment |
Can I use .NET 4 with SharePoint 2007? As it's a new CLR, I'm willing to say that SP2010 will never support it. |
|
Dec 11 |
comment |
What are your biggest complaints about Sharepoint? I can't agree about #3 yet (still trying to find out how to programmatically access tagging), but overall, SP2010 seems like a worthy upgrade that irons out or at least improves on most of the really annoying parts of 2007. |
|
Dec 11 |
comment |
C# 3.0 Auto-Properties - useful or not? Yes, I do. Not much is truly free in this world, so as a developer I think it's the right thing to ask "So, are there any caveats?". It's also a sign of caring about your profession. If my customers believe in Magic that's great, but I like to do where the strings are placed. |
|
Dec 10 |
comment |
Which design pattern to use? I would use a Singleton. And JavaScript. |
|
Dec 10 |
answered | How many developers are there in the world? |
|
Dec 10 |
answered | Style tag not working in Microsoft Outlook 2007 |
|
Dec 10 |
comment |
The Dragon Book I actually think this question can be seen as a duplicate of 1669. |
|
Dec 9 |
asked | Adding a section to the To-Do bar in Outlook 2007/2010? |
|
Dec 9 |
answered | Adding a Tab to the Outlook 2010 Ribbon? |
|
Dec 9 |
asked | Adding a Tab to the Outlook 2010 Ribbon? |
|
Dec 8 |
comment |
C# generic list <T> how to get the type of T? Just a small addition: GetProperty("Item") will throw a System.Reflection.AmbiguousMatchException in the (rare?) case if there is more than one indexer. I handle that case with a try..catch: Try GetProperty, otherwise revert to GetGenericArguments. |
|
Dec 7 |
comment |
simple proof that GUID is not unique Raymond is outdated on the MAC Address part though, Microsoft doesn't use these anymore. See en.wikipedia.org/wiki/GUID#Algorithm for the difference between V1 and V4 Guids. |
|
Dec 7 |
comment |
int and boolean error And to explain the problem: "numvalue = 0" requires numvalue to be an int (or long) so that 0 can be assigned to it, hence "int expected". However, the if statement wants a boolean expression, and assignments are not boolean expressions, hence the "bool expected" - two different errors, caused by a missing =. If this were C/C++, you would have a lot of fun with that :-) |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 6 |
answered | simple proof that GUID is not unique |
|
Dec 5 |
comment |
Bug in Windows Command Line (?) — not recognized as an internal or external command bash has a similar bug, if you try to execute a common command like "assign LIBS: dh0:libs" you get a similar error message. |
|
Dec 4 |
awarded | ● Popular Question |
|
Dec 4 |
awarded | ● Notable Question |
|
Dec 4 |
comment |
Invoking the MediaWiki Page Parser to get HTML? Thanks, that should help! I assume that $page is the title of the Page and not the WikiText? |
|
Dec 4 |
comment |
Invoking the MediaWiki Page Parser to get HTML? That requires the design to be constant, so every design change may break the parser by removing the strings the parser looks for. |
|
Dec 4 |
asked | Invoking the MediaWiki Page Parser to get HTML? |
|
Dec 4 |
comment |
C# how to call a method in the base of the base? I am really just guessing, but can't you cast this to C? ((C)this).f(); |
|
Dec 3 |
answered | Common “Truisms” that need correcting the most. |
|
Dec 3 |
comment |
Empty Visual Studio Project? There is no "Empty Project" in Visual Studio, only "Empty Solution", and solution folders don't work as they do not affect the file system. An "Empty C# Project" still has Compiler Options and the "References" virtual folder, and I was hoping to get rid of them. |
|
Dec 3 |
comment |
Common “Truisms” that need correcting the most. Yup. O(1) means "Constant Lookup", not "fast". If an algorithm takes 5 seconds regardless of size of the lookup, it's O(1), but inferior to something that takes (50 ms * number of items) for sets below 100 items. |
|
Dec 3 |
comment |
Empty Visual Studio Project? In my case it's the Sharepoint 14-Hive. Basically I need to mirror the file system (including subfolders) to track any files I add to it. Sometimes, these files are simple graphics or CSS Files and as such not part of any Development Project, but I still like to track them. The main need is to move and rename them and have those changes mirrored in the file system. Also, source control is easier that way for me. |
|
Dec 3 |
comment |
Empty Visual Studio Project? Solution Folders to not mirror Directory Hierarchy. If I create a solution folder inside another solution folder and move a file into it, the file does not actually get moved into that folder in the filesystem. |
|
Dec 3 |
asked | Empty Visual Studio Project? |
|
Dec 2 |
comment |
Target=’_blank’ to show in new window, NOT new tab, possible? I can only speak for myself, but: Sites that open Popups for anything automatically get deducted points in my book. If you really want a new dialog, maybe a JavaScript Dialog - modal or not - is more user-friendly? For example, the Dialog from jQuery UI: jqueryui.com/demos/dialog/#default |
|
Dec 2 |
comment |
Programmatically create a Distribution Group in Active Directory Whoa, thanks, that is useful information! Getting a user account is rather easy in my organization, but installing stuff on production servers is not, so installing that management console on a server I "own" is great. |
|
Dec 2 |
comment |
Sudden graphic card change? from Nvidia 8600GT to Nvidia 7050/Nvidia nForce 610i That's more a question for SuperUser.com, as StackOverflow is for developers/software development questions. |
|
Nov 27 |
awarded | ● Good Answer |
|
Nov 27 |
awarded | ● Notable Question |
|
Nov 26 |
comment |
Programmatically create a Distribution Group in Active Directory Thanks. I was hoping there was a way to do that without needing access to the actual exchange server, but I guess I have to do it like that. |
|
Nov 25 |
asked | Programmatically create a Distribution Group in Active Directory |
|
Nov 24 |
comment |
C#: Is it possible to have a single application behave as Console or Windows application depending on switches? I guess people downvote it because it's not a real console app (those are impossible according to Raymond Chen: blogs.msdn.com/oldnewthing/archive/…), but I think the approach is suitable for the OP's problem. I just think that the IF-Condition is completely wrong - should be an || I think. |
|
Nov 23 |
awarded | ● Good Answer |
|
Nov 21 |
awarded | ● Popular Question |
|
Nov 21 |
answered | Execute code in if-else statement |
