TheCodeJunkie

1,055
reputation
119 views

Registered User

name TheCodeJunkie
member for 1 year
seen 6 hours ago
website
location SE
age 29
I work as a software engineer on the Microsoft .NET platform and I use both VB.NET and C# interchangably on a daily basis Visit my blog at http://thecodejunkie.com
Nov
4
awarded  Necromancer
Oct
13
accepted Winforms with MEF
Oct
8
awarded  Popular Question
Oct
8
answered What is your best programmer joke?
Oct
7
comment Can I run Visual Studio 2008 x86 on Windows Vista x64?
Been running this for almost a year now with only one minor problem. Having a 32-bit COM reference screws things up if your build platform is "Any CPU" .. there are lots of posts about this online. Other than that, it's been smooth sailing.
Oct
6
awarded  Yearling
Oct
4
comment How to launch EXE when project / solution / studio starts?
Yeah that's what I think as well.. was hoping for some sort of hook anyway.. might do this as a VS add-in instead
Oct
4
comment How to launch EXE when project / solution / studio starts?
I guess I could use something like that but I'd rather use an MSBuild task or similar. It would mean I could check in the exe into the repository, as well as the launch instructions and have it propagate to all the team members without having to create the macro on each machine.
Oct
4
asked How to launch EXE when project / solution / studio starts?
Sep
29
awarded  Popular Question
Sep
27
comment Check if handle belongs to the current process?
I'd like to say "any" but I get the impression that it would make it impossible or a lot harder. So I'll settle for a window handle :)
Sep
27
asked Check if handle belongs to the current process?
Sep
24
comment Documentation for implementors of COM interfaces
Because Microsoft just decided not to document it themselves? ;)
Sep
24
comment Documentation for implementors of COM interfaces
Let's for get the whole managed interop scenario, it's not relevant to the question (it was just some background) and I know all about the IDL files, typelibs, import tools and so on How would I, as a new and aspiring C++ developer, know about the concrete classes? Say I read the docs and see IShellLinkW interface and go "Hmm cooool, I want to use that!", then how would I know to create an instance of CLSID_ShellLink? Or more obscure, go from IObjectArray/IObjectColleciton -> CLSID_EnumerableObjectCollection? It has to be mentioned somewhere in the docs, but where? :) thanks
Sep
23
comment Documentation for implementors of COM interfaces
I'm doing some manual interop declarations but far most I want to know, because I like to know how things work under the covers.. so the question remains.. taking a given com interface, how do I know which concreate classes that implementes them, so I know what to create..
Sep
23
asked Documentation for implementors of COM interfaces
Sep
15
comment COM interface declarations
I'll answer my own follow up question. The .NET interop does not support interface inheritance, thus you have to redefine the parent interface members in the child interface(s).
Sep
15
comment COM interface declarations
<quote>interfaces that inherit from other interfaces always have all the base entries in the vtable as well</quote> Wouldn't this mean that if the order of the members in each of the interface is correct then the vtable entries for an interface, that inherits another interface, would end up correct?
Sep
15
comment COM interface declarations
So .net doesn't pamper me with automatic mappings of the vtable entries based on names? Anyway to configure it using attributes etc? Also why wouldn't the inheritance work? Surly it would concatenate the vtables along the inheritance chain? I.e first the entries for ITaskbarList then for ITaskbarList2 and then for ITaskbarList3.. or do I only end up with the entries from the last interface in ITaskbarList3 despite the inheritance?
Sep
15
asked COM interface declarations
Jul
6
awarded  Popular Question
Jul
3
awarded  Notable Question